/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Play', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #192619;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #00ff00, #00cc00);
    color: #000;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-family: 'Play', sans-serif;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #00cc00, #009900);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    padding: 10px 22px;
    border-radius: 6px;
    font-family: 'Play', sans-serif;
    font-weight: 400;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #1a2e1a;
    transform: translateY(-2px);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 46, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    z-index: 10000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content h3 {
    color: #00ff00;
    margin-bottom: 10px;
    font-size: 18px;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-content a {
    color: #00ff00;
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.cookie-buttons .btn-primary,
.cookie-buttons .btn-secondary {
    padding: 8px 16px;
    font-size: 14px;
}

/* Header */
.header {
    background: rgba(26, 46, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #00ff00;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cross-icon {
    width: 20px;
    height: 20px;
    position: relative;
}

.cross-icon::before,
.cross-icon::after {
    content: '';
    position: absolute;
    background: #000;
    border-radius: 2px;
}

.cross-icon::before {
    width: 16px;
    height: 3px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cross-icon::after {
    width: 3px;
    height: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-menu li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: #00ff00;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ff00;
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a2e1a 0%, #2d4a2d 100%);
    padding: 120px 0 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 800px;
    opacity: 0.9;
}

/* Game Section */
.game-section {
    padding: 80px 0;
    background: #1a2e1a;
}

.game-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.game-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.game-info p {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.game-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.game-image {
    text-align: center;
}

.game-image img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.game-image img:hover {
    transform: scale(1.05);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #1a2e1a;
}

.features h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: #00ff00;
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: #00ff00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 30px;
    height: 30px;
    filter: brightness(0);
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #00ff00;
}

.feature-card p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
}

/* Recommended Section */
.recommended {
    padding: 80px 0;
    background: #2d4a2d;
}

.recommended h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 60px;
}

.recommended-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.recommended-card {
    background: rgba(26, 46, 26, 0.8);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.recommended-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.recommended-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 20px;
}

.card-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #00ff00;
}

.card-content p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #1a2e1a;
}

.testimonials h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.testimonial-content h4 {
    color: #00ff00;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.5;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: #2d4a2d;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 20px;
}

.newsletter p {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.newsletter-form input,
.newsletter-form textarea {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: 'Play', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.newsletter-form input::placeholder,
.newsletter-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus,
.newsletter-form textarea:focus {
    outline: none;
    border-color: #00ff00;
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
.footer {
    background: #0d1a0d;
    padding: 60px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.footer-section h3 {
    color: #00ff00;
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #00ff00;
}

.footer-social .social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #00ff00;
    color: #000;
    border-color: #00ff00;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 5px;
}

.copyright {
    font-size: 14px;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .burger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(26, 46, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin-bottom: 30px;
    }
    
    .nav-menu li a {
        font-size: 18px;
    }
    
    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .game-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .game-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .recommended-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 90px 0 50px;
    }
    
    .features,
    .recommended,
    .testimonials,
    .newsletter {
        padding: 50px 0;
    }
    
    .feature-card,
    .testimonial-card {
        padding: 25px 15px;
    }
    
    .recommended-card .card-content {
        padding: 15px;
    }
}

/* Smooth animations */
.feature-card,
.recommended-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(30px);
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

              .page {
                padding: 80px 0;
              }
              
              .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;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                