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

body {
    font-family: 'Chango', cursive;
    background-color: #0a2e0a;
    color: #e0f0d9;
    line-height: 1.6;
}

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

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

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

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

.logo h1 {
    color: #ffd700;
    font-size: 1.4rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    margin: 0;
}

.logo-icon {
    height: 40px;
    width: auto;
}

.nav ul {
    display: flex;
    list-style: none;
}

.nav ul li {
    margin-left: 30px;
}

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

.nav ul li a:hover {
    color: #ffd700;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('images/jungle-bg.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-content h1 {
    font-size: 3.5rem;
    color: #ffd700;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.arrow-down {
    display: inline-block;
    color: #ffd700;
    font-size: 3rem;
    text-decoration: none;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #0d3b0d;
}

.about h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 50px;
    color: #ffd700;
}

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

.feature {
    background-color: rgba(13, 59, 13, 0.7);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid #2e8b57;
}

.feature:hover {
    transform: translateY(-10px);
    background-color: rgba(46, 139, 87, 0.3);
}

.feature h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

/* Game Description Section */
.game-description {
    padding: 80px 0;
    background: linear-gradient(to bottom, #0a2e0a, #0d3b0d);
}

.game-description h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffd700;
}

.game-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.game-text {
    flex: 1;
}

.game-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.game-image {
    flex: 1;
    text-align: center;
}

.game-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 3px solid #2e8b57;
}

/* Policy Section Styles */
.policy-section {
    padding: 80px 0;
    background-color: #0d3b0d;
}

.policy-section h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ffd700;
    position: relative;
    padding-bottom: 15px;
}

.policy-section h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, #2e8b57, transparent);
}

.policy-section h2 {
    color: #ffd700;
    margin: 30px 0 15px;
    padding-top: 20px;
    font-size: 1.8rem;
    position: relative;
}

.policy-section h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
}

.policy-section h3 {
    color: #a0c090;
    margin: 20px 0 10px;
    font-size: 1.4rem;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: rgba(13, 59, 13, 0.7);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid #2e8b57;
}

.policy-content p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.policy-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.policy-content li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.policy-content li::before {
    content: '🍀';
    position: absolute;
    left: 0;
    color: #ffd700;
}

.policy-content strong {
    color: #ffd700;
}

.btn {
    display: inline-block;
    background: linear-gradient(to right, #2e8b57, #3cb371);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.btn:hover {
    background: linear-gradient(to right, #3cb371, #2e8b57);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #0d3b0d;
    border-top: 2px solid #2e8b57;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #ffd700;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: rgba(13, 59, 13, 0.7);
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    border-left: 5px solid #2e8b57;
}

.faq-item h3 {
    color: #ffd700;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

/* Footer */
.footer {
    background-color: #061a06;
    padding: 50px 0 20px;
    text-align: center;
}

.disclaimer {
    margin-bottom: 30px;
}

.disclaimer p {
    display: inline-block;
    background-color: #ff0000;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.disclaimer-text {
    margin-top: 20px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-text p {
    display: block;
    background-color: transparent;
    color: #e0f0d9;
    padding: 0;
    border-radius: 0;
    font-weight: normal;
    font-size: 0.9rem;
    animation: none;
    margin-bottom: 15px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.partner-logos img {
    height: 40px;
    filter: grayscale(100%);
    transition: filter 0.3s;
    margin: 0 15px;
}

.partner-logos img:hover {
    filter: grayscale(0%);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-column h4 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #e0f0d9;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ffd700;
}

.copyright {
    border-top: 1px solid #2e8b57;
    padding-top: 20px;
    color: #a0c090;
}

/* Game Page */
.game-container {
    padding: 50px 0;
    text-align: center;
}

.game-frame {
    width: 90%;
    height: 70vh;
    max-width: 1000px;
    margin: 0 auto;
    border: 3px solid #2e8b57;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Contact Page */
.contact-form {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background-color: rgba(13, 59, 13, 0.7);
    border-radius: 10px;
}

.contact-form h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #ffd700;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #2e8b57;
    border-radius: 5px;
    background-color: rgba(224, 240, 217, 0.1);
    color: #e0f0d9;
    font-family: 'Chango', cursive;
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #0d3b0d;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 2px solid #2e8b57;
}

.modal-content h3 {
    color: #ffd700;
    margin-bottom: 20px;
}

.modal-content p {
    margin-bottom: 20px;
}

.close-modal {
    background-color: #2e8b57;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.close-modal:hover {
    background-color: #3cb371;
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: #0d3b0d;
    border: 2px solid #2e8b57;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
}

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

.cookie-content p {
    margin: 0;
    color: #e0f0d9;
    line-height: 1.5;
}

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

.cookie-content a:hover {
    color: #fff;
}

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

.btn-secondary {
    background: transparent;
    color: #e0f0d9;
    border: 1px solid #2e8b57;
}

.btn-secondary:hover {
    background-color: rgba(46, 139, 87, 0.3);
}

/* Burger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #ffd700;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .game-content {
        flex-direction: column;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
    
    .partner-logos {
        flex-direction: column;
        align-items: center;
    }
    
    
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #0d3b0d;
        transition: right 0.3s ease-in-out;
        z-index: 100;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
    }
    
    .nav.show {
        right: 0;
    }
    
    .nav ul {
        flex-direction: column;
        padding: 100px 20px 20px;
        height: 100%;
    }
    
    .nav ul li {
        margin: 15px 0;
        text-align: center;
    }
    
    .nav ul li a {
        font-size: 1.3rem;
        padding: 10px;
        display: block;
    }
    
    /* Hamburger Animation */
    .menu-toggle span:nth-child(1) {
        transform-origin: 0 0;
    }
    
    .menu-toggle span:nth-child(3) {
        transform-origin: 0 100%;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(0px, 0px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scale(0);
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(-0px, 0px);
    }
}