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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Oswald', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f0f23 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
   
}

.section-title.center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.btn-primary {
   border-radius: 60px;
background: linear-gradient(90deg, #72CFFA 0%, #2014C4 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(107, 114, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(149, 107, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #1a1a2e;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1rem;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-top: 2px solid #ff6b6b;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.cookie-link {
    color: #4ecdc4;
    text-decoration: none;
    font-size: 0.9rem;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Header */
.header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    z-index: 999;
    padding: 15px 0;
}

.navbar {
    width: 100%;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

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

.logo img {
   width: 28px;
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #4ecdc4;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #72CFFA, #2014C4);
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
}

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

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
  
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0 0;
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding: 0 0 40px;
    width: 100%;
}

.hero-title {
    font-size: 5.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
   
}

.hero-text {
    max-width: 420px;
    width: 100%;
    font-size: 14px;
}

.hero-subtitle {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
}

.hero-image {
    position: relative;
  width: 100%;
  height: 400px;
}

.hero-character {
    width: 100%;
 object-fit: cover;
 object-position: center;
    height: 100%;
}

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

/* About Section */
.about {
    padding: 80px 0;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

.about-text {
    width: 60%;
    margin-left: auto;
    max-width: 692px;
    display: flex;
    gap: 20px;
    align-items: flex-end;
}

.sq {
    max-width: 190px;
}

.about-image {
    position: absolute;
    left: 0;
    width: 35%;
    max-width: 542px;
}

.about-image img {
    width: 100%;
}



.about-character {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 30px rgba(78, 205, 196, 0.3));
    animation: float 8s ease-in-out infinite;
}

.about-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
}

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

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/5;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
}

.level-badge {
    background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gallery-description {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 2.5rem;

    max-width: 900px;
   
    font-weight: 400;
}

/* Stats Section */
.stats {
    padding: 60px 0;
    
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    align-items: start;
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    border-radius: 22px;
border: 1px solid #FFF;
}

.stat-item:nth-of-type(2n) {
    min-height: 210px;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
   
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
    font-weight: 500;
}

/* Popular Games Section */
.popular-games {
    padding: 100px 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin-top: 3rem;
}

.game-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 1;
    transition: transform 0.3s ease;
}

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

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

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

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

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

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

.game-item.featured {
    grid-row: span 2;
    aspect-ratio: 1/2;
}

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

.game-title {
    position: absolute;
    top: 0;
    left: 0;
   width: 100%;
   height: 100%;
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
opacity: 0;
background: linear-gradient(90deg, #72CFFA 0%, #2014C4 100%);
 display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
}

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

/* CTA Section */
.cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.cta-text {
    display: flex;
    align-items: flex-end;
    width: 60%;
}

.cta-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2rem;
  
}

.cta-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 400;
    
}

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

.cta-character {
    width: 100%;
    height: auto;
   
    animation: float 7s ease-in-out infinite;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #4ecdc4;
}

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

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

.social-link img {
    width: 28px;
}

.social-link:hover {
    
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.9rem;
}

.about-inner {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
}

.page-text {
    max-width: 765px;
    width: 100%;
     display: flex;
     flex-direction: column;
     gap: 20px;
}

.game-image {
    max-width: 280px;
    width: 100%;
}

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

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

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

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
       
    }

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

    .container {
        padding: 0 15px;
    }

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

    .hero-text {
        max-width: 100%;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .about-image {
        position: relative;
        left: -20px;
        width: 100%;
        align-self: flex-start;
    }

    .about-text {
        width: 100%;
        flex-direction: column;
        margin-left: 0;
    }

    .sq {
        
    }

    .about-content .about-image {
        
    }

    .stat-item:nth-of-type(2n) {
    min-height: auto;
}

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

    .cta-text {
         display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        align-items: flex-start;
    }

    .cta-image {
        position: relative;
        right: -20px;
        width: 100%;
        align-self: flex-end;
    }

    .cta-title {
        font-size: 2rem;
    }

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

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

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .footer-content {
       display: flex;
       flex-direction: column;
       align-items: center;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-title {
        font-size: 3rem;
    }

    .games-grid {
        
    }

    .game-item.featured {
       
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image {
        height: 300px;
    }

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

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

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

    .btn {
        padding: 12px 25px;
        font-size: 0.8rem;
    }

    .btn-large {
        padding: 15px 30px;
        font-size: 0.9rem;
    }
}

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

              
                

                