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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Unbounded', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    font-weight: 400;
}

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

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

.cookie-consent.hidden {
    opacity: 0;
    pointer-events: none;
}

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

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

.cookie-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 30px;
    font-weight: 300;
}

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

.cookie-buttons button {
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.cookie-buttons .btn-primary {
    background: #FF9500;
    color: white;
}

.cookie-buttons .btn-primary:hover {
    background: #e6850a;
    transform: translateY(-2px);
}

.cookie-buttons .btn-secondary {
    background: #FF9500;
    color: white;
}

.cookie-buttons .btn-secondary:hover {
    background: #e6850a;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

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

.flag-icon {
    width:30px;
   
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #000;
    letter-spacing: 1px;
}

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

.nav-list a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.burger-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: #000;
    margin: 3px 0;
    transition: 0.3s;
}

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

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

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

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav-list {
    list-style: none;
    padding: 20px;
}

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

.mobile-nav-list a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 18px;
}

/* Hero Section */
.hero {
   background: linear-gradient(180deg, #008230 0%, #00AC90 100%);
    color: white;
    padding: 120px 0 0;

}

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

.hero-text h1 {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 364px;
}

.h-pic {
    max-width: 312px;
    width: 100%;
    margin-left: auto;
    margin-top: -120px;
    display: block;
}

.btn-primary {
    border-radius: 60px;
border: 3px solid #FFF;
background: #FFB847;
    color: #000;
    padding: 15px 30px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.btn-primary:hover {
    background: #e6850a;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}




/* About Section */
.about {
    padding: 80px 0;
    background: white;
}

.about h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 60px;
  
    letter-spacing: -1px;
}

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

.about-text p {
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 20px;
   
}

.about-image {
    position: relative;
    text-align: center;
}

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

.about-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
}

.about-description {
  align-self: flex-end;
}

.about-description p {
    font-size: 14px;
    line-height: 1.4;
    max-width: 800px;

}

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

.why-choose h2 {
    font-size: 36px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

.features-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-card {
    width: 100%;
    flex: 0 1 31%;
    border-radius: 30px;
border: 3px solid #202020;
    padding: 30px 30px;
    border-radius: 15px;
 
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
     width: 60px;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
   
}

.feature-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #666;
    font-weight: 300;
}

/* Experience Section */
.experience {
    padding: 80px 0;
    background: white;
}

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

.experience-image {
    position: relative;
    text-align: center;
}

.experience-image img {
    max-width: 100%;
    height: auto;
}

.experience-ui {
    position: absolute;
    top: 20px;
    left: 20px;
}

.ui-elements {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.health-bar,
.score-display,
.game-controls {
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
}

.experience-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.experience-text p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 300;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
}

.gallery h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

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

.gallery-text {
  max-width: 400px;
}

.gallery-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 60px;
    color: #666;
    font-weight: 300;
}

.gallery-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    height: 420px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-arrow {
    position: absolute;
    bottom: 40px;
    left: 40px;
    font-size: 36px;
    font-weight: 800;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(180deg, #008230 0%, #00AC90 100%);
    color: white;
}

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

.contact-text h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.contact-text p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    font-weight: 300;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 500;
}

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

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

/* Footer */
.footer {
    
    padding: 40px 0 20px;
}

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

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

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

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

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

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

.social-link {
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease;
    width: 40px;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

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

.page-title {
    font-size: 64px;
}

.catalog {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 600px;
    width: 100%;
}

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

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

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

/* Responsive Design */
@media (max-width: 1023px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-text h1 {
        font-size: 40px;
    }
    
    .about h2,
    .why-choose h2,
    .experience-text h2,
    .gallery h2,
    .contact-text h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .page-title {
        font-size: 56px;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .hero-content,
    .about-content,
    .experience-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero {
        padding: 100px 0 60px;
        
    }

    .hero-image {
        max-width: 400px;
        width: 65%;
    }
    
    .hero-text h1 {
        font-size: 42px;
    }
    
    .feature-card {
        flex: 0 1 45%;
    }

    .gallery-inner {
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .contact-character {
        max-width: 400px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 520px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }

    .page-title {
        font-size: 42px;
    }

    .game-item {
        flex: 0 1 46%;
    }

    .h-pic {
        margin-top: 10px;
    }
    
    .about h2,
    .why-choose h2,
    .experience-text h2,
    .gallery h2,
    .contact-text h2 {
        font-size: 28px;
    }
    
    .cookie-content {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .cookie-content h3 {
        font-size: 20px;
    }

    .features-grid {
        flex-direction: column;
    }
    
    .feature-card {
        padding:  20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 140px;
    }
}

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

              
                

                