* {
    box-sizing: border-box;
    transition: 0.4s ease all;
    margin: 0;
}
a{
    text-decoration: none;
}
a:hover {
    opacity: 0.8;
}
body {
    margin: 0;
    font-family: "Inter", sans-serif;
    line-height: 1.4;
    background: #113C44;
    color: white;
    font-size: 14px;
}

h1, h2, h3, h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: #FFD700;
}
h3{
    font-size: 23px;
}
p{
    font-weight: 300;

}

h1{
    font-size: 45px;
    margin-top: 0;
}
h2{
    font-size: 35px;
    text-transform: uppercase;
    text-align: center;
}
h3{
    padding-bottom: 30px;
}

img{
    display: block;
    width: 100%;
    height: auto;
}
.container {
    max-width: 1000px;
    margin: auto;
    padding: 0 10px;
}

.navbar input[type="checkbox"],
.navbar .hamburger-lines {
    display: none;
}

.navbar {
    position: absolute;
    top: 0;
    width: 100%;
    color: white;
    z-index: 100;
    padding: 20px 0;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    height: 64px;
    align-items: center;
}

.menu-items {
    order: 2;
    display: flex;
    gap: 52px;
}

.logo {
    order: 1;
}
.logo{
    max-width: 180px;
}

.menu-items li {
    list-style: none;
    font-size: 18px;
    text-transform: uppercase;
}

.navbar a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease-in-out;
}

.navbar a:hover {
    opacity: 0.7;
    transition: 1s;
}

.button {
    display: inline-block;
    padding: 10px 40px;
    font-weight: bold;
    background: #FFD700;
    color: black;
    margin-top: 30px;
    border-radius: 5px;
}

.col-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 30px 0;
}
.col{
    width: 48%;
}
.col-100{
width:100%;
}
.img-col{
    width: 48%;
}
.img-col img{
    border-radius: 10px;
}
.col p:not(:last-child), .contact-wrapper p:not(:last-child){
    padding-bottom: 15px;
}
.age{
    display: flex;
    justify-content: center;
    align-items: center;
}
.age-cont, .header-cont{
    width: 60%;
    max-width: 800px;
}
.age-cont{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 90%;
    padding: 30px 50px;
    border-radius: 15px;
}
.age-cont p{
    display: block;
    width: 87%;
}
.age-cont svg{
    display: block;
    width: 10%;
}
.footer-age{
    background: #FFD700;
    color:black;
}

.footer-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: #FFD700;
    margin-bottom: 20px;
}
.footer-logo-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.footer-logo-wrapper img{
    max-height: 50px;
    width: auto;
}
.footer-logo-wrapper a{
    display: block;
}
.footer-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 30px;
}
.footer-links-wrapper{
    display: flex;
    justify-content: center;
    gap: 20px;
}
.footer-links-wrapper a{
    color: white;
    text-decoration: none;
}


@media screen and (max-width: 1200px) {
    .menu-items li {
        font-size: 15px;
    }

    .menu-items {
        gap: 25px;
    }

    .logo img {
        max-width: 200px;
    }

    .navbar {
        padding: 8px 0;
    }
}


/*nav*/
@media (max-width: 830px) {
    .footer-logo-wrapper{
        flex-wrap: wrap;
        justify-content: center;
    }
    h2{
        font-size: 25px;
    }
    header{
        padding-bottom: 60px;
    }
    .logo img {
        max-width: 150px;
    }

    .navbar {
        opacity: 0.95;
        padding: 0;
    }

    .navbar-container input[type="checkbox"],
    .navbar-container .hamburger-lines {
        display: block;
    }

    .navbar-container {
        display: block;
        position: relative;
        padding: 3px 0;
        height: 64px;
    }

    .navbar-container input[type="checkbox"] {
        position: absolute;
        display: block;
        height: 32px;
        width: 30px;
        top: 50%;
        transform: translateY(-50%);
        left: 20px;
        z-index: 5;
        opacity: 0;
        cursor: pointer;
    }

    .navbar-container .hamburger-lines {
        height: 28px;
        width: 35px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 20px;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .navbar-container .hamburger-lines .line {
        display: block;
        height: 2px;
        width: 100%;
        border-radius: 10px;
        background: #ffffff;
    }

    .navbar-container .hamburger-lines .line1 {
        transform-origin: 0 0;
        transition: transform 0.3s ease-in-out;
    }

    .navbar-container .hamburger-lines .line2 {
        transition: transform 0.2s ease-in-out;
    }

    .navbar-container .hamburger-lines .line3 {
        transform-origin: 0 100%;
        transition: transform 0.3s ease-in-out;
    }

    .navbar .menu-items {
        padding-top: 100px;
        background: #113C44;
        height: calc(100vh + 10px);
        max-width: 300px;
        transform: translate(-150%);
        display: flex;
        flex-direction: column;
        margin: -10px 0 0 -40px;
        padding-left: 60px;
        transition: transform 0.5s ease-in-out;
        box-shadow: 5px 0 10px 0 #0b272c;
        overflow: scroll;
    }

    .navbar .menu-items li {
        margin-bottom: 1.8rem;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .logo {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 20px;
    }

    .navbar-container input[type="checkbox"]:checked ~ .menu-items {
        transform: translateX(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
        transform: rotate(45deg);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
        transform: scaleY(0);
    }

    .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
        transform: rotate(-45deg);
    }

}


@media (max-width: 500px) {
    .navbar-container input[type="checkbox"]:checked ~ .logo {
        display: none;
    }
    #feedback {
        padding: 0 20px 71px;
    }
}
h1{
    padding-bottom: 20px;
}
h2{
    padding-bottom: 40px;
}
.header{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background: url("../img/header-bg.webp") no-repeat center center fixed;
    background-size: cover;
    padding: 100px 0;
}
.header-cont{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    color: white;
}
.main-button{
    margin: 20px;
    padding: 10px 50px;
    border-radius: 30px;
    color: black;
    font-weight: 500;
    background: linear-gradient(to right, #F6FE06, #FF8800);
}

.enter{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 10px 20px;
    background: url("../img/bg-2.png") no-repeat center center;
    background-size: cover;
    min-height: 80vh;
}
.enter-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}
.experience{
    padding: 40px 0;
}
.experience-wrapper{
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.experience-item{
    text-align: center;
    border-radius: 10px;
    padding: 20px;
}

.experience-item h4{
    padding-bottom: 10px;
}
#contact{
    padding: 40px 10%;
}
.contact-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px;
    text-align: center;
    border-radius: 7px;
    border: 5px solid #02390B;
    background: #224F22;
}

.contact-wrapper a{
    text-decoration: none;
    color: white;
}
#contacts{
    padding: 40px 10px;
}
.img-wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 30px;
}
.img-wrapper img{
    max-width: 140px;
}
.background-blue{
    background: #77C7CE;
    color: black;
}
@media (max-width: 830px) {
    header{
        padding: 0;
    }
    h1{
        font-size: 35px;
    }

    .col-wrapper, .experience-wrapper {
        flex-wrap: wrap;
    }

    .col, .experience-item, .age-cont, .header-cont {
        width: 100%;
    }
    .age{
        padding: 30px 10px;
    }
    .header-cont{
        padding: 10px;
    }
    .col-wrapper .col:not(:last-child){
        padding-bottom: 20px;
    }
}
.terms{
    padding: 40px 10px;
}
.terms a{
    text-decoration: underline;
    color: white;
}
header{
    padding-bottom: 80px;
}
h2{
    text-align: center;
}
body {
    background-color: #113C44;
    min-height: 100vh;
}
header{
    padding-bottom: 100px;
}
.game-container{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 10px;
}
.slot-machine {
    width: 100%;
    max-width: 900px;
    text-align: center;
    background: #002830;
    padding: 40px 30px;
    border-radius: 10px;
}

.grid {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: flex-start;
    overflow: hidden;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 10px;

}
.balance-wrapper{
    min-width: 100px;
    color: white;
}
.column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: none;
    width: 19%;
}

.cell {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
}

.cell img {
    max-width: 100%;
    max-height: 100%;
}
.info{
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: rgb(255 255 255 / 15%);
    padding: 10px;
    border-radius: 10px;
    color: white;
}
.info-wrapper span{
    display: block;
    font-weight: bold;
    padding-top: 10px;
}
.decrease, .increase{
    padding: 10px;
    color: white;
    background: #0D1B2A;
    border-radius: 20px;
    border: 1px solid #FFD700;
}
.bet{
    border-radius: 5px;
    padding: 5px 10px;
    color: white;
    background: rgb(255 255 255 / 15%);
}
/* Анимация вращения колонок */
@keyframes spin {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-300%);
    }
}

button.spin {
    background: #FFD700;
    color: black;
    font-size: 20px;
    font-weight: bold;
    border: none;
    padding: 20px 30px;
    border-radius: 50px;
    cursor: pointer;
}

.navbar-container .hamburger-lines .line{
    background: black;
}
.controls {
    margin-bottom: 20px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-radius: 10px;
}
.controls-wrapper{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
@media (max-width: 473px) {
    .controls{
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    .balance-wrapper, .controls-wrapper{
        width: 100%;
    }
    .controls-wrapper{
        justify-content: center;
    }
    button.spin{
        padding: 10px 43px;
    }
}

/*modal*/
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal {
    background: #FFFFFF;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 300px;
    position: relative;
    color: black;
}

.modal .age-circle {
    background-color: #D50000;
    color: white;
    width: 60px;
    height: 60px;
    margin: 0 auto 10px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
}

.modal h2 {
    font-size: 18px;
    padding-bottom: 10px;
    color: black;
}


.modal button {
    background-color: #FFD700;
    border: none;
    color: black;
    font-weight: bold;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.modal button:hover {
    background-color: #e0a800;
}

.background-blue{
background: #2D2016;
color: #E5DCD5;
}
.logo img{
width: 100px;
background: linear-gradient(135deg, #FF7E3D 0%, #DA4F2A 100%);
}
/* Средневековая цветовая палитра */
body {
    background: #2D2016; /* Темно-коричневый фон, напоминающий старинное дерево */
    color: #E5DCD5; /* Светлый оттенок для текста, как пергамент */
    font-family: "Montserrat", serif; /* Более подходящий шрифт для средневековой тематики */
}

/* Стилизация заголовков под средневековую эстетику */
h1, h2, h3, h4 {
    color: #C6A96F; /* Золотистый оттенок для заголовков, как золотые гербы */
    text-transform: uppercase;
    font-family: "Montserrat", serif;
}

h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
    border-bottom: 2px solid #8B5A2B; /* Граница под заголовком как орнамент */
}

/* Кнопки в стиле средневековых печатей */
.button, .main-button, button.spin {
    background: linear-gradient(135deg, #8B5A2B 0%, #C6A96F 100%); /* Градиент под золото/бронзу */
    color: #2D2016;
    font-weight: bold;
    border-radius: 5px;
    border: 1px solid #C6A96F;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.button:hover, .main-button:hover, button.spin:hover {
    background: linear-gradient(135deg, #C6A96F 0%, #8B5A2B 100%); /* Инвертированный градиент при наведении */
}

/* Контейнеры как свитки пергамента */
.col, .contact-wrapper, .experience-item, .slot-machine {
    border-radius: 8px;
    background: #3A2E24; /* Темный оттенок дерева */
    border: 1px solid #8B5A2B; /* Граница как деревянная рамка */
}

/* Верхнее меню в стиле геральдики */
.navbar {
    background: linear-gradient(to bottom, rgba(59, 45, 34, 0.9), rgba(59, 45, 34, 0.7));
}

.menu-items li {
    font-family: "Montserrat", serif;
}

.navbar a {
    color: #E5DCD5; /* Цвет текста как пергамент */
}

/* Логотип стилизован под геральдический знак */
.logo img {
    border-radius: 50%;
    background: #8B5A2B; /* Цвет геральдического щита */
    border: 2px solid #C6A96F; /* Золотая окантовка */
}

/* Подсветка информационных блоков */
.age-cont, .footer-age {
    background: #5D4037; /* Темный дуб */
    color: #E5DCD5;
    border: 1px solid #8B5A2B;
}

/* Футер как каменная стена замка */
.footer-wrapper {
    background: #3A2E24; /* Темный камень */
}

.footer-logo {
    background: #5D4037; /* Темный дуб */
}

/* Ячейки игрового автомата как витражи */
.cell {
    border: 2px solid #8B5A2B; /* Границы как витражные переплеты */
    background: rgba(59, 45, 34, 0.8);
}

/* Информационные элементы как манускрипты */
.info {
    background: rgba(139, 90, 43, 0.3); /* Полупрозрачный пергамент */
    border: 1px solid #8B5A2B;
}

/* Фон заголовка с изображением замка */
.header {
    background: url("../img/header-bg.webp") no-repeat center center;
    background-size: cover;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
}

/* Эффект пергамента для модальных окон */
.modal {
    background: #E5DCD5; /* Цвет пергамента */
    color: #2D2016;
    border: 3px solid #8B5A2B; /* Граница как деревянная рамка */
}

/* Кнопки-монеты для управления ставками */
.decrease, .increase {
    background: #8B5A2B; /* Цвет бронзовой монеты */
    border: 1px solid #C6A96F; /* Граница как чеканка монеты */
    color: #E5DCD5;
}

/* Ставка как набор монет */
.bet {
    background: rgba(198, 169, 111, 0.2); /* Полупрозрачное золото */
    border: 1px solid #C6A96F;
}

/* Анимация для создания эффекта горящего факела */
@keyframes torch {
    0% { text-shadow: 0 0 8px #FF6D00, 0 0 12px #FF6D00; }
    50% { text-shadow: 0 0 15px #FF6D00, 0 0 20px #FF6D00; }
    100% { text-shadow: 0 0 8px #FF6D00, 0 0 12px #FF6D00; }
}

h1, h2 {
    animation: torch 3s infinite;
}

/* Специальный эффект для кнопки игры */
button.spin {
    background: linear-gradient(135deg, #C6A96F 0%, #8B5A2B 100%);
    border: 2px solid #C6A96F;
    text-transform: uppercase;
}

/* Стиль для мобильного меню - как старинная дверь */
.navbar .menu-items {
    background: #3A2E24; /* Темное дерево */
    border-right: 3px solid #8B5A2B; /* Граница как деревянные доски */
}

/* Средневековая цветовая палитра */
body {
    background: #2D2016; /* Темно-коричневый фон, напоминающий старинное дерево */
    color: #E5DCD5; /* Светлый оттенок для текста, как пергамент */
    font-family: "Montserrat", serif; /* Более подходящий шрифт для средневековой тематики */
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c6a96f' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    position: relative;
}

/* Стилизация заголовков под средневековую эстетику */
h1, h2, h3, h4 {
    color: #C6A96F; /* Золотистый оттенок для заголовков, как золотые гербы */
    text-transform: uppercase;
    font-family: "Montserrat", serif;
    position: relative;
}

h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

h1::before, h1::after {
    content: "❧";
    position: absolute;
    color: #8B5A2B;
    font-size: 0.5em;
    opacity: 0.7;
}

h1::before {
    left: -30px;
    top: 50%;
}

h1::after {
    right: -30px;
    top: 50%;
}

h2 {
    border-bottom: 2px solid #8B5A2B; /* Граница под заголовком как орнамент */
    position: relative;
}

h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #C6A96F, transparent);
}

/* Кнопки в стиле средневековых печатей */
.button, .main-button, button.spin {
    background: linear-gradient(135deg, #8B5A2B 0%, #C6A96F 100%); /* Градиент под золото/бронзу */
    color: #2D2016;
    font-weight: bold;
    border-radius: 5px;
    border: 1px solid #C6A96F;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    transform-style: preserve-3d;
}

.button::before, .main-button::before, button.spin::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.4s ease;
}

.button:hover, .main-button:hover, button.spin:hover {
    background: linear-gradient(135deg, #C6A96F 0%, #8B5A2B 100%); /* Инвертированный градиент при наведении */
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

.button:hover::before, .main-button:hover::before, button.spin:hover::before {
    opacity: 1;
    transform: scale(1);
}

.button:active, .main-button:active, button.spin:active {
    transform: translateY(1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Контейнеры как свитки пергамента */
.col, .contact-wrapper, .experience-item, .slot-machine {
    border-radius: 8px;
    background: #3A2E24; /* Темный оттенок дерева */
    border: 1px solid #8B5A2B; /* Граница как деревянная рамка */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.col::before, .contact-wrapper::before, .experience-item::before, .slot-machine::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8B5A2B, #C6A96F, #8B5A2B);
}

.experience-item {
    transform: perspective(800px) rotateY(0deg);
    transition: transform 0.6s ease;
}

.experience-item:hover {
    transform: perspective(800px) rotateY(5deg);
}

/* Верхнее меню в стиле геральдики */
.navbar {
    background: linear-gradient(to bottom, rgba(59, 45, 34, 0.9), rgba(59, 45, 34, 0.7));
}

.menu-items li {
    font-family: "Montserrat", serif;
}

.navbar a {
    color: #E5DCD5; /* Цвет текста как пергамент */
    position: relative;
    transition: all 0.3s ease;
}

.navbar a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #C6A96F;
    transition: width 0.3s ease;
}

.navbar a:hover {
    color: #C6A96F;
    opacity: 1;
}

.navbar a:hover::after {
    width: 100%;
}

/* Логотип стилизован под геральдический знак */
.logo img {
    border-radius: 0;
    background: #8B5A2B; /* Цвет геральдического щита */
    border: 2px solid #C6A96F; /* Золотая окантовка */
    padding: 4px;
    position: relative;
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 100%, 0% 100%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
    transform: rotate(-2deg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo img:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

/* Подсветка информационных блоков */
.age-cont, .footer-age {
    background: #5D4037; /* Темный дуб */
    color: #E5DCD5;
    border: 1px solid #8B5A2B;
}

/* Футер как каменная стена замка */
.footer-wrapper {
    background: #3A2E24; /* Темный камень */
}

.footer-logo {
    background: #5D4037; /* Темный дуб */
}

/* Ячейки игрового автомата как витражи */
.cell {
    border: 2px solid #8B5A2B; /* Границы как витражные переплеты */
    background: rgba(59, 45, 34, 0.8);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 8px rgba(198, 169, 111, 0.3);
    transition: all 0.3s ease;
}

.cell::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(198, 169, 111, 0.1) 0%, rgba(0, 0, 0, 0) 50%, rgba(198, 169, 111, 0.1) 100%);
    pointer-events: none;
}

.cell:hover {
    transform: scale(1.03);
    box-shadow: inset 0 0 12px rgba(198, 169, 111, 0.5), 0 0 8px rgba(198, 169, 111, 0.3);
    z-index: 1;
}

/* Информационные элементы как манускрипты */
.info {
    background: rgba(139, 90, 43, 0.3); /* Полупрозрачный пергамент */
    border: 1px solid #8B5A2B;
}

/* Фон заголовка с изображением замка */
.header {
    background: url("../img/header-bg.webp") no-repeat center center;
    background-size: cover;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
    position: relative;
    overflow: hidden;
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(198, 169, 111, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    pointer-events: none;
}

.header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c6a96f' fill-opacity='0.1'%3E%3Cpath d='M20 0L0 20h20v20L40 20H20V0z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.header-cont {
    z-index: 1;
    position: relative;
    border: 4px double #C6A96F;
    background: rgba(45, 32, 22, 0.7);
    padding: 30px;
    backdrop-filter: blur(2px);
}

/* Эффект пергамента для модальных окон */
.modal {
    background: #E5DCD5; /* Цвет пергамента */
    color: #2D2016;
    border: 3px solid #8B5A2B; /* Граница как деревянная рамка */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%238b5a2b' fill-opacity='0.05'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'/%3E%3C/g%3E%3C/svg%3E");
    position: relative;
}

.modal::before {
    content: "";
    position: absolute;
    top: 5px;
    right: 5px;
    bottom: 5px;
    left: 5px;
    border: 1px solid rgba(139, 90, 43, 0.3);
    pointer-events: none;
}

.modal h2 {
    color: #8B5A2B;
    text-shadow: none;
    position: relative;
}

.modal h2::after {
    content: "";
    position: absolute;
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #8B5A2B, transparent);
    bottom: -5px;
    left: 20%;
}

/* Кнопки-монеты для управления ставками */
.decrease, .increase {
    background: #8B5A2B; /* Цвет бронзовой монеты */
    border: 1px solid #C6A96F; /* Граница как чеканка монеты */
    color: #E5DCD5;
}

/* Ставка как набор монет */
.bet {
    background: rgba(198, 169, 111, 0.2); /* Полупрозрачное золото */
    border: 1px solid #C6A96F;
}

/* Анимации для создания средневекового настроения */
@keyframes torch {
    0% { text-shadow: 0 0 8px #FF6D00, 0 0 12px #FF6D00; }
    50% { text-shadow: 0 0 15px #FF6D00, 0 0 20px #FF6D00; }
    100% { text-shadow: 0 0 8px #FF6D00, 0 0 12px #FF6D00; }
}

@keyframes parchment-glow {
    0% { box-shadow: 0 0 10px rgba(198, 169, 111, 0.2); }
    50% { box-shadow: 0 0 20px rgba(198, 169, 111, 0.4); }
    100% { box-shadow: 0 0 10px rgba(198, 169, 111, 0.2); }
}

@keyframes medieval-float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0); }
}

@keyframes shield-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

h1, h2 {
    animation: torch 3s infinite;
}

.button, .main-button, button.spin {
    animation: parchment-glow 3s infinite;
}

.logo img {
    animation: shield-pulse 4s infinite;
}

.experience-item {
    animation: medieval-float 5s infinite;
}

/* Специальный эффект для кнопки игры */
button.spin {
    background: linear-gradient(135deg, #C6A96F 0%, #8B5A2B 100%);
    border: 2px solid #C6A96F;
    text-transform: uppercase;
}

/* Стиль для мобильного меню - как старинная дверь */
.navbar .menu-items {
    background: #3A2E24; /* Темное дерево */
    border-right: 3px solid #8B5A2B; /* Граница как деревянные доски */
    background-image:
        linear-gradient(90deg, rgba(139, 90, 43, 0.1) 50%, transparent 50%),
        linear-gradient(rgba(139, 90, 43, 0.1) 50%, transparent 50%);
    background-size: 30px 30px;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.5);
}

/* Дополнительные стили для остальных элементов */
.enter {
    background: url("../img/bg-2.png") no-repeat center center;
    background-size: cover;
    position: relative;
}

.enter::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(45, 32, 22, 0.7);
    pointer-events: none;
}

.enter-wrapper {
    position: relative;
    z-index: 1;
    background: rgba(45, 32, 22, 0.6);
    border: 2px solid #8B5A2B;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

/* Таблица для игрового автомата */
.grid {
    background: rgba(45, 32, 22, 0.8);
    border: 2px solid #8B5A2B;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.4);
}

/* Кнопки увеличения/уменьшения в стиле монет */
.decrease, .increase {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    background: radial-gradient(circle, #C6A96F 0%, #8B5A2B 100%);
}

.decrease:hover, .increase:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(198, 169, 111, 0.5);
}

/* Стили для контактной формы */
.contact-wrapper {
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%238b5a2b' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"), #3A2E24;
    border: 2px solid #8B5A2B;
}

.contact-wrapper a {
    color: #C6A96F;
    transition: all 0.3s ease;
    position: relative;
}

.contact-wrapper a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: #C6A96F;
    transition: width 0.3s ease;
}

.contact-wrapper a:hover::after {
    width: 100%;
}