* {
    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%);
}
/* Основные цвета для футуристического неонового города */
:root {
  --neon-primary: #00FAFF;
  --neon-secondary: #FF00F5;
  --neon-accent: #8A2BE2;
  --neon-highlight: #FF3300;
  --dark-bg: #0B0C17;
  --darker-bg: #070815;
  --light-text: #E0FFFF;
  --gradient-primary: linear-gradient(135deg, #00C3FF 0%, #8A2BE2 100%);
  --gradient-secondary: linear-gradient(135deg, #FF00F5 0%, #00FAFF 100%);
}

body {
  background: var(--dark-bg);
  color: var(--light-text);
  font-family: "Inter", sans-serif;
}

/* Заголовки */
h1, h2, h3, h4 {
  color: var(--neon-primary);
  text-shadow: 0 0 10px rgba(0, 250, 255, 0.7);
}

h1 {
  font-size: 45px;
  letter-spacing: 2px;
}

h2 {
  font-size: 35px;
  text-transform: uppercase;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Кнопки */
.button {
  background: var(--gradient-secondary);
  color: var(--dark-bg);
  font-weight: bold;
  box-shadow: 0 0 15px rgba(255, 0, 245, 0.5);
}

.main-button {
  background: linear-gradient(to right, var(--neon-primary), var(--neon-secondary));
  color: var(--darker-bg);
  box-shadow: 0 0 20px rgba(0, 250, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Навигация */
.navbar {
  background: rgba(11, 12, 23, 0.8);
  backdrop-filter: blur(10px);
}

.navbar a {
  color: var(--light-text);
  position: relative;
}

.navbar a:hover {
  color: var(--neon-primary);
  text-shadow: 0 0 5px var(--neon-primary);
}

.navbar a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-primary);
  transition: width 0.3s ease;
}

.navbar a:hover:after {
  width: 100%;
}

.logo img {
  background: var(--gradient-primary);
  border-radius: 10px;
  box-shadow: 0 0 15px var(--neon-accent);
}

/* Секции */
.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: linear-gradient(to bottom, rgba(7, 8, 21, 0.7), rgba(11, 12, 23, 0.9));
}

.header-cont {
  position: relative;
  z-index: 2;
}

.age {
  background: var(--darker-bg);
  border: 1px solid var(--neon-primary);
  box-shadow: 0 0 20px rgba(0, 250, 255, 0.2);
}

.age-cont {
  background: rgba(138, 43, 226, 0.1);
  border: 1px solid var(--neon-accent);
  color: var(--light-text);
}

.experience-item {
  border: 1px solid var(--neon-accent);
  background: rgba(11, 12, 23, 0.5);
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
}

.experience-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 250, 255, 0.5);
}

.contact-wrapper {
  border: 2px solid var(--neon-secondary);
  background: rgba(11, 12, 23, 0.7);
  box-shadow: 0 0 20px rgba(255, 0, 245, 0.3);
}

/* Игровой автомат */
.slot-machine {
  background: var(--darker-bg);
  border: 2px solid var(--neon-accent);
  box-shadow: 0 0 30px rgba(138, 43, 226, 0.4);
}

.grid {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--neon-primary);
}

.cell {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 250, 255, 0.3);
}

.info {
  background: rgba(138, 43, 226, 0.2);
  border: 1px solid var(--neon-secondary);
}

button.spin {
  background: var(--gradient-secondary);
  box-shadow: 0 0 15px rgba(255, 0, 245, 0.6);
  transform: perspective(1px) translateZ(0);
  transition-duration: 0.3s;
}

button.spin:hover {
  transform: scale(1.05);
}

.decrease, .increase {
  background: var(--darker-bg);
  border: 1px solid var(--neon-primary);
  color: var(--neon-primary);
}

.bet {
  background: rgba(138, 43, 226, 0.2);
  color: var(--light-text);
  border: 1px solid var(--neon-accent);
}

/* Футер */
.footer-age {
  background: var(--gradient-primary);
  color: var(--darker-bg);
}

.footer-logo {
  background: var(--gradient-secondary);
}

.footer-links-wrapper a {
  color: var(--neon-primary);
  transition: all 0.3s ease;
}

.footer-links-wrapper a:hover {
  text-shadow: 0 0 8px var(--neon-primary);
}

/* Модальное окно */
.modal-overlay {
  backdrop-filter: blur(5px);
}

.modal {
  background: var(--darker-bg);
  border: 2px solid var(--neon-primary);
  box-shadow: 0 0 30px rgba(0, 250, 255, 0.5);
  color: var(--light-text);
}

.modal .age-circle {
  background: var(--neon-highlight);
  box-shadow: 0 0 15px rgba(255, 51, 0, 0.7);
}

.modal h2 {
  color: var(--neon-primary);
}

.modal button {
  background: var(--gradient-secondary);
  color: var(--darker-bg);
}

/* Дополнительные классы для атмосферности */
.background-blue {
  background: var(--darker-bg);
  color: var(--light-text);
  border-top: 1px solid var(--neon-primary);
  border-bottom: 1px solid var(--neon-secondary);
}

/* Анимации для создания эффекта киберпространства */
@keyframes glow {
  0% {
    box-shadow: 0 0 5px var(--neon-primary);
  }
  50% {
    box-shadow: 0 0 20px var(--neon-primary), 0 0 30px var(--neon-secondary);
  }
  100% {
    box-shadow: 0 0 5px var(--neon-primary);
  }
}

.experience-item:hover {
  animation: glow 1.5s infinite;
}

/* Медиа-запросы сохранены из оригинальных стилей */
/* Основные цвета для футуристического неонового города */
:root {
  --neon-primary: #00FAFF;
  --neon-secondary: #FF00F5;
  --neon-accent: #8A2BE2;
  --neon-highlight: #FF3300;
  --neon-yellow: #FFFF00;
  --dark-bg: #0B0C17;
  --darker-bg: #070815;
  --light-text: #E0FFFF;
  --cyber-shade: #1E0B2D;
  --gradient-primary: linear-gradient(135deg, #00C3FF 0%, #8A2BE2 100%);
  --gradient-secondary: linear-gradient(135deg, #FF00F5 0%, #00FAFF 100%);
  --gradient-cyber: linear-gradient(45deg, var(--neon-primary), transparent, var(--neon-secondary));
  --gradient-hologram: linear-gradient(135deg, rgba(0, 250, 255, 0.2) 0%, rgba(138, 43, 226, 0.2) 100%);
}

body {
  background: var(--dark-bg);
  color: var(--light-text);
  font-family: "Inter", sans-serif;
}

/* Заголовки */
h1, h2, h3, h4 {
  color: var(--neon-primary);
  text-shadow: 0 0 10px rgba(0, 250, 255, 0.7);
}

h1 {
  font-size: 45px;
  letter-spacing: 2px;
}

h2 {
  font-size: 35px;
  text-transform: uppercase;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Кнопки */
.button {
  background: var(--gradient-secondary);
  color: var(--dark-bg);
  font-weight: bold;
  box-shadow: 0 0 15px rgba(255, 0, 245, 0.5);
}

.main-button {
  background: linear-gradient(to right, var(--neon-primary), var(--neon-secondary));
  color: var(--darker-bg);
  box-shadow: 0 0 20px rgba(0, 250, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Навигация */
.navbar {
  background: rgba(11, 12, 23, 0.8);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 250, 255, 0.3);
  position: relative;
}

/* Цифровой след для навигации */
.navbar:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right,
    transparent,
    var(--neon-primary),
    var(--neon-secondary),
    var(--neon-accent),
    var(--neon-secondary),
    var(--neon-primary),
    transparent
  );
  opacity: 0.7;
}

.navbar a {
  color: var(--light-text);
  position: relative;
}

.navbar a:hover {
  color: var(--neon-primary);
  text-shadow: 0 0 5px var(--neon-primary);
}

.navbar a:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--neon-primary);
  transition: width 0.3s ease;
}

.navbar a:hover:after {
  width: 100%;
}

.logo img {
  background: var(--gradient-primary);
  border-radius: 10px;
  box-shadow: 0 0 15px var(--neon-accent);
}

/* Секции */
.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: linear-gradient(to bottom, rgba(7, 8, 21, 0.7), rgba(11, 12, 23, 0.9));
}

/* Эффект "движущегося города" для хедера */
.header:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background-image:
    radial-gradient(circle, var(--neon-primary) 1px, transparent 1px),
    radial-gradient(circle, var(--neon-secondary) 1px, transparent 1px),
    radial-gradient(circle, var(--neon-yellow) 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: 0 0, 15px 15px, 5px 25px;
  opacity: 0.3;
  animation: float 10s infinite alternate;
  pointer-events: none;
}

.header-cont {
  position: relative;
  z-index: 2;
}

.age {
  background: var(--darker-bg);
  border: 1px solid var(--neon-primary);
  box-shadow: 0 0 20px rgba(0, 250, 255, 0.2);
}

.age-cont {
  background: rgba(138, 43, 226, 0.1);
  border: 1px solid var(--neon-accent);
  color: var(--light-text);
}

.experience-item {
  border: 1px solid var(--neon-accent);
  background: rgba(11, 12, 23, 0.5);
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
}

.experience-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(0, 250, 255, 0.5);
}

.contact-wrapper {
  border: 2px solid var(--neon-secondary);
  background: rgba(11, 12, 23, 0.7);
  box-shadow: 0 0 20px rgba(255, 0, 245, 0.3);
}

/* Игровой автомат */
.slot-machine {
  background: var(--darker-bg);
  border: 2px solid var(--neon-accent);
  box-shadow: 0 0 30px rgba(138, 43, 226, 0.4);
  position: relative;
  overflow: hidden;
}

/* Эффект голографического интерфейса */
.slot-machine:before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: var(--gradient-hologram);
  transform: rotate(30deg);
  opacity: 0.3;
  pointer-events: none;
  animation: pulse 8s infinite;
}

.grid {
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--neon-primary);
}

.cell {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 250, 255, 0.3);
}

.info {
  background: rgba(138, 43, 226, 0.2);
  border: 1px solid var(--neon-secondary);
}

button.spin {
  background: var(--gradient-secondary);
  box-shadow: 0 0 15px rgba(255, 0, 245, 0.6);
  transform: perspective(1px) translateZ(0);
  transition-duration: 0.3s;
}

button.spin:hover {
  transform: scale(1.05);
}

.decrease, .increase {
  background: var(--darker-bg);
  border: 1px solid var(--neon-primary);
  color: var(--neon-primary);
}

.bet {
  background: rgba(138, 43, 226, 0.2);
  color: var(--light-text);
  border: 1px solid var(--neon-accent);
}

/* Футер */
.footer-age {
  background: var(--gradient-primary);
  color: var(--darker-bg);
}

.footer-logo {
  background: var(--gradient-secondary);
}

.footer-links-wrapper a {
  color: var(--neon-primary);
  transition: all 0.3s ease;
}

.footer-links-wrapper a:hover {
  text-shadow: 0 0 8px var(--neon-primary);
}

/* Модальное окно */
.modal-overlay {
  backdrop-filter: blur(5px);
}

.modal {
  background: var(--darker-bg);
  border: 2px solid var(--neon-primary);
  box-shadow: 0 0 30px rgba(0, 250, 255, 0.5);
  color: var(--light-text);
}

.modal .age-circle {
  background: var(--neon-highlight);
  box-shadow: 0 0 15px rgba(255, 51, 0, 0.7);
}

.modal h2 {
  color: var(--neon-primary);
}

.modal button {
  background: var(--gradient-secondary);
  color: var(--darker-bg);
}

/* Дополнительные классы для атмосферности */
.background-blue {
  background: var(--darker-bg);
  color: var(--light-text);
  border-top: 1px solid var(--neon-primary);
  border-bottom: 1px solid var(--neon-secondary);
  position: relative;
  overflow: hidden;
}

/* Эффект сканирующей линии */
.background-blue::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, transparent, var(--neon-primary), transparent);
  opacity: 0.5;
  animation: scan-line 4s linear infinite;
  pointer-events: none;
  z-index: 1;
}

/* Парящие элементы */
.experience-item {
  animation: float 6s ease-in-out infinite;
}

/* Различные времена анимации для разных элементов */
.experience-wrapper .experience-item:nth-child(2) {
  animation-delay: 1s;
}

.experience-wrapper .experience-item:nth-child(3) {
  animation-delay: 2s;
}

/* Мерцающие заголовки */
h2 {
  animation: pulse 4s infinite;
}

h1 {
  animation: flicker 6s infinite;
}

/* Эффект дрожания текста */
.navbar a:hover {
  animation: flicker 2s infinite;
}

/* Неоновая подсветка кнопок */
.button:hover, .main-button:hover {
  animation: glow 1.5s infinite;
}

/* Стилизация скролл-бара */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--darker-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--neon-accent);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--neon-primary);
}

/* Анимации для создания эффекта киберпространства */
@keyframes glow {
  0% {
    box-shadow: 0 0 5px var(--neon-primary);
  }
  50% {
    box-shadow: 0 0 20px var(--neon-primary), 0 0 30px var(--neon-secondary);
  }
  100% {
    box-shadow: 0 0 5px var(--neon-primary);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.8;
    text-shadow: 0 0 5px var(--neon-primary);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 15px var(--neon-primary), 0 0 20px var(--neon-secondary);
  }
  100% {
    opacity: 0.8;
    text-shadow: 0 0 5px var(--neon-primary);
  }
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
    text-shadow: 0 0 10px var(--neon-primary), 0 0 20px var(--neon-primary);
  }
  20%, 24%, 55% {
    opacity: 0.7;
    text-shadow: none;
  }
}

@keyframes scan-line {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.experience-item:hover {
  animation: glow 1.5s infinite;
}

/* Дополнительные киберпанк-эффекты */

/* Эффект шума для заднего фона */
body:after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.05'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.03;
  z-index: 9999;
}

/* Эффект датаматрицы */
.col:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  background-image:
    linear-gradient(to bottom,
      transparent 0%, transparent 49%,
      var(--neon-primary) 50%, var(--neon-primary) 51%,
      transparent 52%, transparent 100%);
  background-size: 100% 10px;
  opacity: 0.1;
  z-index: 1;
}

/* Эффект сетки для всей страницы */
.container {
  position: relative;
}

.container:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(to right, var(--neon-primary) 1px, transparent 1px),
    linear-gradient(to bottom, var(--neon-primary) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.03;
  pointer-events: none;
}

/* Эффект пульсации для контактной формы */
.contact-wrapper {
  animation: pulse 5s infinite;
}

/* Медиа-запросы сохранены из оригинальных стилей */