* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lora', serif;
    background: linear-gradient(180deg, #1a2e1a 0%, #0f1f0f 100%);
    color: #e8f4e8;
    line-height: 1.7;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Age Overlay */
.age-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 31, 15, 0.98);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-overlay.active {
    display: flex;
}

.age-box {
    background: linear-gradient(135deg, #2d5f2d, #1a3a1a);
    padding: 50px 60px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 3px solid #4a9d4a;
    box-shadow: 0 10px 40px rgba(74, 157, 74, 0.4);
}

.age-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.age-box h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2em;
    color: #7ed97e;
    margin-bottom: 20px;
}

.age-box p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

.age-note {
    font-weight: 600;
    color: #a8d6a8;
}

.age-options {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.age-options button {
    font-family: 'Montserrat', sans-serif;
    padding: 15px 35px;
    font-size: 1.1em;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-yes {
    background: linear-gradient(135deg, #4a9d4a, #66cc66);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 157, 74, 0.4);
}

.btn-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(74, 157, 74, 0.6);
}

.btn-no {
    background: linear-gradient(135deg, #7a7a7a, #555);
    color: white;
}

/* Header */
.site-header {
    background: rgba(26, 46, 26, 0.95);
    border-bottom: 3px solid #4a9d4a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.leaf-icon {
    font-size: 2.5em;
}

.brand-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    font-weight: 800;
    color: #7ed97e;
    letter-spacing: 2px;
}

.brand-text p {
    font-size: 0.85em;
    color: #a8d6a8;
    font-style: italic;
}

.menu-button {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-line {
    width: 28px;
    height: 3px;
    background: #7ed97e;
    margin: 3px 0;
    transition: 0.3s;
}

.site-nav {
    display: flex;
    gap: 35px;
}

.site-nav a {
    font-family: 'Montserrat', sans-serif;
    color: #c8e6c8;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s;
}

.site-nav a:hover,
.site-nav a.active-link {
    background: rgba(74, 157, 74, 0.3);
    color: #7ed97e;
}

/* Main Container */
.main-container {
    flex: 1;
    padding: 40px 0;
}

/* Welcome Banner */
.welcome-banner {
    padding: 70px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(45, 95, 45, 0.4), rgba(26, 58, 26, 0.4));
    border-radius: 20px;
    margin-bottom: 60px;
}

.welcome-banner h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8em;
    color: #7ed97e;
    margin-bottom: 25px;
    font-weight: 700;
}

.banner-text {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Key Points */
.key-points {
    margin-bottom: 60px;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.point-card {
    padding: 40px;
    border-radius: 15px;
    border: 2px solid #4a9d4a;
    transition: all 0.3s;
}

.point-card.green {
    background: linear-gradient(135deg, rgba(74, 157, 74, 0.2), rgba(45, 95, 45, 0.2));
}

.point-card.blue {
    background: linear-gradient(135deg, rgba(74, 157, 157, 0.2), rgba(45, 95, 95, 0.2));
}

.point-card.orange {
    background: linear-gradient(135deg, rgba(157, 125, 74, 0.2), rgba(95, 75, 45, 0.2));
}

.point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 157, 74, 0.3);
}

.point-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.point-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6em;
    color: #7ed97e;
    margin-bottom: 15px;
}

/* Featured Game */
.featured-game {
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
    color: #7ed97e;
    text-align: center;
    margin-bottom: 20px;
}

.section-description {
    text-align: center;
    font-size: 1.15em;
    max-width: 800px;
    margin: 0 auto 40px;
}

.game-display {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #4a9d4a;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7);
    margin-bottom: 35px;
}

.game-display iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.highlight {
    background: rgba(74, 157, 74, 0.2);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid rgba(74, 157, 74, 0.4);
}

.highlight-icon {
    font-size: 2.5em;
    display: block;
    margin-bottom: 10px;
}

.highlight strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    color: #7ed97e;
    font-size: 1.1em;
    margin-bottom: 5px;
}

.highlight span {
    font-size: 0.95em;
    color: #c8e6c8;
}

/* About Haven */
.about-haven {
    margin-bottom: 60px;
}

.about-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-col {
    background: rgba(45, 95, 45, 0.3);
    padding: 35px;
    border-radius: 15px;
    border-left: 5px solid #4a9d4a;
}

.about-col h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
    color: #7ed97e;
    margin-bottom: 15px;
}

/* Philosophy Section */
.haven-philosophy {
    background: linear-gradient(135deg, rgba(45, 95, 45, 0.4), rgba(26, 58, 26, 0.4));
    padding: 60px 0;
    border-radius: 20px;
    margin-bottom: 60px;
}

.philosophy-layout {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.philosophy-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.3em;
    color: #7ed97e;
    margin-bottom: 25px;
}

.philosophy-text p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.philosophy-metrics {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.metric {
    background: rgba(26, 58, 26, 0.6);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #4a9d4a;
}

.metric-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5em;
    font-weight: 800;
    color: #7ed97e;
}

.metric-label {
    font-size: 1.1em;
    color: #a8d6a8;
    margin-top: 10px;
}

/* Play Page */
.play-intro {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(45, 95, 45, 0.4), rgba(26, 58, 26, 0.4));
    border-radius: 20px;
    margin-bottom: 40px;
}

.play-intro h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5em;
    color: #7ed97e;
    margin-bottom: 20px;
}

.play-intro p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

.gameplay-area {
    margin-bottom: 40px;
}

.game-info {
    padding: 60px 0;
}

.game-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2em;
    color: #7ed97e;
    text-align: center;
    margin-bottom: 40px;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 35px;
}

.info-card {
    background: rgba(45, 95, 45, 0.3);
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #4a9d4a;
}

.info-card strong {
    display: block;
    font-family: 'Montserrat', sans-serif;
    color: #7ed97e;
    font-size: 1.2em;
    margin-bottom: 12px;
}

.important-notice {
    background: rgba(157, 125, 74, 0.2);
    border: 3px solid #d4a574;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    font-size: 1.1em;
}

/* Legal Content */
.legal-content {
    padding: 60px 0;
}

.legal-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 3em;
    color: #7ed97e;
    margin-bottom: 10px;
}

.legal-date {
    color: #a8d6a8;
    font-style: italic;
    margin-bottom: 50px;
}

.terms-section {
    background: rgba(45, 95, 45, 0.2);
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 30px;
    border-left: 5px solid #4a9d4a;
}

.terms-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.7em;
    color: #7ed97e;
    margin-bottom: 18px;
}

.terms-section p,
.terms-section ul {
    margin-bottom: 15px;
}

.terms-section ul {
    padding-left: 35px;
}

.terms-section li {
    margin-bottom: 10px;
}

.terms-section.emphasis {
    border: 3px solid #4a9d4a;
    background: rgba(74, 157, 74, 0.2);
}

/* Footer */
.site-footer {
    background: linear-gradient(180deg, #1a3a1a, #0f1f0f);
    border-top: 3px solid #4a9d4a;
    padding: 60px 0 25px;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    color: #7ed97e;
    font-size: 1.4em;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #c8e6c8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #7ed97e;
}

.footer-legal {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(74, 157, 74, 0.3);
    color: #a8d6a8;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-button {
        display: flex;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(26, 46, 26, 0.98);
        flex-direction: column;
        padding: 20px;
        border-top: 3px solid #4a9d4a;
    }

    .site-nav.active {
        display: flex;
    }

    .site-nav a {
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid rgba(74, 157, 74, 0.3);
    }

    .brand-text h1 {
        font-size: 1.5em;
    }

    .welcome-banner h2 {
        font-size: 2em;
    }

    .banner-text {
        font-size: 1.05em;
    }

    .section-title {
        font-size: 1.9em;
    }

    .game-display iframe {
        height: 400px;
    }

    .philosophy-layout {
        grid-template-columns: 1fr;
    }

    .points-grid,
    .about-columns,
    .info-cards {
        grid-template-columns: 1fr;
    }

    .age-box {
        padding: 35px 25px;
        margin: 20px;
    }

    .age-options {
        flex-direction: column;
    }
}
