@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --forest-green: #2d5016;
    --leaf-green: #4a7c2e;
    --lime: #8bc34a;
    --earth-brown: #5d4037;
    --light-green: #aed581;
    --cream: #f1f8e9;
    --dark: #1b5e20;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2e 50%, #558b2f 100%);
    color: var(--cream);
    min-height: 100vh;
    line-height: 1.7;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 94, 32, 0.97);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-content {
    background: linear-gradient(135deg, var(--forest-green), var(--leaf-green));
    padding: 3.2rem;
    border-radius: 25px;
    text-align: center;
    max-width: 530px;
    border: 4px solid var(--lime);
    box-shadow: 0 0 60px rgba(139, 195, 74, 0.5);
}

.age-content h2 {
    color: var(--light-green);
    font-size: 2.7rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.age-content p {
    font-size: 1.12rem;
    margin-bottom: 2rem;
    line-height: 1.9;
}

.age-buttons {
    display: flex;
    gap: 1.8rem;
    justify-content: center;
}

.age-btn {
    padding: 1.15rem 3rem;
    font-size: 1.25rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 35px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-btn.yes {
    background: linear-gradient(135deg, var(--lime), var(--light-green));
    color: var(--dark);
}

.age-btn.yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 195, 74, 0.4);
}

.age-btn.no {
    background: #616161;
    color: white;
}

.age-btn.no:hover {
    background: #757575;
}

/* Header */
header {
    background: rgba(45, 80, 22, 0.95);
    padding: 1.7rem 2.5rem;
    border-bottom: 3px solid var(--lime);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.3rem;
}

.logo {
    width: 54px;
    height: 54px;
}

.site-title {
    font-size: 2.3rem;
    font-weight: 700;
    color: var(--light-green);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Desktop Navigation */
nav ul {
    display: flex;
    list-style: none;
    gap: 2.3rem;
}

nav a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.08rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--lime);
    transition: width 0.3s;
}

nav a:hover::before {
    width: 100%;
}

nav a:hover {
    color: var(--light-green);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 32px;
    height: 3px;
    background: var(--lime);
    border-radius: 3px;
    transition: all 0.3s;
}

/* Main Content */
main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3.5rem 2.5rem;
}

.hero {
    background: rgba(45, 80, 22, 0.7);
    padding: 3.8rem;
    border-radius: 22px;
    margin-bottom: 3rem;
    border: 3px solid var(--lime);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.4);
}

.hero h1 {
    font-size: 3.4rem;
    color: var(--light-green);
    margin-bottom: 1.8rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.18rem;
    line-height: 1.9;
    margin-bottom: 1.3rem;
}

.notice-box {
    background: rgba(139, 195, 74, 0.13);
    border: 3px solid var(--lime);
    padding: 2.9rem;
    margin: 2.9rem 0;
    border-radius: 20px;
}

.notice-box h3 {
    color: var(--light-green);
    font-size: 2rem;
    margin-bottom: 1.9rem;
    font-weight: 600;
}

.notice-box ul {
    list-style: none;
    padding-left: 0;
}

.notice-box li {
    margin: 1.15rem 0;
    font-size: 1.1rem;
    padding-left: 2.3rem;
    position: relative;
}

.notice-box li:before {
    content: "🌿";
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.game-container {
    margin: 3rem 0;
    background: rgba(45, 80, 22, 0.6);
    padding: 3.2rem;
    border-radius: 22px;
    border: 3px solid var(--lime);
    box-shadow: 0 12px 45px rgba(0, 0, 0, 0.4);
}

.game-container h2 {
    color: var(--light-green);
    font-size: 2.5rem;
    margin-bottom: 2.2rem;
    text-align: center;
    font-weight: 700;
}

.game-wrapper {
    width: 100%;
    max-width: 870px;
    margin: 0 auto;
    background: #1b1b1b;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: inset 0 0 25px rgba(0, 0, 0, 0.5);
}

.game-wrapper iframe {
    width: 100%;
    height: 640px;
    border: none;
    display: block;
}

.content-section {
    background: rgba(45, 80, 22, 0.5);
    padding: 3.2rem;
    margin: 2.7rem 0;
    border-radius: 20px;
    border-left: 6px solid var(--lime);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

.content-section h2 {
    color: var(--light-green);
    font-size: 2.3rem;
    margin-bottom: 1.9rem;
    font-weight: 700;
}

.content-section h3 {
    color: var(--lime);
    font-size: 1.75rem;
    margin: 2.3rem 0 1.3rem;
    font-weight: 600;
}

.content-section p {
    margin-bottom: 1.3rem;
    font-size: 1.08rem;
    line-height: 1.9;
}

.content-section ul, .content-section ol {
    margin: 1.3rem 0 1.6rem 2.4rem;
}

.content-section li {
    margin: 0.85rem 0;
    line-height: 1.8;
}

/* Footer */
footer {
    background: rgba(45, 80, 22, 0.95);
    border-top: 3px solid var(--lime);
    padding: 3.7rem 2.5rem;
    margin-top: 4.8rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h3 {
    color: var(--light-green);
    font-size: 2.1rem;
    margin-bottom: 2.2rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2.2rem;
    flex-wrap: wrap;
    margin-bottom: 2.2rem;
}

.footer-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
    padding: 0.85rem 1.9rem;
    border: 2px solid var(--lime);
    border-radius: 28px;
    font-weight: 500;
}

.footer-links a:hover {
    background: var(--lime);
    color: var(--dark);
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(139, 195, 74, 0.3);
}

.footer-disclaimer {
    margin-top: 2.7rem;
    padding-top: 2.2rem;
    border-top: 2px solid rgba(139, 195, 74, 0.3);
    font-size: 0.97rem;
    opacity: 0.87;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(45, 80, 22, 0.98);
        padding: 2rem;
        border-top: 3px solid var(--lime);
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    nav a {
        display: block;
        padding: 1.3rem;
        border-bottom: 1px solid rgba(139, 195, 74, 0.2);
    }

    nav a::before {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.3rem;
    }
    
    .hero {
        padding: 2.7rem;
    }
    
    .site-title {
        font-size: 1.7rem;
    }
    
    .age-content {
        padding: 2.7rem;
        margin: 1rem;
    }
    
    .age-content h2 {
        font-size: 2.1rem;
    }
    
    .game-wrapper iframe {
        height: 490px;
    }

    header {
        padding: 1.5rem 2rem;
    }

    .content-section, .game-container, .notice-box {
        padding: 2.2rem;
    }
}
