@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

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

:root {
    --emerald: #10b981;
    --navy: #0f172a;
    --midnight: #020617;
    --silver: #e2e8f0;
    --gold: #eab308;
    --slate-dark: #1e293b;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--midnight);
    color: var(--silver);
    line-height: 1.75;
}

.header-bar {
    background: var(--navy);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--emerald);
}

.header-wrap {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0.9rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-block {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-block svg {
    width: 44px;
    height: 44px;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--emerald);
    letter-spacing: 1px;
}

.menu-toggle {
    display: none;
    background: var(--emerald);
    border: none;
    padding: 10px 12px;
    cursor: pointer;
    border-radius: 6px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--midnight);
    margin: 5px 0;
    transition: 0.3s;
}

.nav-bar {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-bar a {
    color: var(--silver);
    text-decoration: none;
    padding: 0.65rem 1.3rem;
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: 6px;
    transition: 0.25s;
}

.nav-bar a:hover {
    background: var(--emerald);
    color: var(--midnight);
}

.main-wrap {
    padding-top: 80px;
}

.hero-block {
    background: linear-gradient(180deg, var(--slate-dark) 0%, var(--midnight) 100%);
    padding: 4.5rem 2rem;
    text-align: center;
    position: relative;
}

.hero-block::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--emerald), var(--gold), var(--emerald));
}

.hero-block h1 {
    font-size: clamp(1.75rem, 4.5vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.hero-block h1 span {
    color: var(--emerald);
}

.hero-block .subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 750px;
    margin: 0 auto 2rem;
}

.info-tags {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.info-tag {
    background: var(--slate-dark);
    border: 2px solid var(--emerald);
    padding: 0.7rem 1.4rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
}

.game-zone {
    padding: 3rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.zone-label {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.game-holder {
    background: var(--slate-dark);
    border-radius: 16px;
    padding: 1.5rem;
    border: 2px solid rgba(16, 185, 129, 0.3);
}

.game-player {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
}

.game-player iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 3rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.highlight-box {
    background: var(--navy);
    padding: 2rem;
    border-radius: 12px;
    border-bottom: 4px solid var(--emerald);
}

.highlight-box h3 {
    color: var(--emerald);
    font-size: 1.15rem;
    margin-bottom: 0.85rem;
    font-weight: 700;
}

.highlight-box p {
    font-weight: 300;
}

.prose-block {
    background: var(--navy);
    margin: 2rem auto;
    padding: 2.5rem;
    border-radius: 16px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.prose-block h2 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.prose-block p {
    margin-bottom: 1rem;
    font-weight: 300;
}

.prose-block ul {
    margin: 1.25rem 0 1.25rem 1.5rem;
    font-weight: 300;
}

.prose-block li {
    margin-bottom: 0.6rem;
}

.subpage-header {
    background: var(--navy);
    padding: 3.5rem 2rem;
    text-align: center;
    border-bottom: 4px solid var(--emerald);
}

.subpage-header h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--emerald);
}

.bottom-bar {
    background: var(--slate-dark);
    padding: 2.5rem 2rem;
    text-align: center;
    margin-top: 3rem;
}

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

.bottom-nav a {
    color: var(--emerald);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.bottom-nav a:hover {
    text-decoration: underline;
}

.copyright-line {
    opacity: 0.5;
    font-size: 0.85rem;
    margin-bottom: 1.25rem;
}

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

.resource-links a {
    color: var(--silver);
    text-decoration: none;
    font-size: 0.8rem;
    opacity: 0.4;
}

.resource-links a:hover {
    opacity: 1;
}

.age-screen {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-screen.clear {
    display: none;
}

.age-dialog {
    background: var(--navy);
    border: 3px solid var(--emerald);
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 460px;
    text-align: center;
    margin: 1rem;
}

.age-dialog h2 {
    color: var(--emerald);
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.age-dialog p {
    margin-bottom: 1.75rem;
    font-weight: 300;
}

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

.choice-btn {
    padding: 0.9rem 2rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.25s;
}

.choice-yes {
    background: var(--emerald);
    color: var(--midnight);
}

.choice-yes:hover {
    background: var(--gold);
}

.choice-no {
    background: transparent;
    border: 2px solid var(--emerald);
    color: var(--emerald);
}

.choice-no:hover {
    background: var(--emerald);
    color: var(--midnight);
}

@media (max-width: 900px) {
    .highlights {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-bar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--navy);
        flex-direction: column;
        padding: 1rem;
        display: none;
        border-bottom: 3px solid var(--emerald);
    }
    
    .nav-bar.show {
        display: flex;
    }
    
    .nav-bar a {
        text-align: center;
        padding: 0.9rem;
    }
    
    .hero-block {
        padding: 3rem 1rem;
    }
    
    .info-tags {
        flex-direction: column;
        align-items: center;
    }
    
    .prose-block {
        margin: 2rem 1rem;
        padding: 1.75rem;
    }
    
    .age-dialog {
        padding: 2rem;
    }
    
    .age-choices {
        flex-direction: column;
    }
}
