@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
    --forest-dark: #1a3a1b;
    --forest-green: #2c5f2d;
    --thorn-bright: #76b947;
    --lime-accent: #97d700;
    --cream: #f4f1ea;
    --text-dark: #2a2a2a;
    --sidebar-width: 280px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
    display: flex;
}

.sidebar {
    width: var(--sidebar-width);
    background: var(--forest-dark);
    color: var(--cream);
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    box-shadow: 3px 0 15px rgba(0, 0, 0, 0.2);
}

.sidebar-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--lime-accent);
    text-decoration: none;
    padding: 0 2rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-logo::before {
    content: '🌿';
    font-size: 2rem;
}

.sidebar nav {
    flex: 1;
}

.sidebar nav ul {
    list-style: none;
}

.sidebar nav a {
    display: block;
    color: var(--cream);
    text-decoration: none;
    padding: 1rem 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.sidebar nav a:hover,
.sidebar nav a.active {
    background: rgba(118, 185, 71, 0.2);
    border-left-color: var(--lime-accent);
    color: var(--lime-accent);
}

.sidebar-footer {
    padding: 0 2rem;
    font-size: 0.85rem;
    opacity: 0.7;
}

.menu-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 10001;
    background: var(--forest-dark);
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--lime-accent);
    margin: 5px 0;
    transition: all 0.3s;
}

.main-content {
    margin-left: var(--sidebar-width);
    flex: 1;
    min-height: 100vh;
}

.hero-banner {
    background: linear-gradient(135deg, var(--forest-dark) 0%, var(--forest-green) 100%);
    color: var(--cream);
    padding: 4rem 3rem;
    text-align: center;
}

.hero-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--lime-accent);
}

.hero-banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.warning-boxes {
    display: flex;
    gap: 2rem;
    max-width: 1100px;
    margin: -2rem auto 3rem;
    padding: 0 3rem;
    position: relative;
    z-index: 10;
}

.warning-box {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--thorn-bright);
}

.warning-box h3 {
    font-family: 'Playfair Display', serif;
    color: var(--forest-dark);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.game-display {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 3rem;
}

.game-frame {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.game-frame h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--forest-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.game-frame iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
    background: #000;
}

.content-area {
    max-width: 1100px;
    margin: 3rem auto;
    padding: 0 3rem;
}

.content-area h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--forest-dark);
    margin-bottom: 1.5rem;
}

.content-area p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.feature-item {
    background: white;
    padding: 1.8rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--thorn-bright);
}

.feature-item h3 {
    font-family: 'Playfair Display', serif;
    color: var(--forest-green);
    margin-bottom: 0.8rem;
}

.site-footer {
    background: var(--forest-dark);
    color: var(--cream);
    padding: 3rem;
    margin-top: 4rem;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--lime-accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--thorn-bright);
}

.age-verify-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 58, 27, 0.95);
    z-index: 100000;
    justify-content: center;
    align-items: center;
}

.age-verify-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.age-verify-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--forest-dark);
    margin-bottom: 1.5rem;
}

.age-verify-content p {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.age-verify-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-verify-buttons button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.btn-accept {
    background: var(--forest-green);
    color: white;
}

.btn-accept:hover {
    background: var(--forest-dark);
}

.btn-decline {
    background: #888;
    color: white;
}

.btn-decline:hover {
    background: #666;
}

@media (max-width: 968px) {
    body {
        display: block;
    }

    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .sidebar.open {
        transform: translateX(0);
    }

    .menu-toggle {
        display: block;
    }

    .main-content {
        margin-left: 0;
    }

    .hero-banner h1 {
        font-size: 2.2rem;
    }

    .warning-boxes {
        flex-direction: column;
    }

    .feature-list {
        grid-template-columns: 1fr;
    }

    .game-frame iframe {
        height: 500px;
    }
}
