* {
    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: #1A0F13;
    color: #E5DCD5;
    font-family: "Montserrat", serif;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: "Montserrat", serif;
    color: #B28449;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.navbar {
    background: rgba(15, 7, 10, 0.9);
    border-bottom: 1px solid #4A3022;
}

.navbar a {
    color: #D2BCA0;
}

.navbar a:hover {
    color: #B28449;
}

.navbar-container .hamburger-lines .line {
    background: #B28449;
}

.logo img {
    background: linear-gradient(135deg, #4A3022 0%, #1A0F13 100%);
    border: 1px solid #B28449;
}

.header {
    background: url("../img/header-bg.webp") no-repeat center center;
    background-size: cover;
    position: relative;
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 7, 10, 0.7);
}

.header-cont {
    position: relative;
    z-index: 1;
}

.main-button {
    background: linear-gradient(to right, #B28449, #8E5E2B);
    border: 1px solid #4A3022;
    color: #1A0F13;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.button {
    background: #B28449;
    color: #1A0F13;
    border: 1px solid #4A3022;
    box-shadow: 2px 2px 8px 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;
    width: 100%;
    height: 100%;
    background: rgba(15, 7, 10, 0.6);
}

.enter-wrapper {
    position: relative;
    z-index: 1;
}

.experience-item {
    background: rgba(26, 15, 19, 0.7);
    border: 1px solid #4A3022;
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.experience-item h4 {
    color: #B28449;
}

.age {
    background: #2D1B20;
}

.age-cont {
    background: #1A0F13;
    border: 1px solid #4A3022;
}

.footer-age {
    background: #2D1B20;
}

.footer-logo {
    background: #2D1B20;
}

.contact-wrapper {
    border: 5px solid #4A3022;
    background: #2D1B20;
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.7);
}

.slot-machine {
    background: #2D1B20;
    border: 3px solid #4A3022;
    box-shadow: 0 0 20px rgba(178, 132, 73, 0.2);
}

.info {
    background: rgba(26, 15, 19, 0.8);
    border: 1px solid #4A3022;
}

.decrease, .increase {
    background: #1A0F13;
    border: 1px solid #B28449;
    color: #B28449;
}

button.spin {
    background: linear-gradient(to right, #B28449, #8E5E2B);
    color: #1A0F13;
    border: 1px solid #4A3022;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.bet {
    background: rgba(26, 15, 19, 0.8);
    border: 1px solid #4A3022;
}

.cell {
    background: rgba(26, 15, 19, 0.8);
    border: 1px solid #4A3022;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5);
}

.modal {
    background: #2D1B20;
    border: 3px solid #4A3022;
    color: #E5DCD5;
}

.modal h2 {
    color: #B28449;
}

.modal .age-circle {
    background-color: #8E5E2B;
    color: #1A0F13;
    border: 1px solid #4A3022;
}

.modal button {
    background-color: #B28449;
    color: #1A0F13;
    border: 1px solid #4A3022;
}

.modal button:hover {
    background-color: #8E5E2B;
}

.background-blue {
    background: #2D1B20;
    color: #E5DCD5;
}

/* Эффект потрескавшейся текстуры на фоне */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M30,10 L35,40 L20,30 L30,10 Z M70,25 L60,40 L80,50 L70,25 Z M35,70 L30,50 L15,65 L35,70 Z M65,60 L70,90 L85,70 L65,60 Z" fill="none" stroke="rgba(74, 48, 34, 0.2)" stroke-width="0.5"/></svg>') repeat;
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

/* Эффект свечения для заголовков */
h1, h2, h3, h4 {
    position: relative;
}

h1::after, h2::after, h3::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(178, 132, 73, 0.7), transparent);
}

/* Эффект рамки для опыта */
.experience-item {
    position: relative;
    overflow: hidden;
}

.experience-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M10,10 L90,10 L90,90 L10,90 Z" fill="none" stroke="rgba(178, 132, 73, 0.4)" stroke-width="2"/><path d="M5,5 L95,5 L95,95 L5,95 Z" fill="none" stroke="rgba(178, 132, 73, 0.2)" stroke-width="1"/></svg>') no-repeat;
    background-size: 100% 100%;
    z-index: -1;
    opacity: 0.8;
}

/* Анимация мерцания для кнопок */
.button, .main-button, button.spin {
    position: relative;
    overflow: hidden;
}

.button::after, .main-button::after, button.spin::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transform: scale(0.5);
    animation: buttonGlow 4s infinite alternate;
}

@keyframes buttonGlow {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 0;
        transform: scale(1.2) rotate(360deg);
    }
}

/* Эффект движения для ячеек слот-машины */
.cell {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cell:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(178, 132, 73, 0.5);
}

/* Эффект портрета в раме */
.img-col img, .img-wrapper img {
    position: relative;
    border: 8px solid transparent;
    border-image: linear-gradient(45deg, #8E5E2B, #B28449, #4A3022, #B28449) 1;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
    transition: all 0.5s ease;
}

.img-col img::before, .img-wrapper img::before {
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(45deg, #8E5E2B, #B28449, #4A3022, #B28449);
    z-index: -1;
}

/* Эффект оживления для изображений */
.img-col img:hover, .img-wrapper img:hover {
    animation: portraitAlive 2s infinite alternate;
    filter: brightness(1.1) contrast(1.1);
}

@keyframes portraitAlive {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.03);
    }
}

/* Эффект старинной бумаги для блоков */
.contact-wrapper, .age-cont {
    background-image:
        linear-gradient(rgba(45, 27, 32, 0.9), rgba(45, 27, 32, 0.9)),
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/><feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.5 0"/></filter><rect width="200" height="200" filter="url(%23noise)" opacity="0.2"/></svg>');
}

/* Эффект мерцания свечи для навигации */
.navbar a {
    text-shadow: 0 0 5px rgba(178, 132, 73, 0.3);
    transition: all 0.3s ease;
}

.navbar a:hover {
    text-shadow: 0 0 10px rgba(178, 132, 73, 0.8);
}

/* Эффект мистического свечения для заголовков */
h1, h2 {
    animation: titleGlow 3s infinite alternate;
}

@keyframes titleGlow {
    0% {
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }
    100% {
        text-shadow: 0 0 10px rgba(178, 132, 73, 0.5),
                    0 0 20px rgba(178, 132, 73, 0.3),
                    0 0 30px rgba(178, 132, 73, 0.1);
    }
}

/* Эффект трещин на слот-машине */
.slot-machine {
    position: relative;
}

.slot-machine::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, transparent 49.7%, rgba(74, 48, 34, 0.3) 49.7%, rgba(74, 48, 34, 0.3) 50.3%, transparent 50.3%),
        linear-gradient(45deg, transparent 49.7%, rgba(74, 48, 34, 0.3) 49.7%, rgba(74, 48, 34, 0.3) 50.3%, transparent 50.3%);
    background-size: 100px 100px, 70px 70px;
    pointer-events: none;
    opacity: 0.15;
    z-index: 1;
}

/* Эффект старинного скролла для модального окна */
.modal {
    position: relative;
    overflow: hidden;
}

.modal::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 20%, rgba(178, 132, 73, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 70% 60%, rgba(178, 132, 73, 0.1) 0%, transparent 20%);
    pointer-events: none;
}

/* Анимация для кнопки спина */
button.spin {
    animation: spinPulse 2s infinite;
}

@keyframes spinPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(178, 132, 73, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(178, 132, 73, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(178, 132, 73, 0);
    }
}

/* Эффект потертого текста */
p {
    position: relative;
}

p::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="1" stitchTiles="stitch"/><feColorMatrix type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.07 0"/></filter><rect width="100" height="100" filter="url(%23noise)" opacity="0.1"/></svg>');
    pointer-events: none;
}

/* Эффект старой рамы для слотов */
.grid {
    position: relative;
    border: 12px solid transparent;
    border-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><path d="M0,0 L100,0 L100,100 L0,100 Z M20,20 L80,20 L80,80 L20,80 Z" fill="%238E5E2B"/></svg>') 30 stretch;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

/* Эффект вдавленных кнопок */
.decrease:active, .increase:active, button.spin:active {
    transform: translateY(2px);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* Эффект мистического свечения для заголовка сайта */
.logo {
    position: relative;
}

.logo::after {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: radial-gradient(ellipse at center, rgba(178, 132, 73, 0.2) 0%, rgba(178, 132, 73, 0) 70%);
    animation: logoGlow 3s infinite alternate;
    pointer-events: none;
}

@keyframes logoGlow {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 0.7;
    }
}

/* Эффект винтажной рамки с орнаментом */
.experience-wrapper, .col-wrapper {
    position: relative;
}

.experience-wrapper::before, .col-wrapper::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><path d="M0,0 L60,0 L60,60 L0,60 Z M10,10 L50,10 L50,50 L10,50 Z" stroke="rgba(142, 94, 43, 0.2)" stroke-width="1" fill="none"/><path d="M0,0 L10,10 M50,10 L60,0 M0,60 L10,50 M50,50 L60,60" stroke="rgba(142, 94, 43, 0.2)" stroke-width="1" fill="none"/></svg>') no-repeat;
    background-size: 100% 100%;
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}

/* Эффект туманности */
.header::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
                rgba(26, 15, 19, 0) 0%,
                rgba(26, 15, 19, 0.1) 40%,
                rgba(26, 15, 19, 0.3) 80%,
                rgba(26, 15, 19, 0.5) 100%);
    pointer-events: none;
}

/* Эффект картины в раме для всего сайта */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 150px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    z-index: 999;
}