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

html {
    scroll-behavior: smooth;
}

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

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

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-content a {
    color: #7ED321;
    text-decoration: none;
}

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

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

.btn-accept,
.btn-decline {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: linear-gradient(45deg, #7ED321, #9AE529);
    color: #000;
}

.btn-decline {
    background: transparent;
    color: #fff;
    border: 2px solid #444;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(126, 211, 33, 0.4);
}

.btn-decline:hover {
    border-color: #7ED321;
    color: #7ED321;
}

/* Header */
.header {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    transition: all 0.3s ease;
}

.navbar {
    padding: 15px 0;
}

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

.nav-brand {
    width: auto;
    display: flex;
 gap: 6px;
    align-items: center;
    text-decoration: none;
    color: #FFF;
font-family: Unbounded;
font-size: 22px;
font-style: normal;
font-weight: 700;
line-height: normal;
text-transform: uppercase;
}

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

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

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #7ED321;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #7ED321, #9AE529);
    transition: width 0.3s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
   
    padding: 75px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(126, 211, 33, 0.1) 0%, transparent 70%);
    z-index: -1;
}

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

.hero-text {
    max-width: 694px;
    width: 60%;
}

.hero-text h1 {
    font-size: 80px;
    font-weight: 700;
    line-height: 0.9;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #fff, #7ED321);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.hero-text p {
    font-size: 14px;
    color: #cccccc;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-button {
    background: linear-gradient(45deg, #7ED321, #9AE529);
    color: #000;
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(126, 211, 33, 0.4);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.hero-image {
    text-align: center;
    position: absolute;
    right: 0;
    max-width: 553px;
    width: 38%;
}

.hero-image .character {
    max-width: 100%;
    width: 100%;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

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

/* Story Section */
.story {
    padding: 80px 0;
    position: relative;
}

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

.story-text {
   
}

.story-text h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 30px;
    color: #ffffff;
}

.story-text p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.8;
}

.story-team {
    position: relative;
    text-align: center;

    max-width: 572px;
    width: 100%;
}

.story-team img {
    width: 100%;
}

.team-characters {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.team-member {
    width: 120px;
    height: auto;
    animation: bounce 2s ease-in-out infinite;
}

.team-member:nth-child(2) {
    animation-delay: 0.3s;
}

.team-member:nth-child(3) {
    animation-delay: 0.6s;
}

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

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

    position: relative;
}

.gallery-head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
}

.gallery h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 30px;
    color: #ffffff;
}

.gallery p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

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

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;

    transition: transform 0.3s ease;
}

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

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

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

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(126, 211, 33, 0.3), rgba(154, 229, 41, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

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

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

.hot-text {
    width: 62%;
    max-width: 680px;
}

.hot-games h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 30px;
    color: #ffffff;
}

.hot-games p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.8;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    width: 100%;
}

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

.game-title {
    border-radius: 22px;
background: rgba(176, 196, 14, 0.80);
color: #0C0C0C;
font-family: Unbounded;
font-size: 18px;
font-style: normal;
font-weight: 700;
line-height: normal;
align-items: center;
display: flex;
justify-content: center;
text-align: center;
width: 100%;
height: 100%;
opacity: 0;
position: absolute;
left: 0;
top: 0;
transition: all 0.3s ease;
}

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


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

.div5 {
    grid-row-start: 2;
}

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

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

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

.hot-characters {
    text-align: center;
    position: absolute;
    right: 0;
    width: 38%;
    max-width: 446px;
}

.hot-characters img {
    width: 100%;
    height: auto;

   
}

.hot-character:nth-child(2) {
    animation-delay: 1s;
}

.hot-character:nth-child(3) {
    animation-delay: 2s;
}

@keyframes sway {
    0%, 100% { transform: rotate(-2deg) translateY(0px); }
    50% { transform: rotate(2deg) translateY(-10px); }
}

/* Join Section */
.join {
    padding: 120px 0;
    position: relative;
}

.join::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(126, 211, 33, 0.05) 0%, transparent 70%);
    z-index: -1;
}

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

.join-character {
    position: absolute;
    left: 0;
    max-width: 395px;
    width: 32%;
}

.join-character .character {
    max-width: 100%;
    width: 100%;
    height: auto;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.join-text {
    margin-left: auto;
    width: 65%;
}

.join-text h2 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 30px;
    background: linear-gradient(45deg, #fff, #7ED321);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.join-text p {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.8;
}

/* Footer */
.footer {
  
    padding: 60px 0 30px;

}

.footer-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 3;
}

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

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

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

.footer-links a:hover {
    color: #7ED321;
}

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

.social-link {
    width: 30px;
    height: 30px;
    border-radius: 50%;
   
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #7ED321;
    transform: translateY(-3px);
}

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

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

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

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

.page-img {
    max-width: 370px;
    width: 100%;
}

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

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

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

.page-text {
    max-width: 890px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-menu a {
       font-size: 12px;
    }
    
    .nav-menu.active {
        
    }
    
    .nav-toggle {
      
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .page-inner {
        flex-direction: column;
    }
    
    .hero-content,
    .story-content,
    .hot-content,
    .join-content {
        display: flex;
        flex-direction: column;
        gap: 40px;
       align-items: center;
    }

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

    .hero-text h1 {
        font-size: 4rem;
    }

    .hero-image {
        position: relative;
        right: -20px;
        align-self: flex-end;
        width: 100%;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 20px;
    }
    
    .games-grid {
        
    }

    .hot-characters {
        position: relative;
        right: -20px;
        width: 100%;
        align-self: flex-end;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
       
    }
    
    .footer-links {
       justify-content: flex-start;
        gap: 20px;
    }

    .footer-bottom {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero,
    .story,
    .gallery,
    .hot-games,
    .join {
        padding: 80px 0;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text p {
        font-size: 12px;
    }

    .gallery-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .hot-text {
        max-width: 100%;
        width: 100%;
    }
    
    .games-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .game-card {
        flex: 0 1 45%;
    }
    
    .team-characters {
        gap: 10px;
    }
    
    .team-member {
        width: 80px;
    }

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

    .join-text {
        width: 100%;
        margin-left: 0;
    }
    
    .hot-character {
        
    }
}

/* Smooth scrolling and performance */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Loading animation */
.loading {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.loading.visible {
    opacity: 1;
    transform: translateY(0);
}

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

              
                

                