@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0f1729;
    --midnight: #1a2744;
    --silver: #c0c0c0;
    --starlight: #7dd3fc;
    --offwhite: #e2e8f0;
    --steel: #475569;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: var(--navy);
    color: var(--offwhite);
    line-height: 1.75;
}

.orion-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 41, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--midnight);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.orion-logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--starlight);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.nav-btn {
    display: none;
    background: none;
    border: 1px solid var(--starlight);
    color: var(--starlight);
    padding: 0.4rem 0.8rem;
    font-size: 1.2rem;
    cursor: pointer;
}

.orion-nav {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.orion-nav a {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--offwhite);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.orion-nav a:hover {
    color: var(--starlight);
}

.page-body {
    padding-top: 70px;
}

.stellar-intro {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 5rem 2rem;
    background: 
        radial-gradient(circle at 20% 30%, rgba(125, 211, 252, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(125, 211, 252, 0.05) 0%, transparent 40%),
        var(--navy);
}

.stellar-intro h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--offwhite);
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 0.5rem;
}

.stellar-intro .sub-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    color: var(--starlight);
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 2rem;
}

.intro-copy {
    max-width: 700px;
    font-size: 1.1rem;
    color: var(--silver);
    margin-bottom: 3rem;
    font-weight: 300;
}

.star-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.star-badge {
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--starlight);
    border: 1px solid var(--starlight);
    padding: 0.8rem 1.5rem;
    background: rgba(125, 211, 252, 0.05);
}

.dark-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.dark-section.alt-bg {
    background: var(--midnight);
    max-width: none;
}

.dark-section.alt-bg .inner {
    max-width: 1400px;
    margin: 0 auto;
}

.section-head {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    color: var(--offwhite);
    margin-bottom: 3rem;
}

.section-head span {
    color: var(--starlight);
}

.game-viewport {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border: 2px solid var(--midnight);
    box-shadow: 0 0 40px rgba(125, 211, 252, 0.1);
    background: var(--navy);
}

.game-viewport iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.tri-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.info-block {
    background: var(--midnight);
    border-top: 3px solid var(--starlight);
    padding: 2.5rem;
}

.info-block-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-block h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--starlight);
    margin-bottom: 1rem;
}

.info-block p {
    color: var(--silver);
    font-weight: 300;
}

.text-box {
    background: var(--midnight);
    border-left: 4px solid var(--starlight);
    padding: 2.5rem;
    margin: 2rem 0;
}

.text-box h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--offwhite);
    margin-bottom: 1.5rem;
}

.text-box p {
    color: var(--silver);
    margin-bottom: 1rem;
    font-weight: 300;
}

.text-box ul {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--silver);
}

.text-box li {
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.orion-footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--midnight);
    padding: 3rem 2rem;
    text-align: center;
}

.foot-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.foot-links a {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--starlight);
    text-decoration: none;
    transition: color 0.3s;
}

.foot-links a:hover {
    color: var(--offwhite);
}

.foot-copy {
    color: var(--steel);
    font-size: 0.85rem;
}

.gate-screen {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 41, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.gate-panel {
    background: var(--midnight);
    border: 1px solid var(--starlight);
    padding: 3.5rem;
    text-align: center;
    max-width: 500px;
    margin: 1rem;
}

.gate-panel h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--starlight);
    margin-bottom: 1.5rem;
}

.gate-panel p {
    color: var(--silver);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.gate-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.gate-btn {
    font-family: 'Oswald', sans-serif;
    padding: 0.9rem 2.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.gate-btn.enter {
    background: var(--starlight);
    color: var(--navy);
    border: none;
}

.gate-btn.exit {
    background: transparent;
    border: 1px solid var(--silver);
    color: var(--silver);
}

.gate-btn:hover {
    transform: scale(1.05);
}

.is-hidden {
    display: none !important;
}

.page-banner {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, var(--midnight), var(--navy));
}

.page-banner h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--starlight);
}

.doc-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.doc-wrapper h2 {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--starlight);
    margin: 2.5rem 0 1rem;
    font-size: 1.3rem;
}

.doc-wrapper p {
    color: var(--silver);
    margin-bottom: 1rem;
    font-weight: 300;
    line-height: 1.9;
}

.play-tip {
    background: rgba(125, 211, 252, 0.1);
    border-left: 4px solid var(--starlight);
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.play-tip strong {
    color: var(--offwhite);
}

@media (max-width: 1024px) {
    .tri-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-btn {
        display: block;
    }

    .orion-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 23, 41, 0.98);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        display: none;
        border-bottom: 1px solid var(--midnight);
    }

    .orion-nav.open {
        display: flex;
    }

    .orion-nav li {
        padding: 1rem;
        border-bottom: 1px solid var(--midnight);
    }

    .stellar-intro h1 {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .stellar-intro .sub-title {
        font-size: 0.9rem;
        letter-spacing: 3px;
    }

    .star-badges {
        flex-direction: column;
        align-items: center;
    }

    .gate-actions {
        flex-direction: column;
    }

    .gate-btn {
        width: 100%;
    }
}
