body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #fff;
    background-color: #1a1a2e;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.header {
    background-color: #0f3460;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 255, 0.3);
}

.header__contact span {
    color: #00ffcc;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-decoration: none;
    color: #00d4ff;
    text-shadow: 0 0 5px #00d4ff;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li {
    margin-left: 30px;
}

.nav-list a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #00ffcc;
    text-shadow: 0 0 10px #00ffcc;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.burger span {
    width: 30px;
    height: 3px;
    background-color: #00d4ff;
    margin: 3px 0;
    transition: all 0.3s ease;
    position: relative;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.phone {
    color: #00ffcc;
    text-decoration: none;
    font-size: 18px;
}

.join-btn,
.contact-btn,
.learn-btn,
.book-btn {
    background-color: #00d4ff;
    border: none;
    position: relative;
    z-index: 5;
    text-decoration: none;
    display: block;
    width: fit-content;
    margin-top: 20px;
    padding: 12px 25px;
    color: #1a1a2e;
    cursor: pointer;
    border-radius: 5px;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px #00d4ff;
}

.join-btn:hover,
.contact-btn:hover,
.learn-btn:hover,
.book-btn:hover {
    background-color: #00ffcc;
    box-shadow: 0 0 20px #00ffcc;
    transform: scale(1.05);
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
    position: relative;
}

.hero-content {
    z-index: 1;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px #00d4ff;
}

.hero p {
    font-size: 24px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.parallax-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.layer-1,
.layer-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}



.welcome,
.gaming-for-skills,
.class-schedule,
.discount,
.pricing-plan,
.testimonials,
.expert-trainers,
.latest-articles {
    padding: 90px 0;
    animation: fadeInUp 1s ease-out;
}

.welcome h2,
.gaming-for-skills h2,
.class-schedule h2,
.discount h2,
.pricing-plan h2,
.testimonials h2,
.expert-trainers h2,
.latest-articles h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 40px;
    margin-bottom: 30px;
    color: #00d4ff;
    text-align: center;
}

.welcome p {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.welcome-img {
    max-width: 400px;
    max-height: 500px;
    object-fit: cover;
    float: left;
    width: 100%;
    margin-right: 0px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

.skill__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-content: center;
}

.skill__card {
    background: linear-gradient(135deg, #16213e, #1a1a2e);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
    transition: transform 0.3s ease;
}

.skill__card:hover {
    transform: translateY(-10px);
}

.skill__card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.skill__card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.skill__card p {
    font-size: 16px;
}

.schedule__timeline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.schedule__item {
    /* background: #16213e; */
    padding: 20px;
        background-color: #1a1a2e;
    border-radius: 15px;
    text-align: center;
    width: 30%;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.schedule__item img {
    width: 150px;
    height: 150px;
    margin-bottom: 10px;
    border-radius: 50%;
}

.schedule__item h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.schedule__item p {
    font-size: 16px;
}

.schedule__item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 170%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

.book-btn {
    display: block;
    margin: 30px auto;
}

.discount {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    text-align: center;
    position: relative;
}

.discount h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.discount p {
    font-size: 20px;
    margin-bottom: 30px;
}

.discount-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #00ffcc 0%, transparent 70%);
    transform: translate(-50%, -50%);
    filter: blur(50px);
    z-index: 0;
}

.pricing-carousel {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-card {
    background: #16213e;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    width: 30%;
    color: #fff;
    border: 2px solid #00d4ff;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #00ffcc;
    box-shadow: 0 0 20px #00ffcc;
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.pricing-card p {
    font-size: 36px;
    margin-bottom: 15px;
    color: #00d4ff;
}

.pricing-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.pricing-card ul li {
    margin-bottom: 10px;
}

.testimonial__slider {
    margin-top: 20px;
}

.testimonial__item {
    text-align: center;
    padding: 20px;
    background: transparent;
    border-radius: 15px;
    color: #fff;
    width: 80%;
    margin: 0 auto;
}

.trainer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-content: center;
}

.trainer-item {
    text-align: center;
    color: #fff;
}

.trainer-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    border: 3px solid #00d4ff;
    transition: transform 0.3s ease;
}

.trainer-item img:hover {
    transform: scale(1.1);
}

.trainer-item h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.article__slider {
    margin-top: 20px;
}

.article__item {
    text-align: center;
    width: 30%;
    margin: 0 10px;
}

.article__item img {
    max-width: 100%;
    width: 100%;
    object-fit: cover;
    max-height: 250px;
    border-radius: 10px;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.article__item img:hover {
    transform: scale(1.05);
}

.article__item h3 {
    font-size: 20px;
}

.footer {
    padding: 50px 0;
    background: #202d3c;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #00d4ff;
}

.footer__links a {
    color: #fff;
    text-decoration: none;
    margin: 5px 15px;
    transition: color 0.3s ease;
}

.footer__links a:hover {
    color: #00ffcc;
    text-shadow: 0 0 10px #00ffcc;
}

.footer__contact p {
    margin: 10px 0;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    position: relative;
}

.footer__bottom::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, #00d4ff 0%, transparent 70%);
    filter: blur(50px);
    z-index: -1;
}

@media (max-width: 768px) {
    .nav-list {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: #0f3460;
        width: 100%;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0, 0, 255, 0.3);
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        margin: 15px 0;
        text-align: center;
    }

    .burger {
        display: flex;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 18px;
    }

    .skill__grid,
    .schedule__timeline,
    .pricing-carousel,
    .trainer-grid {
        grid-template-columns: 1fr;
    }

    .skill__card,
    .schedule__item,
    .pricing-card,
    .trainer-item {
        width: 100%;
        margin-bottom: 20px;
    }

    .hero {
        height: auto;
        padding: 140px 0;
    }

    .footer__content {
        flex-direction: column;
        text-align: center;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.parallax-layers {
    perspective: 1000px;
}

.layer-1 {
    transform: translateZ(-50px) scale(1.1);
}

.layer-2 {
    transform: translateZ(-100px) scale(1.2);
}

.parallax-layers {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.layer {
    position: absolute;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    will-change: transform;
    transition: transform 0.1s linear;
}

.parallax-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.layer {
    position: absolute;
    width: 120%;
    height: 120%;
    top: 0;
    left: 0;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Звезды */
.layer-stars {
    background: radial-gradient(white 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.1;
    z-index: 1;
}

/* Сетка */
.layer-grid {
    background: repeating-linear-gradient(0deg,
            rgba(255, 255, 255, 0.03),
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 20px),
        repeating-linear-gradient(90deg,
            rgba(255, 255, 255, 0.03),
            rgba(255, 255, 255, 0.03) 1px,
            transparent 1px,
            transparent 20px);
    z-index: 2;
}

/* Декоративные круги */
.layer-circles {
    background-image:
        radial-gradient(circle at 30% 30%, rgba(255, 0, 100, 0.15), transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(0, 200, 255, 0.15), transparent 60%);
    z-index: 3;
}

.welcome__wrapper {
    display: flex;
    margin-top: 50px;
    align-items: center;
    gap: 70px;
}

.welcome__wrap {
    flex: 1;
}
.welcome__ul{
    display: flex;
    flex-direction: column;
    gap: 15px;
align-items: flex-start;

}
.welcome__li{
    position: relative;
    padding-left: 30px;
    color: #fff;
    font-size: 18px;
  margin: 0;
    text-align: start;
    max-width: 600px;

}
.welcome__li p{
    margin: 0;
    text-align: start;
}
.welcome__li::after

 {
    position: absolute;
    content: '✔';
    color: #00d4ff;
    top: 0px;
    font-size: 20px;
    left: 3px;
}
.gaming-for-skills img {
    max-width: 500px;
    max-height: 300px;
    width: 100%;
    object-fit: cover;
    margin-top: 30px;
    float: left;
    margin-right: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}
.gaming-for-skills__wrapper{
    display: flex;
    gap: 70px;
    align-items: center;
}
.gaming-for-skills__wrap{
flex: 1;
}
.skill__icon i{
    font-size: 48px;
    color: #00d4ff;
}
.class-schedule .container{
    display: flex;
    gap: 55px;
    align-items: center;
}
.class-schedule__wrapper{
flex: 1;
display: flex;
flex-direction: column;
}
.schedule__timeline{
    flex: 1;
}
.schedule__timeline

 {
    display: flex
;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0px;
    flex-direction: column;
}
.class-schedule__wrapper ul {
    list-style: circle;
    display: block;
    margin: 0;
}
.class-schedule__wrapper ul li::marker{
    color: #00d4ff;
    font-size: 20px;
}
.schedule__item

 {
    background-color: #1a1a2e;
    padding: 20px;
    border-radius: 0;
    text-align: center;
    width: 100%;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.schedule__timeline

 {
    max-width: 450px;
    display: flex
;
    justify-content: space-between;
    flex-wrap: wrap;
    border-radius: 20px;
    overflow: hidden;
    gap: 0px;
    flex-direction: column;
}
.class-schedule__wrapper img{
    max-width: 500px;
    max-height: 300px;
    width: 100%;
    display: block;
    object-fit: cover;
    margin-top: 30px;
    float: left;
    margin-right: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}
.discount{
    margin-top: 50px;
}
.discount .container{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.testimonials .container{
    display: flex;
    gap: 60px;
    justify-content: space-between;
    align-items: center;
}
.testimonials__content{
  max-width: 600px;
}
.testimonial__slider {
    max-width: 700px;
}
.testimonials__wrap{
display: flex;
flex-direction: column;
gap: 0px;
}

.testimonials__wrap span{
color: #777;
}
.testimonials__bottom {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.testimonials__bottom img{
    width: 40px;
    border-radius: 100%;
    height: 40px;
}
button.slick-next.slick-arrow ,
button.slick-prev.slick-arrow {
    background-color: #00d4ff;
    border: none;
    position: relative;
    z-index: 5;
    text-decoration: none;
    display: block;
    width: fit-content;
    margin-top: 20px;
    padding: 12px 25px;
    color: #1a1a2e;
    cursor: pointer;
    border-radius: 5px;
    font-family: 'Orbitron', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px #00d4ff;

}
button.slick-prev.slick-arrow {
    margin-bottom: 20px;
}
.expert-trainers .container
{
    display: block;
}
@media screen and (max-width: 768px) {
    .welcome__wrapper

 {
    display: flex
;
    margin-top: 50px;
    align-items: center;
    gap: 70px;
    flex-direction: column;
}
.gaming-for-skills__wrapper {
    display: flex
;
    gap: 70px;
    align-items: center;
    flex-direction: column;
}
.class-schedule .container {
    display: flex
;
    gap: 55px;
    align-items: center;
    flex-direction: column;
}
.schedule__timeline

 {
    max-width: 450px;
    display: flex
;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
    border-radius: 20px;
    overflow: hidden;
    gap: 0px;
    flex-direction: column;
}
.testimonials .container {
    display: flex
;
    gap: 60px;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.welcome, .gaming-for-skills, .class-schedule, .discount, .pricing-plan, .testimonials, .expert-trainers, .latest-articles {
    padding: 40px 0;
    animation: fadeInUp 1s ease-out;
}
.header .container {
    display: flex
;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: column;
}
.testimonial__slider

 {
    max-width: 320px;
}
.footer__links a {
    color: #fff;
    width: fit-content;
    display: flex
;
    text-decoration: none;
    margin: 5px 15px;
    transition: color 0.3s ease;
    flex-wrap: wrap;
}
.footer__contact

 {
    display: flex
;
    gap: 10px;
    flex-direction: column;
}
}

.game .gaming-for-skills__wrap {
    flex: 1;
    display: flex
;
    flex-direction: column;
}
.game .skill__grid{
    margin-top: 40px;
}
.terms{
    display: flex;
    flex-direction: column;
    padding: 140px 0;
    gap: 10px;
    align-items: flex-start;
}
.terms li{
    margin-bottom: 10px;
}
.contact-details{
    padding: 140px 0;
}
.contact-details .container{
display: flex;
gap: 50px;
}
.contact-details__item {
    flex: 1;
}
.contact-details__item img{
    width: 100%;
 
}
.contact-details__content p a{
    color: #fff;
    text-decoration: none;
}
.contact-details__content {
    padding: 20px;
    background-color: #ffffff1f;
    border-radius: 10px;
}
@media screen and (max-width:768px) {
    .contact-details .container {
        display: flex
    ;
        gap: 50px;
        flex-direction: column;
    }
}
.cookie__cookieBanner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #1a1a2e;
    color: #fff;
    font-family: 'Press Start 2P', monospace;
    padding: 20px;
    text-align: center;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px #000;
  }
  
  .cookie__cookieBanner .cookie__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .cookie__cookieBanner .cookie__icon {
    font-size: 24px;
  }
  
  .cookie__cookieBanner .cookie__btn {
    background: #ff0066;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-family: inherit;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .cookie__cookieBanner .cookie__btn:hover {
    background: #ff3388;
  }

  .accordn__item {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 10px;
    width: 100%;
    overflow: hidden;
  }
  
  .accordn__header {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: bold;
    background: #f7f7f7;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .accordn__header:hover {
    background: #eaeaea;
  }
  
  .accordn__content {
    padding: 15px 20px;
    display: none;
    background: transparent;
    animation: fadeIn 0.3s ease;
  }
  
  .accordn__item.active .accordn__content {
    display: block;
  }
  
  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }
  .gallery {
 
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
   
    margin: 60px auto;
  }
  
  .gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover;
 display: block;
    border-radius: 0px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .gallery img:hover {
    transform: scale(1.03);
  }
  .event{
    margin: 50px 0;
  }
  .event__list{
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
  }
  .event__card{
    display: flex;
    gap: 50px;
  }
  .events__list{
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .tags {
    padding: 0;
    list-style: none;
  }
  .tags li {
  
    padding: 6px 12px 6px 30px; /* добавляем отступ слева под иконку */
   
    font-size: 0.85rem;
    position: relative;
  }
  
  /* добавляем галочку перед каждым пунктом */
  .tags li::before {
    content: '✔';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #1dd1a1; /* зелёный */
    font-size: 0.8rem;
  }
  p.date {
    color: #ababab;
    font-weight: 300;
    font-size: 14px;
}
.wp-votoy.footer__contact {
    display: flex
;
    gap: 20px;
    flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
    .gallery {
        display: grid
    ;
        grid-template-columns: repeat(2, 1fr);
        gap: 0px;
        margin: 60px auto;
    }
    .event__card {
        display: flex
    ;
        gap: 50px;
        flex-direction: column;
    }
}