/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #5FEDD7;
    --secondary-color: #6CEDD9;
    --dark-bg: #0F1419;
    --darker-bg: #08090C;
    --light-bg: #1A1F26;
    --text-white: #FFFFFF;
    --text-gray: #B8BDC5;
    --accent-gradient: linear-gradient(135deg, #5FEDD7 0%, #4ECDC4 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #191919;
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 24px;
    padding: 40px 50px;
    max-width: 600px;
    width: 90%;
    z-index: 10000;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.3);
    display: none;
}

.cookie-consent.show {
    display: block;
    animation: slideIn 0.5s ease;
}

.cookie-content {
    text-align: center;
}

.cookie-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.cookie-title {
    font-family: 'Sarpanch', sans-serif;
    color: #1A1F26;
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 600;
}

.cookie-text {
    color: #4A5568;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-btn {
    padding: 16px 30px;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
}

.accept-btn {
    background: var(--primary-color);
    color: white;
}

.accept-btn:hover {
    background: #4ECDC4;
    transform: translateY(-2px);
}

.decline-btn {
    background: #E8ECF0;
    color: #2D3748;
}

.decline-btn:hover {
    background: #D1D5DB;
}

.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
}

.cookie-overlay.show {
    display: block;
}

/* Header */
.header {
 
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #1F2937;
background: #003F40;
backdrop-filter: blur(7.349999904632568px);
    
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
}

.logo img {
    width: 30px;
}

.logo-text {
    font-family: 'Sarpanch', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    color: var(--text-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.burger-menu span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Section */
.hero {
    padding: 150px 0 10px;
    position: relative;
    overflow-x: clip;
   
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
    padding-bottom: 60px;
    margin-right: -80px;
}

.hero-title {
    font-family: 'Sarpanch', sans-serif;
    font-size: 92px;
    line-height: 1.1;
    margin-bottom: 40px;
    font-weight: 900;
}

.title-white {
    color: #FFF;
-webkit-text-stroke-width: 2px;
-webkit-text-stroke-color: #51E1C7;
font-family: Sarpanch;
font-size: 162px;
font-style: normal;
font-weight: 700;
line-height: 100%; /* 204px */
    display: block;
}

.title-turquoise {
    color: var(--primary-color);
    display: block;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 542px;
    width: 100%;
    margin-left: -200px;
}

.hero-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(95, 237, 215, 0.3));
    animation: float 6s ease-in-out infinite;
}



@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--darker-bg);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(95, 237, 215, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--darker-bg);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* About Section */
.about {
    padding: 100px 0 280px;
    border-radius: 200px 200px 0 0;
background: #29282E;
    position: relative;
    margin-top: -50px;
    overflow-x: clip;
}

.section-title {
    font-family: 'Sarpanch', sans-serif;
    font-size: 48px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-text {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    position: relative;
    z-index: 3;
}

.game-icons-decoration {
   width: 100%;
   left: 0;
   bottom: 0;
   position: absolute;
}

/* Advantages Section */
.advantages {
    padding: 100px 0;
    background: var(--darker-bg);
    position: relative;
    overflow-x: clip;
}

.advantages-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.advantages-list {
    flex: 2;
    width: 70%;
}

.advantage-item {
    margin-bottom: 40px;
}

.advantage-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.advantage-title {
    font-family: 'Sarpanch', sans-serif;
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
    letter-spacing: 1px;
}

.advantage-text {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}

.advantages-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: absolute;
    right: 0;
    width: 30%;
}

.advantages-image img {
    width: 100%;
    height: auto;
   
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Games Section */
.games {
    padding: 100px 0;
    background: var(--dark-bg);
}

.games-slider-container {
    background: var(--primary-color);
    padding: 80px 20px;
    border-radius: 50px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
    min-height: 440px;
}

.gamesSwiper {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.gamesSwiper .swiper-wrapper {
    align-items: center;
    padding: 40px 0;
}

.gamesSwiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    width: 300px;
    aspect-ratio: 1;
}

.game-card {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.swiper-slide-active .game-card {
    width: 400px;
   aspect-ratio: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.swiper-slide-prev .game-card,
.swiper-slide-next .game-card {
    opacity: 0.8;
}

.game-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.game-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.swiper-slide-active .game-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.games-button {
    text-align: center;
}

/* Contacts Section */
.contacts {
    padding: 100px 0;
    background: var(--darker-bg);
}

.contacts-content {
    display: flex;
    gap: 80px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.contacts-info {
    flex: 2;
}

.contacts-subtitle {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 24px;
}

.contact-details {
    font-size: 14px;
    line-height: 1.8;
}

.contact-details strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
}

.contacts-image {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 450px;
}

.contacts-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 30px rgba(95, 237, 215, 0.3));
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(95, 237, 215, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo .logo-text {
    font-family: 'Sarpanch', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon {
    font-size: 20px;
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(95, 237, 215, 0.1);
}

.footer-bottom p {
    color: var(--text-gray);
    font-size: 13px;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.game-page {
    padding: 140px 0 100px;
    background: #51E1C7;
    color: #08090C;
}


.game-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.game-content {
    max-width: 770px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.page-image {
    max-width: 430px;
    width: 100%;
}

.games ul {
    text-align: center;
     display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 20px;
}

.games-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.game-item {
    width: 100%;
    flex: 0 1 31%;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: var(--dark-bg);
        width: 100%;
        max-width: 300px;
        padding: 40px;
        gap: 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        height: calc(100vh - 70px);
    }

    .nav-menu.active {
        right: 0;
    }

    .hero-title {
        font-size: 80px;
    }

    .title-white {
           font-size: 110px;
    }

    .advantages-content {
        flex-direction: column;
        gap: 40px;
    }

    .advantages-image {
       
    }

    .contacts-content {
        flex-direction: column;
    }

    .games-slider-container {
        padding: 60px 20px;
    }

    .gamesSwiper .swiper-slide {
        width: 280px;
    }

    .game-card {
       
    }

    .swiper-slide-active .game-card {
        width: 340px;
       
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        margin: 0;
    }

    .hero-image {
        margin: 0;
    }

    .game-inner {
        flex-direction: column;
    }

    .title-white {
           font-size: 92px;
    }

    .hero-title {
        font-size: 64px;
    }

    .section-title {
        font-size: 36px;
    }

    .about {
        padding-bottom: 200px;
    }

    .advantages,
    .games,
    .contacts {
        padding: 60px 0;
    }

    .advantages-image {
        position: relative;
        right: -20px;
        margin-left: auto;
        width: 45%;
    }

    .games-slider-container {
        padding: 50px 10px;
        border-radius: 30px;
    }

    .gamesSwiper .swiper-slide {
        width: 140px;
    }

    .game-item {
       flex: 0 1 40%;
    }

    .swiper-slide-active .game-card {
       
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .cookie-consent {
        padding: 30px 25px;
    }

    .cookie-title {
        font-size: 24px;
    }

    .cookie-text {
        font-size: 14px;
    }
}

@media (max-width: 500px) {
    .hero-title {
        font-size: 42px;
    }

    .title-white {
           font-size: 64px;
    }

    .section-title {
        font-size: 28px;
    }

    .about {
        border-radius: 100px 100px 0 0;
background: #29282E;
padding-bottom: 160px;
    }

    .games-slider-container {
        padding: 40px 10px;
        border-radius: 25px;
    }

    .gamesSwiper .swiper-slide {
        width: 200px;
    }

    .game-card {
       width: 100%;
       height: 100%;
       aspect-ratio: 1;
    }

    .swiper-slide-active .game-card {
        width: 260px;
       height: 260px;
    }

    .btn {
        padding: 14px 30px;
        font-size: 14px;
    }
}

              .page {
                padding: 140px 0 80px;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              
                

                