* {
    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;
    background: #77C7CE;
    color: black;
}
.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;
    color: black;
}
.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: #1A0E14;
    color: #E5DCD5;
    font-family: "Montserrat", sans-serif;
}

h1, h2, h3, h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: #FF7740;
}

/* Навигация */
.navbar {
    background: rgba(26, 14, 20, 0.8);
}

.menu-items li {
    font-weight: 600;
}

.navbar a {
    color: #E5DCD5;
}

.navbar a:hover {
    color: #FF7740;
    opacity: 1;
}

.navbar-container .hamburger-lines .line {
    background: #E5DCD5;
}

/* Кнопки */
.button, button.spin {
    background: linear-gradient(135deg, #FF7740 0%, #C63F21 100%);
    color: #1A0E14;
    box-shadow: 0 0 15px rgba(255, 119, 64, 0.5);
    border: 1px solid #7A261B;
}

.button:hover, button.spin:hover {
    background: linear-gradient(135deg, #FF8B5A 0%, #D84F31 100%);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 119, 64, 0.7);
}

.main-button {
    background: linear-gradient(to right, #FF7740, #C63F21);
    border: 1px solid #7A261B;
    box-shadow: 0 0 15px rgba(255, 119, 64, 0.5);
}

.main-button:hover {
    box-shadow: 0 0 20px rgba(255, 119, 64, 0.7);
    transform: translateY(-2px);
}

/* Хедер */
.header {
    background: url("../img/header-bg.webp") no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 14, 20, 0.7);
}

.header-cont {
    position: relative;
    z-index: 2;
}

/* Секции */
.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;
    width: 100%;
    height: 100%;
    background: rgba(26, 14, 20, 0.8);
}

.enter-wrapper {
    position: relative;
    z-index: 2;
}

/* Карточки опыта */
.experience-item {
    background: rgba(82, 45, 63, 0.5);
    border: 1px solid #7A261B;
    box-shadow: 0 0 10px rgba(255, 119, 64, 0.3);
    transition: 0.3s all ease;
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255, 119, 64, 0.5);
}

/* Контакты */
.contact-wrapper {
    border: 5px solid #7A261B;
    background: rgba(82, 45, 63, 0.5);
    box-shadow: 0 0 20px rgba(255, 119, 64, 0.3);
}

/* Игровой автомат */
.slot-machine {
    background: #2A1520;
    border: 2px solid #7A261B;
    box-shadow: 0 0 30px rgba(255, 119, 64, 0.3);
}

.info {
    background: rgba(82, 45, 63, 0.5);
    border: 1px solid #7A261B;
}

.decrease, .increase {
    background: #2A1520;
    border: 1px solid #FF7740;
    color: #E5DCD5;
}

.decrease:hover, .increase:hover {
    background: #3A202C;
}

.bet {
    background: rgba(82, 45, 63, 0.5);
    border: 1px solid #7A261B;
}

.controls {
    background: rgba(42, 21, 32, 0.7);
    border: 1px solid #7A261B;
}

/* Модальное окно */
.modal {
    background: #2A1520;
    border: 2px solid #7A261B;
    color: #E5DCD5;
}

.modal h2 {
    color: #FF7740;
}

.modal .age-circle {
    background-color: #C63F21;
}

.modal button {
    background-color: #FF7740;
    color: #1A0E14;
}

.modal button:hover {
    background-color: #FF8B5A;
}

/* Фон блоков */
.background-blue {
    background: #2A1520;
    color: #E5DCD5;
}

/* Возрастной блок */
.age {
    background: #2A1520;
    color: #E5DCD5;
}

.age-cont {
    background: rgba(82, 45, 63, 0.5);
    border: 1px solid #7A261B;
}

/* Футер */
.footer-age {
    background: #7A261B;
    color: #E5DCD5;
}

.footer-logo {
    background: #7A261B;
}

.footer-wrapper {
    background: rgba(26, 14, 20, 0.8);
}

/* Логотип */
.logo img {
    background: linear-gradient(135deg, #FF7740 0%, #C63F21 100%);
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(255, 119, 64, 0.5);
}

/* Основные цвета */
body {
    background: #1A0E14;
    color: #E5DCD5;
    font-family: "Montserrat", sans-serif;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(122, 38, 27, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 119, 64, 0.1) 0%, transparent 40%);
}

@keyframes textFlicker {
    0%, 100% { text-shadow: 0 0 8px rgba(255, 119, 64, 0.7); }
    50% { text-shadow: 0 0 15px rgba(255, 119, 64, 0.9); }
}

h1, h2, h3, h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    color: #FF7740;
    text-shadow: 0 0 8px rgba(255, 119, 64, 0.5);
}

h1 {
    animation: textFlicker 3s infinite ease-in-out;
}

/* Навигация */
@keyframes menuItemHover {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.navbar {
    background: rgba(26, 14, 20, 0.9);
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255, 119, 64, 0.2);
}

.menu-items li {
    font-weight: 600;
    position: relative;
}

.menu-items li:after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(90deg, #FF7740, #C63F21, #FF7740);
    background-size: 200% auto;
    transition: width 0.3s ease;
}

.menu-items li:hover:after {
    width: 100%;
    animation: menuItemHover 2s linear infinite;
}

.navbar a {
    color: #E5DCD5;
}

.navbar a:hover {
    color: #FF7740;
    opacity: 1;
    text-shadow: 0 0 8px rgba(255, 119, 64, 0.5);
}

.navbar-container .hamburger-lines .line {
    background: #E5DCD5;
}

/* Кнопки */
@keyframes buttonPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 119, 64, 0.5); }
    50% { box-shadow: 0 0 25px rgba(255, 119, 64, 0.8); }
}

.button, button.spin {
    background: linear-gradient(135deg, #FF7740 0%, #C63F21 100%);
    color: #1A0E14;
    box-shadow: 0 0 15px rgba(255, 119, 64, 0.5);
    border: 1px solid #7A261B;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button:before, button.spin:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.button:hover:before, button.spin:hover:before {
    left: 100%;
}

.button:hover, button.spin:hover {
    background: linear-gradient(135deg, #FF8B5A 0%, #D84F31 100%);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 119, 64, 0.7);
    animation: buttonPulse 2s infinite;
}

.main-button {
    background: linear-gradient(to right, #FF7740, #C63F21);
    border: 1px solid #7A261B;
    box-shadow: 0 0 15px rgba(255, 119, 64, 0.5);
}

.main-button:hover {
    box-shadow: 0 0 20px rgba(255, 119, 64, 0.7);
    transform: translateY(-2px);
}

/* Хедер */
@keyframes smokeEffect {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 10%; }
    100% { background-position: 0% 0%; }
}

.header {
    background: url("../img/header-bg.webp") no-repeat center center fixed;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to bottom, rgba(26, 14, 20, 0.8), rgba(26, 14, 20, 0.5)),
        url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3Cfilter id='a' x='0' y='0'%3E%3CfeTurbulence baseFrequency='0.01' numOctaves='2' seed='1'/%3E%3CfeDisplacementMap in='SourceGraphic' scale='10'/%3E%3C/filter%3E%3C/defs%3E%3Crect width='100%25' height='100%25' filter='url(%23a)' opacity='0.1'/%3E%3C/svg%3E");
    animation: smokeEffect 20s infinite alternate ease-in-out;
}

.header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, #1A0E14, transparent);
    z-index: 1;
}

.header-cont {
    position: relative;
    z-index: 2;
}

/* Секции */
@keyframes backgroundDragonFly {
    0% { background-position: 0% 0%; }
    25% { background-position: 100% 25%; }
    50% { background-position: 50% 50%; }
    75% { background-position: 0% 75%; }
    100% { background-position: 0% 0%; }
}

.enter {
    background: url("../img/bg-2.png") no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

.enter::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 14, 20, 0.8);
}

.enter::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400' viewBox='0 0 800 800'%3E%3Cg fill='none' stroke='%23FF7740' stroke-width='1'%3E%3Cpath d='M769 229L1037 260.9M927 880L731 737 520 660 309 538 40 599 295 764 126.5 879.5 40 599-197 493 102 382-31 229 126.5 79.5-69-63'/%3E%3Cpath d='M-31 229L237 261 390 382 603 493 308.5 537.5 101.5 381.5M370 905L295 764'/%3E%3Cpath d='M520 660L578 842 731 737 840 599 603 493 520 660 295 764 309 538 390 382 539 269 769 229 577.5 41.5 370 105 295 -36 126.5 79.5 237 261 102 382 40 599 -69 737 127 880'/%3E%3Cpath d='M520-140L578.5 42.5 731-63M603 493L539 269 237 261 370 105M902 382L539 269M390 382L102 382'/%3E%3Cpath d='M-222 42L126.5 79.5 370 105 539 269 577.5 41.5 927 80 769 229 902 382 603 493 731 737M295-36L577.5 41.5M578 842L295 764M40-201L127 80M102 382L-261 269'/%3E%3C/g%3E%3Cg fill='%23FF7740'%3E%3Ccircle cx='769' cy='229' r='5'/%3E%3Ccircle cx='539' cy='269' r='5'/%3E%3Ccircle cx='603' cy='493' r='5'/%3E%3Ccircle cx='731' cy='737' r='5'/%3E%3Ccircle cx='520' cy='660' r='5'/%3E%3Ccircle cx='309' cy='538' r='5'/%3E%3Ccircle cx='295' cy='764' r='5'/%3E%3Ccircle cx='40' cy='599' r='5'/%3E%3Ccircle cx='102' cy='382' r='5'/%3E%3Ccircle cx='127' cy='80' r='5'/%3E%3Ccircle cx='370' cy='105' r='5'/%3E%3Ccircle cx='578' cy='42' r='5'/%3E%3Ccircle cx='237' cy='261' r='5'/%3E%3Ccircle cx='390' cy='382' r='5'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 100% 100%;
    opacity: 0.05;
    pointer-events: none;
    animation: backgroundDragonFly 60s infinite linear;
}

.enter-wrapper {
    position: relative;
    z-index: 2;
}

/* Карточки опыта */
.experience-item {
    background: rgba(82, 45, 63, 0.5);
    border: 1px solid #7A261B;
    box-shadow: 0 0 10px rgba(255, 119, 64, 0.3);
    transition: 0.3s all ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.experience-item:before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent,
        transparent,
        transparent,
        #FF7740
    );
    z-index: -1;
    opacity: 0.1;
    transform: rotate(30deg);
    transition: 0.5s ease all;
}

.experience-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px rgba(255, 119, 64, 0.5);
}

.experience-item:hover:before {
    opacity: 0.2;
    transform: rotate(60deg);
}

/* Контакты */
.contact-wrapper {
    border: 5px solid #7A261B;
    background: rgba(82, 45, 63, 0.5);
    box-shadow: 0 0 20px rgba(255, 119, 64, 0.3);
}

/* Игровой автомат */
@keyframes borderGlow {
    0%, 100% { border-color: #7A261B; }
    50% { border-color: #FF7740; }
}

.slot-machine {
    background: #2A1520;
    border: 2px solid #7A261B;
    box-shadow: 0 0 30px rgba(255, 119, 64, 0.3);
    position: relative;
    animation: borderGlow 4s infinite alternate;
}

.slot-machine:before, .slot-machine:after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF7740' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 1;
}

.slot-machine:before {
    top: 10px;
    left: 10px;
}

.slot-machine:after {
    bottom: 10px;
    right: 10px;
    transform: rotate(180deg);
}

.info {
    background: rgba(82, 45, 63, 0.5);
    border: 1px solid #7A261B;
}

.decrease, .increase {
    background: #2A1520;
    border: 1px solid #FF7740;
    color: #E5DCD5;
}

.decrease:hover, .increase:hover {
    background: #3A202C;
}

.bet {
    background: rgba(82, 45, 63, 0.5);
    border: 1px solid #7A261B;
}

.controls {
    background: rgba(42, 21, 32, 0.7);
    border: 1px solid #7A261B;
}

/* Модальное окно */
.modal {
    background: #2A1520;
    border: 2px solid #7A261B;
    color: #E5DCD5;
}

.modal h2 {
    color: #FF7740;
}

.modal .age-circle {
    background-color: #C63F21;
}

.modal button {
    background-color: #FF7740;
    color: #1A0E14;
}

.modal button:hover {
    background-color: #FF8B5A;
}

/* Фон блоков */
.background-blue {
    background: #2A1520;
    color: #E5DCD5;
}

/* Возрастной блок */
.age {
    background: #2A1520;
    color: #E5DCD5;
}

.age-cont {
    background: rgba(82, 45, 63, 0.5);
    border: 1px solid #7A261B;
}

/* Футер */
.footer-age {
    background: #7A261B;
    color: #E5DCD5;
}

.footer-logo {
    background: #7A261B;
}

.footer-wrapper {
    background: rgba(26, 14, 20, 0.8);
}

/* Логотип */
@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 8px rgba(255, 119, 64, 0.7)); }
    50% { filter: drop-shadow(0 0 12px rgba(255, 119, 64, 0.9)); }
}

.logo img {
    background: linear-gradient(135deg, #FF7740 0%, #C63F21 100%);
    border-radius: 5px;
    box-shadow: 0 0 15px rgba(255, 119, 64, 0.5);
    animation: logoGlow 3s infinite ease-in-out;
}

/* Декоративные руны */
.footer-wrapper:before, .header-cont:before {
    content: "";
    position: absolute;
    width: 60px;
    height: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FF7740' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.2;
    pointer-events: none;
    z-index: -1;
}

.footer-wrapper:before {
    bottom: 20px;
    right: 10%;
    transform: rotate(15deg);
}

.header-cont:before {
    top: 20px;
    left: 10%;
    transform: rotate(-15deg);
}