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

body {
    font-family: 'Merriweather', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

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

/* Header Styles */
header {
    background-color: #0d5c0d;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-link img {
    margin-right: 0.5rem;
    width: 300px;
    height: 120px;
    vertical-align: middle;
}

/* Burger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.bar {
    width: 25px;
    height: 2px;
    background-color: #FFFFFF;
    margin: 3px 0;
    transition: 0.3s;
}

/* Animated hamburger */
.menu-toggle.is-active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

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

/* Navigation */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 1.1rem;
}

nav ul li a:hover {
    color: #FFD700;
}

/* Hero Section */
.banner {
    background: linear-gradient(rgba(13, 92, 13, 0.8), rgba(13, 92, 13, 0.9)), url('img/hero.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.banner h1 {
    font-family: 'Luckiest Guy', cursive;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.action-link {
    display: inline-block;
    background-color: #FFD700;
    color: #0d5c0d;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.action-link:hover {
    background-color: #ffc400;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* About Section */
.overview {
    padding: 80px 0;
    background-color: white;
}

.overview h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 40px;
    color: #0d5c0d;
    font-family: 'Luckiest Guy', cursive;
}

.overview p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Game Preview Section */
.showcase {
    padding: 80px 0;
    background-color: #e8f5e9;
}

.showcase h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #0d5c0d;
    font-family: 'Luckiest Guy', cursive;
}

.display-card {
    display: flex;
    flex-wrap: wrap;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.display-card img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
}

.card-content {
    padding: 40px;
    flex: 1;
    min-width: 300px;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #0d5c0d;
}

.card-content p {
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.start-btn {
    display: inline-block;
    background-color: #0d5c0d;
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.start-btn:hover {
    background-color: #0a4a0a;
    transform: translateY(-2px);
}

/* FAQ Section */
.help-center {
    padding: 80px 0;
    background-color: white;
}

.help-center h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #0d5c0d;
    font-family: 'Luckiest Guy', cursive;
}

.help-item {
    max-width: 800px;
    margin: 0 auto 10px;
    padding: 0;
    background: #e8f5e9;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    color: #0d5c0d;
    margin: 0;
    padding: 25px;
    font-size: 1.4rem;
    cursor: pointer;
    position: relative;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #d1e7d1;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    transition: transform 0.3s;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
    padding: 0 25px 25px 25px;
    max-height: 500px;
}

/* Testimonials Section */
.reviews {
    padding: 80px 0;
    background-color: #0d5c0d;
    color: white;
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    font-family: 'Luckiest Guy', cursive;
}

.review-item {
    max-width: 800px;
    margin: 0 auto 30px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.review-item p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 15px;
}

.review-item span {
    font-weight: 600;
    color: #FFD700;
}

/* Game Section */
.play-area {
    padding: 50px 0;
}

.play-area h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #0d5c0d;
    font-family: 'Luckiest Guy', cursive;
}

.game-frame {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.game-details {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.game-details h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #0d5c0d;
}

.game-details p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Contact Section */
.contact-area {
    padding: 50px 0;
}

.contact-area h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #0d5c0d;
    font-family: 'Luckiest Guy', cursive;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-panel {
    flex: 1;
    min-width: 300px;
}

.info-panel h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #0d5c0d;
}

.contact-details {
    margin-top: 30px;
}

.info-entry {
    margin-bottom: 25px;
}

.info-entry h3 {
    color: #0d5c0d;
    margin-bottom: 8px;
}

.feedback-form {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.feedback-form h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #0d5c0d;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Merriweather', serif;
    font-size: 1rem;
}

.input-group textarea {
    resize: vertical;
}

.send-btn {
    background-color: #0d5c0d;
    color: white;
    padding: 14px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.send-btn:hover {
    background-color: #0a4a0a;
    transform: translateY(-2px);
}

/* Policy Sections */
.legal-area {
    padding: 50px 0;
}

.legal-area h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #0d5c0d;
    font-family: 'Luckiest Guy', cursive;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.legal-text h2 {
    font-size: 1.8rem;
    margin: 30px 0 15px;
    color: #0d5c0d;
}

.legal-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.legal-text ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-text ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background-color: #0d5c0d;
    color: white;
}

/* Footer Styles */
footer {
    background-color: #0a3d0a;
    color: white;
    padding: 40px 0 20px;
}

.disclaimer {
    text-align: center;
    margin-bottom: 40px;
}

.maturity-alert {
    display: inline-flex;
    align-items: center;
    background: #d32f2f;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
}

.maturity-alert span {
    background: white;
    color: #d32f2f;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
}

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

.quick-nav,
.policy-nav,
.info-panel {
    flex: 1;
    min-width: 200px;
    margin-bottom: 20px;
}

.quick-nav h4,
.policy-nav h4,
.info-panel h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #FFD700;
}

.quick-nav ul,
.policy-nav ul {
    list-style: none;
}

.quick-nav ul li,
.policy-nav ul li {
    margin-bottom: 10px;
}

.quick-nav ul li a,
.policy-nav ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.quick-nav ul li a:hover,
.policy-nav ul li a:hover {
    color: #FFD700;
}

.info-panel p {
    color: #ccc;
}

.rights-note {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #aaa;
}

/* Partner Logos */
.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
    padding: 20px 0;
}

.partner-logos img {
    height: 40px;
    width: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #0d5c0d;
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease-in-out;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
        z-index: 99;
    }
    
    nav.active {
        transform: translateY(0);
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .banner h1 {
        font-size: 2.5rem;
    }
    
    .banner p {
        font-size: 1.1rem;
    }
    
    .display-card {
        flex-direction: column;
    }
    
    .display-card img {
        max-width: 100%;
    }
    
    .contact-layout {
        flex-direction: column;
    }
    
    .footer-grid {
        flex-direction: column;
    }
    
    .quick-nav,
    .policy-nav,
    .info-panel {
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .banner {
        padding: 60px 20px;
    }
    
    .banner h1 {
        font-size: 2rem;
    }
    
    .wrapper {
        padding: 0 15px;
    }
    
    header .wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .brand {
        margin-bottom: 15px;
    }
    
    .menu-toggle {
        position: absolute;
        top: 50px;
        right: 20px;
    }
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #0d5c0d;
    color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
    max-width: 400px;
}

.cookie-consent.show {
    display: block;
}

.cookie-content p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.cookie-content a {
    color: #FFD700;
    text-decoration: underline;
}

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

.accept-btn, .decline-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accept-btn {
    background-color: #FFD700;
    color: #0d5c0d;
}

.accept-btn:hover {
    background-color: #ffc400;
    transform: translateY(-2px);
}

.decline-btn {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.decline-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Responsive Design for Cookie Consent */
@media (max-width: 768px) {
    .cookie-consent {
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: 100%;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}
