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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Buttons */
.cta-button {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    border: none;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 3px solid #8B5CF6;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
}

.cookie-content a {
    color: #8B5CF6;
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #8B5CF6;
    color: white;
}

.cookie-btn.decline {
    background: #f3f4f6;
    color: #555;
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

/* Header */
.header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    z-index: 999;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B5CF6;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #8B5CF6;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #8B5CF6, #A855F7, #7C3AED);
    color: white;
   
    padding: 90px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.hero::before {
    
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    
    z-index: 2;
}

.hero-text {
    width: 50%;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-description {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-image {
   
    position: absolute;
    max-width: 619px;
    width: 48%;
    right: 0;
    left: auto;
}

.hero-characters {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

/* Statistics Section */
.statistics {
    padding: 6rem 0;
   
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
    padding: 20px;
    border-radius: 20px;
 
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.stat-icon {
   width: 80px;
   align-self: flex-end;
   margin-left: auto;
}

.stat-icon img {
    width: 100%;
    display: block;
}

/* Our Story Section */
.our-story {
    padding: 6rem 0;
   
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.story-image img {
    max-width: 100%;
    height: auto;
    width: 100%;
    border-radius: 20px;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

.story-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
}

.story-description {
    margin-bottom: 3rem;
    color: #555;
    font-size: 14px;
}

.story-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature h3 {
    color: #8B5CF6;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: 800;
}

.feature p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Trending Games Section */
.trending-games {
    padding: 6rem 0;
    background: linear-gradient(135deg, #8B5CF6, #A855F7);
    color: white;
    position: relative;
    overflow: hidden;
}

.trending-games::before {
    
}

.trending-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
   
    z-index: 2;
}

.trending-text .section-title {
    text-align: left;
    color: white;
    margin-bottom: 2rem;
}

.trending-description {
    margin-bottom: 2rem;
    opacity: 0.9;
    font-size: 14px;
    line-height: 1.8;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 1rem;
    position: relative;
    max-width: 380px;
    width: 100%;
    z-index: 3;
}

.div2 {
    grid-column-start: 1;
    grid-row-start: 2;
}

.div3 {
    grid-column-start: 1;
    grid-row-start: 3;
}

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

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

.div6 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 2;
    grid-row-start: 2;
}

.game-card {
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background: rgba(255,255,255,0.1);
  
    position: relative;
}

.game-title {
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
text-align: center;
font-family: Inter;
font-size: 15px;
font-style: normal;
font-weight: 700;
line-height: normal;
background: rgba(43, 43, 43, 0.70);
opacity: 0;
transition: all 0.3s ease;
position: absolute;
left: 0;
top: 0;
}

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

.game-card:hover .game-title{
    opacity: 1;
}

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

.trending-character {
    position: absolute;
   
    right: 0;
    z-index: 1;
}

.trending-character img {
    max-width: 310px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

/* CTA Section */
.cta-section {
    padding: 10rem 0;
  overflow: hidden;
}

.cta-content {
    display: grid;
    grid-template-columns:  1fr;
    gap: 2rem;
    align-items: center;
}

.cta-text {
    width: 65%;
}

.cta-text .section-title {
    text-align: left;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.cta-description {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-image {
    position: absolute;
    right: 0;
    width: 35%;
    max-width: 475px;
}

.cta-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

/* Footer */
.footer {
  
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
 gap: 20px;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-img {
    width: 35px;
    height: 35px;
}

.footer-logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8B5CF6;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #8B5CF6;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link img {
    width: 30px;
    height: 30px;
    transition: transform 0.3s ease;
}

.social-link:hover img {
    transform: scale(1.1);
}

.footer-bottom {
  
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #000;
    font-size: 0.9rem;
}

.game-img {
    max-width: 360px;
    width: 100%;
}

.game-img img {
    width: 100%;
}

.page-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    max-width: 870px;
    width: 100%;
    gap: 30px;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
}

.page-img {
    
    width: 100%;
}

.page-img img {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
    }

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

    .hero-image, .cta-image {
        position: relative;
        align-self: flex-end;
        right: -20px;
        width: 100%;
    }
    
    .hero-title {
        font-size: 4rem;
    }

    .hero-text, .cta-text {
        width: 100%;
        max-width: 600px;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .trending-content {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 60px 0;
    }
    
    .cta-content {
        display: flex;
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .games-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        max-width: 500px;
        margin: 0 auto;
    }

    .game-card {
        width: 100%;
        flex: 0 1 45%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .stats-grid {
       
        margin: 0 auto 3rem;
    }
    
.story-image {
    max-width: 450px;
  margin: 0 auto;
  display: block;
}

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-features {
        grid-template-columns: 1fr;
    }
    
    .trending-character {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 50px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
   
        margin: 0 auto;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.stats-grid,
.story-content,
.trending-content,
.cta-content {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus styles for accessibility */
.cta-button:focus,
.nav-link:focus,
.cookie-btn:focus {
    outline: 2px solid #8B5CF6;
    outline-offset: 2px;
}

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

              
                

                