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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(135deg, #131218 0%, #17161d 50%, #0f0e13 100%);
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.cookie-consent.hidden {
    display: none;
}

.cookie-content {
    background: #2a2a3e;
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    text-align: left;
}

.cookie-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #cccccc;
    margin-bottom: 24px;
}

.cookie-content a {
    color: #00d4ff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-accept {
    background: #00d4ff;
    color: #1a1a2e;
    border: none;
    border-radius: 24px;
    padding: 12px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

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

.btn-refuse {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 24px;
    padding: 10px 24px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-refuse:hover {
    background: #ffffff;
    color: #1a1a2e;
    transform: translateY(-2px);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.logo img {
    width: 32px;
    height: 32px;
    filter: brightness(0) saturate(100%) invert(55%) sepia(96%) saturate(6196%) hue-rotate(180deg) brightness(101%) contrast(101%);
}

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

.nav-list a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list a:hover {
    color: #00d4ff;
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: #00d4ff;
    transition: width 0.3s ease;
}

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

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger span {
    width: 24px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.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);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: flex-end;
    margin-top: -18%;
}

.hero-title {
    font-size: 18vw;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.hero-description {
    font-size: 14px;
    color: #cccccc;
    padding-bottom: 60px;
    line-height: 1.6;
    max-width: 314px;
    position: relative;
    z-index: 4;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-wrap: wrap;
    padding-bottom: 60px;
    max-width: 300px;
    width: 100%;
    position: relative;
    z-index: 4;
}

.btn-primary {
    background: #00d4ff;
    color: #1a1a2e;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background: #00b8e6;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 32px;
    border: 2px solid #ffffff;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #1a1a2e;
    transform: translateY(-2px);
}

.hero-image {
    text-align: center;
    position: relative;
    max-width: 408px;
}

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

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

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 16px;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.highlight {
    color: #00d4ff;
}

/* Games Section */
.games-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.game-card {
   
 
    transition: all 0.3s ease;
   
}

.g1 {
    border-radius: 80px 0 0 80px;
background: linear-gradient(0deg, rgba(0, 225, 253, 0.30) 0%, rgba(0, 225, 253, 0.30) 100%);
box-shadow: 0 1px 6.9px 0 rgba(255, 255, 255, 0.10) inset;
box-shadow: 0 0 77.8px 0 #00E1FD;
}

.g2 {
    background: linear-gradient(0deg, rgba(170, 61, 235, 0.30) 0%, rgba(170, 61, 235, 0.30) 100%);
box-shadow: 0 1px 6.9px 0 rgba(255, 255, 255, 0.10) inset;
box-shadow: 0 0 77.8px 0 #AA3DEB;
}

.g3 {
    border-radius: 0 80px 80px 0;
background: linear-gradient(0deg, rgba(11, 252, 228, 0.30) 0%, rgba(11, 252, 228, 0.30) 100%);
box-shadow: 0 1px 6.9px 0 rgba(255, 255, 255, 0.10) inset;
box-shadow: 0 0 77.8px 0 #0BFCE4;
}

.game-card:hover {
    transform: translateY(-8px);
 
}

.game-image {
    width: 100%;
    height: 300px;
    margin-bottom: 24px;

    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

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

.game-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.game-content p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.5;
}

.btn-game {
    background: #00d4ff;
    color: #1a1a2e;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.btn-game:hover {
    background: #00b8e6;
   
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    position: relative;
}

.reviews-section::before {
    content: '';
    border-radius: 301px;
background: rgba(0, 225, 253, 0.60);
filter: blur(100px);
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
width: 262px;
height: 301px;
}

.reviews-section h2 {
    text-align: center;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 64px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.review-card {
    background: rgba(26, 26, 46, 0.6);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 212, 255, 0.3);
}

.reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.reviewer img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid #00d4ff;
}

.reviewer span {
    font-weight: 600;
    color: #ffffff;
}

.review-card p {
    font-style: italic;
    color: #cccccc;
    line-height: 1.6;
}

/* Explore Section */
.explore-section {
    padding: 80px 0;
    overflow: hidden;
}

.game-buttons {
    display: grid;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 48px;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
}

.div2 {
    grid-column-start: 3;
}

.div3 {
    grid-column-start: 2;
    grid-row-start: 2;
}

.div4 {
    grid-column-start: 2;
    grid-row-start: 3;
}

.div5 {
    grid-column-start: 3;
    grid-row-start: 3;
}

.div6 {
    grid-row-start: 4;
}

.game-btn {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
    color: #ffffff;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 32px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    border: none;
    cursor: pointer;
    position: relative;
    align-items: center;
    gap: 6px;
}

.blue {
border-radius: 32px;
background: #00E1FD;
}

.blue::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
height: 180px;
z-index: -1;
border-radius: 301px;
background: rgba(0, 225, 253, 0.60);
filter: blur(100px);
z-index: -1;
}

.green {
border-radius: 32px;
background: #0BFCE4;
}

.green::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
border-radius: 301px;
background: rgba(11, 252, 228, 0.60);
filter: blur(100px);
width: 300px;
height: 180px;
z-index: -1;
}

.purple {
border-radius: 32px;
background: #AA3DEB;
}

.purple::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
height: 180px;
z-index: -1;
border-radius: 301px;
background: rgba(170, 61, 235, 0.60);
filter: blur(100px);
}

.game-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

/* Why Choose Section */
.why-choose-section {
    padding: 80px 0;
   
}

.why-choose-section h2 {
    text-align: center;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
}

.why-choose-section > p {
    text-align: center;
    font-size: 16px;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto 64px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 24px;
    background: #16141D;
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #00d4ff;
}

.feature-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Footer */
.footer {
   
    padding: 48px 0 24px;
    
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: #00d4ff;
    margin-bottom: 24px;
}

.footer-logo img {
    width: 32px;
    height: 32px;
    filter: brightness(0) saturate(100%) invert(55%) sepia(96%) saturate(6196%) hue-rotate(180deg) brightness(101%) contrast(101%);
}

.footer-info p {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.footer-links a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00d4ff;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link img {
    width: 100%;
}

.social-link:hover {
    background: #00d4ff;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #888;
    font-size: 14px;
}

.footer-right {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}

.page-title {
    text-align: center;
    font-size: 72px;
}

.game-page {
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    padding-top: 50px;
}

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

.game-description {
    max-width: 314px;
}

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

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(26, 26, 46, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 48px;
        text-align: center;
    }

    .nav-list a {
        font-size: 24px;
    }
}

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

    .hero {
        min-height: auto;
        padding: 100px 0;
    }

    .hero-content {
       flex-direction: column;
       align-items: flex-start;
       margin-top: 0;
    }

    .hero-title {
        word-break: break-all;
        line-height: 0.8;
        font-size: 42vw;
        margin-bottom: 50px;
    }

    .hero-image {
   position: absolute;
   left: 50%;
   top: 50%;
   transform: translate(-50%, -50%);
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .cookie-content {
        padding: 24px;
        margin: 16px;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .btn-accept,
    .btn-refuse {
        flex: 1;
        min-width: 120px;
    }
    .game-page {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 520px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 43vw;
    }

    .hero-image {
        width: 85%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        max-width: 280px;
    }

    .game-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .game-btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .game-card {
        margin: 0 auto;
        max-width: 350px;
    }
}

              .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;
              }

              
                

                