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

html {
    scroll-behavior: smooth;
}

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

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

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-family: 'Anton', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

.btn-secondary:hover {
    background: white;
    color: #333;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-consent.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    background: #2a2a2a;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    text-align: center;
    color: white;
    position: relative;
}

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

.cookie-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: white;
    letter-spacing: 2px;
}

.cookie-content p {
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.cookie-buttons .btn {
    margin: 0;
    width: 100%;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 400;
    color: #333;
    letter-spacing: 2px;
    text-decoration: none;
}

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

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

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 25px;
    justify-content: space-between;
}

.burger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 2px;
    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(7px, -6px);
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
}

.mobile-nav ul li {
    margin: 20px 0;
}

.mobile-nav ul li a {
    color: white;
    font-size: 24px;
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.mobile-nav ul li a:hover {
    color: #ff6b35;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffeb3b, #4caf50);
    
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

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

.hero-text {
max-width: 731px;
width: 100%;
margin-right: -80px;
padding-bottom: 45px;
}

.hero-text h1 {
    font-size: 110px;
    font-weight: 400;
    color: #333;
    line-height: 0.9;
    margin-bottom: 30px;
 
}

.hero-text p {
    
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 40px;
    max-width: 450px;
}

.hero-icon {
    font-size: 48px;
    margin-top: 30px;
}

.h-pic {
    margin-top: 30px;
    max-width: 300px;
    display: block;
}

.hero-character {
    max-width: 698px;
    width: 100%;
    margin-left: -100px;
}



.hero-character img {
    max-width: 100%;
    height: auto;
    width: 100%;
    display: block;
}

/* About Section */
.about {
    background: #fff;
    padding: 100px 0;
}

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

.about-text h2 {
    font-size: 64px;
    font-weight: 400;
    color: #333;
    line-height: 0.9;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.about-text p {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    
}

.stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 40px;
}

.stat h3 {
    font-size: 48px;
    color: #333;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.stat p {
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-character {
    text-align: center;
}

.about-character img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
}

/* Features Section */
.features {
    background: #f8f8f8;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.features h2 {
    font-size: 92px;
    font-weight: 400;
    color: #333;
    line-height: 0.9;
    margin-bottom: 60px;
    text-align: left;
}

.glob {
    max-width: 242px;
    width: 100%;
    margin-left: auto;
    display: block;
}

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

.features-grid {
    display: flex;
   flex-direction: column;
    gap: 30px;
}

.feature-card {
    padding: 30px 20px;
    border-radius: 20px;
    text-align: left;
    max-width: 538px;
    width: 100%;
}

.feature-card.orange {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);

    margin-left: 30px;
}

.feature-card.green {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
  
    
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.2;
    opacity: 0.9;
}

.global-icon {
    position: absolute;
    bottom: 50px;
    left: 50px;
    font-size: 48px;
    opacity: 0.3;
}

/* Adventure Section */
.adventure {
    background: linear-gradient(135deg, #ffeb3b, #4caf50);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.adventure-content {
    display: flex;
    justify-content: center;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.adventure-text h2 {
    font-size: 56px;
    font-weight: 400;
    color: #333;
    line-height: 0.9;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.adventure-text p {
    
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
}

.adv-bcg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    object-fit: cover;
    object-position: center;
}

/* Testimonials Section */
.testimonials {
    background: #fff;
    padding: 100px 0;
}

.testimonials h2 {
    font-size: 64px;
    font-weight: 400;
    color: #333;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 3px;
}

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

.testimonial-card {
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
}

.testimonial-card.orange {
    background: linear-gradient(135deg, #ff6b35, #ff8c42);
    
}

.testimonial-card.green {
    background: linear-gradient(135deg, #4caf50, #66bb6a);
   
}

.testimonial-card h4 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.testimonial-card p {

    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 20px;
    opacity: 0.9;
}

.stars {
    font-size: 18px;
    color: #ffeb3b;
}

/* Contact Section */
.contact {
    background: linear-gradient(135deg, #ffeb3b, #4caf50);
    padding: 100px 0;
}

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

.contact-text h2 {
    font-size: 72px;
    font-weight: 400;
    color: #333;
    line-height: 0.9;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.contact-text p {
   
    font-size: 16px;
    line-height: 1.4;
    color: #333;
    margin-bottom: 40px;
}

.contact-info p {
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #333;
    margin-bottom: 15px;
}

.contact-character {
    text-align: center;
    max-width: 456px;
    width: 100%;
}

.contact-character img {
    max-width: 100%;
    height: auto;
   width: 100%;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    letter-spacing: 2px;
}

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

.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #000;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #ff6b35;
}

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

.social-links a {
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a img {
    width: 40px;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
   
    padding-top: 30px;
    border-top: 1px solid #444;
}

.footer-bottom p {
    font-family: Arial, sans-serif;
    font-size: 12px;
    opacity: 0.7;
}

.cat-inner {
    padding: 40px 0;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

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

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

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

.game-inner {
    margin-top: 30px;
    border-radius: 40px;
background: #8FF339;
padding: 30px;
display: flex;
flex-direction: column;
gap: 20px;
align-items: flex-start;
}

/* Responsive Design */
@media (max-width: 1023px) {
    .burger-menu {
        display: flex;
    }
    
    .nav {
        display: none;
    }
    
    .hero-text h1 {
        font-size: 56px;
    }
    
    .about-text h2,
    .features h2,
    .testimonials h2 {
        font-size: 48px;
    }
    
    .adventure-text h2,
    .contact-text h2 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        flex-direction: column;
        
        gap: 40px;
    }

    .hero-text {
        margin: 0;
    }

    .cat-inner {
     flex-direction: column;
     align-items: center;
    }

    .hero-character {
        margin: 0;
        max-width: 450px;
    }
    
    .hero-text h1 {
        font-size:72px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .adventure-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        
    }

    .features-inner {
        flex-direction: column;
    }
    
    .stats {
        justify-content: center;
        gap: 30px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        
    }
    
    .footer-nav ul {
        
    }
    
    .cookie-content {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 42px;
    }
    
    .about-text h2,
    .features h2,
    .testimonials h2 {
        font-size: 36px;
    }
    
    .adventure-text h2,
    .contact-text h2 {
        font-size: 32px;
    }

    .game-item {
        flex: 0 1 46%;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat {
        text-align: center;
    }
    
    .feature-card,
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .cookie-content h3 {
        font-size: 24px;
    }
    
    .cookie-content p {
        font-size: 13px;
    }
}

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

.hero-text,
.about-text,
.adventure-text,
.contact-text {
    animation: fadeInUp 0.8s ease-out;
}

.hero-character,
.about-character,
.contact-character {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Smooth scrolling offset for fixed header */
section {
    scroll-margin-top: 80px;
}

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

              
                

                