@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Merriweather:wght@400;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --emerald: #10b981;
    --emerald-dark: #059669;
    --dark-forest: #0c1f17;
    --card-dark: #132a1f;
    --mint: #a7f3d0;
    --off-white: #f9fafb;
    --gray: #6b7280;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-forest);
    color: var(--off-white);
    line-height: 1.65;
}

h1, h2, h3 {
    font-family: 'Merriweather', serif;
}

/* Top Bar */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: rgba(12, 31, 23, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(16, 185, 129, 0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 30px;
}

.topbar-content {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-svg {
    width: 38px;
    height: 38px;
}

.logo-name {
    font-family: 'Merriweather', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--emerald);
}

.desktop-nav {
    display: flex;
    gap: 30px;
    list-style: none;
}

.desktop-nav a {
    color: var(--off-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}

.desktop-nav a:hover {
    color: var(--emerald);
}

.burger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
}

.burger-btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--emerald);
    border-radius: 2px;
    transition: 0.3s;
}

.burger-btn span:nth-child(1) { top: 0; }
.burger-btn span:nth-child(2) { top: 10px; }
.burger-btn span:nth-child(3) { top: 20px; }

/* Main Layout */
.main-wrapper {
    padding-top: 70px;
}

/* Banner Section */
.banner-section {
    background: linear-gradient(135deg, var(--dark-forest) 0%, var(--card-dark) 100%);
    padding: 80px 30px;
    text-align: center;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.banner-section h1 {
    font-size: 2.8rem;
    color: var(--off-white);
    margin-bottom: 20px;
}

.banner-section h1 em {
    font-style: normal;
    color: var(--emerald);
}

.banner-section p {
    max-width: 600px;
    margin: 0 auto 35px;
    color: var(--gray);
    font-size: 1.1rem;
}

.alert-chips {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.chip {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid var(--emerald);
    color: var(--mint);
    padding: 10px 22px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px;
}

.main-col h2 {
    color: var(--emerald);
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.game-box {
    background: var(--card-dark);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.game-box iframe {
    width: 100%;
    height: 550px;
    border: none;
    display: block;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: var(--card-dark);
    padding: 25px;
    border-radius: 14px;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.sidebar-card h3 {
    color: var(--emerald);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.sidebar-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

.sidebar-card ul {
    color: var(--gray);
    font-size: 0.9rem;
    padding-left: 18px;
}

.sidebar-card li {
    margin-bottom: 6px;
}

/* Content Sections */
.content-band {
    padding: 70px 30px;
    background: var(--card-dark);
}

.content-band:nth-child(even) {
    background: var(--dark-forest);
}

.content-inner {
    max-width: 900px;
    margin: 0 auto;
}

.content-inner h2 {
    color: var(--emerald);
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.content-inner p {
    color: var(--gray);
    margin-bottom: 15px;
    text-align: center;
}

/* Footer */
.site-foot {
    background: #081510;
    padding: 45px 30px;
    text-align: center;
    border-top: 1px solid rgba(16, 185, 129, 0.1);
}

.foot-links h4 {
    color: var(--emerald);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.foot-links a {
    color: var(--gray);
    text-decoration: none;
    margin: 0 12px;
    font-size: 0.9rem;
    transition: 0.2s;
}

.foot-links a:hover {
    color: var(--emerald);
}

.copyright-line {
    color: var(--gray);
    font-size: 0.8rem;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(16, 185, 129, 0.08);
}

/* Age Check Modal */
.age-check {
    position: fixed;
    inset: 0;
    background: rgba(12, 31, 23, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-check.closed {
    display: none;
}

.age-panel {
    background: var(--card-dark);
    padding: 45px;
    border-radius: 16px;
    text-align: center;
    max-width: 420px;
    border: 2px solid var(--emerald);
}

.age-panel h2 {
    color: var(--emerald);
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.age-panel p {
    color: var(--gray);
    margin-bottom: 25px;
}

.age-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-accept, .btn-decline {
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: 0.2s;
}

.btn-accept {
    background: var(--emerald);
    color: var(--dark-forest);
}

.btn-decline {
    background: rgba(107, 114, 128, 0.3);
    color: var(--off-white);
}

.btn-accept:hover, .btn-decline:hover {
    transform: scale(1.03);
}

/* Page Styles */
.page-title-bar {
    padding: 130px 30px 50px;
    text-align: center;
    background: var(--card-dark);
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.page-title-bar h1 {
    color: var(--off-white);
    font-size: 2.3rem;
}

.page-body {
    max-width: 850px;
    margin: 0 auto;
    padding: 50px 30px;
}

.page-body h2 {
    color: var(--emerald);
    font-size: 1.4rem;
    margin: 35px 0 15px;
}

.page-body p {
    color: var(--gray);
    margin-bottom: 15px;
}

.page-body ul {
    color: var(--gray);
    padding-left: 22px;
    margin-bottom: 15px;
}

.page-body li {
    margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 992px) {
    .two-col {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .sidebar-card {
        flex: 1;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
    .burger-btn {
        display: block;
    }
    
    .desktop-nav {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--dark-forest);
        flex-direction: column;
        padding: 20px 30px;
        gap: 12px;
        display: none;
        border-bottom: 1px solid rgba(16, 185, 129, 0.15);
    }
    
    .desktop-nav.show {
        display: flex;
    }
    
    .banner-section h1 {
        font-size: 2rem;
    }
    
    .alert-chips {
        flex-direction: column;
        align-items: center;
    }
    
    .game-box iframe {
        height: 380px;
    }
    
    .sidebar {
        flex-direction: column;
    }
    
    .age-panel {
        margin: 20px;
        padding: 30px;
    }
}
