* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --forest-green: #2d5016;
    --leaf-green: #4a7c2f;
    --earth-brown: #8b6f47;
    --light-brown: #a68a64;
    --cream: #f4f1e8;
    --dark-bg: #1a1a1a;
    --text-dark: #2c2c2c;
    --amber: #d4a574;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #f4f1e8 0%, #e8dcc8 100%);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

/* Age Gate */
.age-gate-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 80, 22, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate-overlay.show {
    display: flex;
}

.age-gate-content {
    background: var(--cream);
    padding: 60px 50px;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    width: 90%;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.age-gate-icon {
    font-size: 90px;
    margin-bottom: 25px;
}

.age-gate-content h1 {
    color: var(--forest-green);
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
}

.age-gate-message {
    color: var(--earth-brown);
    font-size: 18px;
    margin-bottom: 25px;
}

.age-gate-content h2 {
    color: var(--text-dark);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 35px;
}

.age-gate-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-gate-btn {
    padding: 18px 40px;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.age-gate-btn.confirm {
    background: var(--forest-green);
    color: white;
}

.age-gate-btn.confirm:hover {
    background: var(--leaf-green);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(45, 80, 22, 0.3);
}

.age-gate-btn.deny {
    background: #d0c4b0;
    color: var(--text-dark);
}

.age-gate-btn.deny:hover {
    background: #bfb3a0;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 85px;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-badge {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--forest-green), var(--leaf-green));
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
}

.site-logo {
    font-size: 32px;
    font-weight: 800;
    color: var(--forest-green);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-link:hover {
    background: var(--cream);
    color: var(--leaf-green);
}

.nav-link.active {
    background: var(--forest-green);
    color: white;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger-menu span {
    width: 32px;
    height: 3px;
    background: var(--forest-green);
    transition: 0.3s;
}

/* Main Wrapper */
.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 60px;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--forest-green) 0%, var(--leaf-green) 100%);
    color: white;
    padding: 90px 40px;
    border-radius: 25px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(45, 80, 22, 0.3);
}

.hero-heading {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 24px;
    opacity: 0.95;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--earth-brown) 0%, var(--light-brown) 100%);
    color: white;
    padding: 70px 40px;
    border-radius: 25px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(139, 111, 71, 0.3);
}

.page-title {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-tagline {
    font-size: 22px;
    opacity: 0.95;
}

/* Info Section */
.info-section {
    margin: 60px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.info-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-top: 6px solid;
}

.info-card.green-card {
    border-color: var(--forest-green);
}

.info-card.brown-card {
    border-color: var(--earth-brown);
}

.info-card.amber-card {
    border-color: var(--amber);
}

.card-icon {
    font-size: 52px;
    margin-bottom: 25px;
}

.card-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 18px;
}

.card-text {
    color: #555;
    line-height: 1.9;
    font-size: 16px;
}

/* About Section */
.about-section {
    background: white;
    padding: 60px 50px;
    border-radius: 20px;
    margin: 60px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.section-heading {
    font-size: 40px;
    font-weight: 800;
    color: var(--forest-green);
    margin-bottom: 35px;
}

.section-heading.centered {
    text-align: center;
}

.about-paragraph {
    color: #555;
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 17px;
}

/* Game Section */
.game-section {
    background: white;
    padding: 60px 50px;
    border-radius: 20px;
    margin: 60px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.game-intro {
    color: #666;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.game-window {
    width: 100%;
    height: 650px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 25px;
}

.game-window iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.game-notice {
    color: #666;
    font-size: 15px;
    font-style: italic;
}

/* Benefits Section */
.benefits-section {
    margin: 60px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(45, 80, 22, 0.2);
}

.benefit-icon {
    font-size: 56px;
    margin-bottom: 22px;
}

.benefit-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 15px;
}

.benefit-item p {
    color: #666;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--amber) 0%, var(--light-brown) 100%);
    padding: 70px 40px;
    border-radius: 25px;
    margin: 60px 0;
    box-shadow: 0 10px 40px rgba(212, 165, 116, 0.3);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.stat-block {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 62px;
    font-weight: 800;
    margin-bottom: 12px;
}

.stat-text {
    font-size: 19px;
    font-weight: 600;
    opacity: 0.95;
}

/* Instruction Section */
.instruction-section {
    margin: 60px 0;
}

.instruction-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.instruction-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.instruction-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 20px;
}

.instruction-card p {
    color: #666;
    line-height: 1.8;
}

/* Advice Section */
.advice-section {
    background: white;
    padding: 60px 50px;
    border-radius: 20px;
    margin: 60px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.advice-list {
    list-style: none;
    padding: 0;
}

.advice-list li {
    padding: 18px 0 18px 50px;
    position: relative;
    color: #555;
    line-height: 1.8;
    border-bottom: 1px solid #e8e8e8;
    font-size: 16px;
}

.advice-list li:last-child {
    border-bottom: none;
}

.advice-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--leaf-green);
    font-weight: bold;
    font-size: 28px;
}

/* Legal Section */
.legal-section {
    margin: 60px 0;
}

.legal-content {
    background: white;
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
    color: var(--forest-green);
    font-size: 30px;
    font-weight: 700;
    margin: 40px 0 22px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p, .legal-content ul {
    color: #555;
    line-height: 1.9;
    margin-bottom: 22px;
    font-size: 16px;
}

.legal-content ul {
    margin-left: 35px;
}

.legal-content li {
    margin-bottom: 14px;
}

.legal-content a {
    color: var(--leaf-green);
    font-weight: 600;
}

.effective-text {
    margin-top: 50px;
    font-style: italic;
    color: #999;
    font-size: 15px;
}

/* Notice Boxes */
.warning-notice, .info-notice, .success-notice, .neutral-notice, .primary-notice, .secondary-notice {
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 35px;
    border-left: 6px solid;
}

.warning-notice {
    background: #fef3c7;
    border-color: #d97706;
}

.info-notice {
    background: #dbeafe;
    border-color: #2563eb;
}

.success-notice {
    background: #d1fae5;
    border-color: var(--leaf-green);
}

.neutral-notice {
    background: #f3f4f6;
    border-color: #6b7280;
}

.primary-notice {
    background: #e8f4e8;
    border-color: var(--forest-green);
}

.secondary-notice {
    background: #fef3e8;
    border-color: var(--earth-brown);
}

.warning-notice h2, .info-notice h2, .success-notice h2, .neutral-notice h2, .primary-notice h2, .secondary-notice h2 {
    margin-top: 0 !important;
}

.final-notice {
    background: linear-gradient(135deg, var(--forest-green), var(--leaf-green));
    color: white;
    padding: 35px;
    border-radius: 15px;
    margin: 45px 0;
}

.final-notice strong {
    font-weight: 800;
}

/* Footer */
.site-footer {
    background: var(--dark-bg);
    color: white;
    padding: 70px 30px 35px;
    text-align: center;
    margin-top: 80px;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
}

.footer-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--amber);
    margin-bottom: 25px;
}

.footer-description {
    line-height: 1.8;
    margin-bottom: 35px;
    opacity: 0.9;
    font-size: 16px;
}

.footer-resources {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--amber);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--light-brown);
}

.separator {
    opacity: 0.5;
}

.footer-copyright {
    opacity: 0.6;
    font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 85px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        padding: 25px;
    }

    .nav-links.active {
        display: flex;
    }

    .burger-menu {
        display: flex;
    }

    .hero-heading {
        font-size: 42px;
    }

    .page-title {
        font-size: 36px;
    }

    .section-heading {
        font-size: 32px;
    }

    .about-section, .game-section, .advice-section, .legal-content {
        padding: 40px 25px;
    }

    .game-window {
        height: 450px;
    }

    .info-grid, .benefits-grid, .instruction-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        flex-direction: column;
        gap: 35px;
    }
}
