* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(to bottom, #052e16 0%, #064e3b 50%, #052e16 100%);
    color: #d1fae5;
    line-height: 1.7;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-family: 'Merriweather', serif;
}

.content-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 25px;
}

.content-container.narrow {
    max-width: 980px;
}

/* Age Gate */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-gate.hidden {
    display: none;
}

.age-gate-box {
    background: linear-gradient(135deg, #064e3b 0%, #047857 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 550px;
    border: 4px solid #fbbf24;
    box-shadow: 0 0 50px rgba(251, 191, 36, 0.3);
}

.age-gate-symbol {
    font-size: 70px;
    margin-bottom: 20px;
}

.age-gate-box h2 {
    font-size: 40px;
    color: #fbbf24;
    margin-bottom: 20px;
}

.age-gate-box p {
    font-size: 19px;
    margin-bottom: 15px;
    color: #d1fae5;
}

.age-gate-prompt {
    font-weight: 700 !important;
    font-size: 21px !important;
    margin-top: 25px !important;
    margin-bottom: 30px !important;
}

.age-gate-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-gate-buttons button {
    padding: 18px 45px;
    font-size: 19px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
}

.btn-yes {
    background: #fbbf24;
    color: #052e16;
}

.btn-yes:hover {
    background: #f59e0b;
    transform: scale(1.05);
}

.btn-no {
    background: #991b1b;
    color: white;
}

.btn-no:hover {
    background: #7f1d1d;
}

/* Header */
.site-header {
    background: rgba(6, 78, 59, 0.95);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid #fbbf24;
    backdrop-filter: blur(12px);
}

.header-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-branding a {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.site-name {
    font-family: 'Merriweather', serif;
    font-size: 32px;
    font-weight: 900;
    color: #fbbf24;
    letter-spacing: 1px;
}

.mobile-nav-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-line {
    width: 30px;
    height: 4px;
    background: #fbbf24;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.site-navigation {
    display: flex;
    gap: 35px;
    align-items: center;
}

.site-navigation a {
    color: #d1fae5;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.site-navigation a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #fbbf24;
    transition: width 0.3s ease;
}

.site-navigation a:hover {
    color: #fbbf24;
}

.site-navigation a:hover::before {
    width: 100%;
}

/* Hero Section */
.hero-section {
    padding: 90px 0 70px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(4, 120, 87, 0.2) 0%, transparent 100%);
}

.hero-container h1 {
    font-size: 62px;
    font-weight: 900;
    margin-bottom: 25px;
    color: #fbbf24;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 22px;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    color: #a7f3d0;
}

/* Highlights Section */
.highlights-section {
    padding: 60px 0;
}

.highlights-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.highlight-card {
    padding: 35px;
    border-radius: 15px;
    border: 3px solid;
    transition: all 0.3s ease;
}

.highlight-card.gold {
    background: rgba(251, 191, 36, 0.1);
    border-color: #fbbf24;
}

.highlight-card.green {
    background: rgba(4, 120, 87, 0.1);
    border-color: #047857;
}

.highlight-card.emerald {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.highlight-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.highlight-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #fbbf24;
}

.highlight-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #d1fae5;
}

/* Game Showcase */
.game-showcase-section {
    padding: 70px 0;
    background: rgba(6, 78, 59, 0.3);
}

.showcase-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 45px;
}

.showcase-header h2 {
    font-size: 48px;
    color: #fbbf24;
    margin-bottom: 20px;
}

.showcase-header p {
    font-size: 19px;
    line-height: 1.8;
    color: #d1fae5;
}

.game-wrapper {
    max-width: 1250px;
    margin: 0 auto 30px;
    aspect-ratio: 16 / 9;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    border: 4px solid #047857;
}

.game-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.game-guidance {
    max-width: 850px;
    margin: 0 auto;
    background: rgba(4, 120, 87, 0.2);
    padding: 22px;
    border-radius: 12px;
    border: 2px solid #047857;
    text-align: center;
}

.game-guidance p {
    font-size: 17px;
    color: #d1fae5;
}

/* Benefits Section */
.benefits-section {
    padding: 70px 0;
}

.section-heading {
    font-size: 48px;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.benefit-item {
    background: rgba(6, 78, 59, 0.4);
    padding: 35px;
    border-radius: 15px;
    border: 2px solid #065f46;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: #fbbf24;
    transform: translateY(-5px);
}

.benefit-number {
    font-family: 'Merriweather', serif;
    font-size: 56px;
    font-weight: 900;
    color: #fbbf24;
    opacity: 0.4;
    margin-bottom: 15px;
}

.benefit-item h3 {
    font-size: 24px;
    color: #fbbf24;
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #d1fae5;
}

/* Philosophy Section */
.philosophy-section {
    padding: 70px 0;
    background: rgba(6, 78, 59, 0.3);
}

.philosophy-section h2 {
    font-size: 44px;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 40px;
}

.philosophy-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #d1fae5;
    margin-bottom: 25px;
}

/* Play Page */
.play-main {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.play-intro {
    text-align: center;
    margin-bottom: 40px;
}

.play-intro h1 {
    font-size: 54px;
    color: #fbbf24;
    margin-bottom: 20px;
}

.play-lead {
    font-size: 20px;
    max-width: 850px;
    margin: 0 auto;
    color: #d1fae5;
    line-height: 1.8;
}

.play-details {
    max-width: 1000px;
    margin: 0 auto 45px;
    background: rgba(6, 78, 59, 0.4);
    padding: 35px;
    border-radius: 15px;
    border: 2px solid #047857;
}

.play-details h3 {
    font-size: 26px;
    color: #fbbf24;
    margin-bottom: 25px;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 25px;
}

.detail-point {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.detail-icon {
    font-size: 40px;
}

.detail-point p {
    font-size: 16px;
    color: #d1fae5;
}

.compatibility-note {
    font-size: 15px;
    color: #a7f3d0;
    text-align: center;
}

/* Legal Pages */
.legal-page {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.legal-page h1 {
    font-size: 52px;
    color: #fbbf24;
    margin-bottom: 12px;
}

.date-stamp {
    font-size: 15px;
    color: #6ee7b7;
    font-style: italic;
    margin-bottom: 45px;
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section h2 {
    font-size: 28px;
    color: #fbbf24;
    margin-bottom: 18px;
}

.terms-section p {
    font-size: 17px;
    line-height: 1.9;
    color: #d1fae5;
    margin-bottom: 18px;
}

.alert-box {
    padding: 32px;
    border-radius: 15px;
    border: 4px solid;
    margin: 40px 0;
}

.alert-box.green {
    background: rgba(4, 120, 87, 0.2);
    border-color: #047857;
}

.alert-box.gold {
    background: rgba(251, 191, 36, 0.15);
    border-color: #fbbf24;
}

.alert-box.emerald {
    background: rgba(16, 185, 129, 0.15);
    border-color: #10b981;
}

.alert-box h2 {
    margin-top: 0;
    font-size: 30px;
}

/* Footer */
.site-footer {
    background: rgba(6, 78, 59, 0.95);
    padding: 60px 0 25px;
    border-top: 3px solid #fbbf24;
    margin-top: 70px;
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 25px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 45px;
}

.footer-col h4 {
    font-size: 24px;
    color: #fbbf24;
    margin-bottom: 18px;
}

.footer-col p {
    font-size: 16px;
    color: #d1fae5;
    margin-bottom: 18px;
    line-height: 1.7;
}

.resource-links,
.footer-menu {
    list-style: none;
}

.resource-links li,
.footer-menu li {
    margin-bottom: 10px;
}

.resource-links a,
.footer-menu a {
    color: #a7f3d0;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.resource-links a:hover,
.footer-menu a:hover {
    color: #fbbf24;
}

.footer-base {
    text-align: center;
    padding-top: 25px;
    border-top: 2px solid #065f46;
    color: #6ee7b7;
    font-size: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-nav-btn {
        display: flex;
        z-index: 1001;
    }

    .site-navigation {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: rgba(6, 78, 59, 0.98);
        flex-direction: column;
        padding: 85px 30px 30px;
        transition: right 0.3s ease;
        border-left: 3px solid #fbbf24;
        align-items: flex-start;
    }

    .site-navigation.active {
        right: 0;
    }

    .site-navigation a {
        font-size: 22px;
        padding: 18px 0;
        width: 100%;
        border-bottom: 1px solid #065f46;
    }

    .hero-container h1 {
        font-size: 42px;
    }

    .hero-description {
        font-size: 18px;
    }

    .highlights-wrapper {
        grid-template-columns: 1fr;
    }

    .showcase-header h2,
    .section-heading {
        font-size: 36px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .play-intro h1 {
        font-size: 40px;
    }

    .details-grid {
        grid-template-columns: 1fr 1fr;
    }

    .legal-page h1 {
        font-size: 38px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
    }
}
