* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #111827 0%, #1f2937 50%, #374151 100%);
    color: #e5e7eb;
    line-height: 1.7;
    min-height: 100vh;
}

.wrapper {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.75rem;
}

/* Access Check */
.access-check {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(12px);
}

.access-check.hidden {
    display: none;
}

.check-container {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    padding: 3rem 2.75rem;
    border-radius: 16px;
    text-align: center;
    max-width: 520px;
    border: 2px solid #06b6d4;
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.3);
}

.check-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: flicker 1.5s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.check-container h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: #06b6d4;
    font-size: 2rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.check-container p {
    color: #d1d5db;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.check-disclaimer {
    font-size: 0.9rem;
    color: #9ca3af;
    font-style: italic;
}

.check-controls {
    display: flex;
    gap: 1.25rem;
    margin-top: 2.25rem;
    justify-content: center;
}

.check-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Space Grotesk', sans-serif;
}

.check-btn.affirm {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: #111827;
}

.check-btn.affirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.5);
}

.check-btn.decline {
    background: transparent;
    color: #9ca3af;
    border: 2px solid #4b5563;
}

.check-btn.decline:hover {
    background: #374151;
    border-color: #6b7280;
}

/* Top Bar */
.top-bar {
    background: rgba(17, 24, 39, 0.95);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #06b6d4;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.bar-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: #06b6d4;
    letter-spacing: 1px;
}

.menu-icon {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon span {
    display: block;
    width: 28px;
    height: 3px;
    background: #06b6d4;
    transition: all 0.3s;
}

.menu-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-icon.active span:nth-child(2) {
    opacity: 0;
}

.menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.top-nav {
    display: flex;
    gap: 2.25rem;
}

.top-nav a {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 1.05rem;
}

.top-nav a:hover {
    color: #06b6d4;
}

/* Banner Section */
.banner-section {
    position: relative;
    padding: 6rem 1.75rem;
    text-align: center;
    overflow: hidden;
}

.banner-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
}

.grid-layer {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(6, 182, 212, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(6, 182, 212, 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
}

.banner-content {
    position: relative;
    z-index: 1;
}

.banner-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    color: #06b6d4;
    margin-bottom: 1.25rem;
    font-weight: 800;
    text-shadow: 0 0 30px rgba(6, 182, 212, 0.5);
}

.banner-lead {
    font-size: 1.5rem;
    color: #d1d5db;
    margin-bottom: 2.5rem;
}

.banner-tags {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: rgba(6, 182, 212, 0.15);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    border: 1px solid #06b6d4;
}

/* Overview */
.overview {
    padding: 4.5rem 1.75rem;
    background: rgba(31, 41, 55, 0.5);
}

.overview h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: #06b6d4;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.overview-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Key Facts */
.key-facts {
    padding: 4.5rem 1.75rem;
}

.key-facts h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: #06b6d4;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.25rem;
}

.fact-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8) 0%, rgba(55, 65, 81, 0.8) 100%);
    padding: 2.25rem;
    border-radius: 14px;
    border: 2px solid #06b6d4;
    text-align: center;
    transition: transform 0.3s;
}

.fact-card:hover {
    transform: translateY(-5px);
}

.fact-icon {
    font-size: 3.25rem;
    margin-bottom: 1.25rem;
}

.fact-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #06b6d4;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.fact-card p {
    line-height: 1.8;
}

/* Game Spotlight */
.game-spotlight {
    padding: 4.5rem 1.75rem;
    background: rgba(31, 41, 55, 0.5);
}

.game-spotlight h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: #06b6d4;
    text-align: center;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.spotlight-desc {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.game-container {
    max-width: 1100px;
    margin: 0 auto;
    background: #000;
    border-radius: 14px;
    overflow: hidden;
    border: 3px solid #06b6d4;
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.3);
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

/* Platform Features */
.platform-features {
    padding: 4.5rem 1.75rem;
}

.platform-features h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: #06b6d4;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.features-array {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2.25rem;
}

.feature-module {
    text-align: center;
    padding: 2rem;
}

.module-emoji {
    font-size: 3.25rem;
    display: block;
    margin-bottom: 1.25rem;
}

.feature-module h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #06b6d4;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.feature-module p {
    line-height: 1.8;
}

/* Technical Specs */
.technical-specs {
    padding: 4.5rem 1.75rem;
    background: rgba(31, 41, 55, 0.5);
}

.specs-box {
    max-width: 950px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8) 0%, rgba(55, 65, 81, 0.8) 100%);
    padding: 2.75rem;
    border-radius: 14px;
    border: 2px solid #06b6d4;
}

.specs-box h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: #06b6d4;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.specs-box p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Transparency */
.transparency {
    padding: 4.5rem 1.75rem;
}

.transparency h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: #06b6d4;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.transparency-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 950px;
    margin: 0 auto;
}

.panel-block {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8) 0%, rgba(55, 65, 81, 0.8) 100%);
    padding: 2.5rem;
    border-radius: 14px;
    border: 2px solid #06b6d4;
}

.panel-block h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: #06b6d4;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 700;
}

.panel-block ul {
    list-style: none;
}

.panel-block li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

.panel-block li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #06b6d4;
}

/* Metrics */
.metrics {
    padding: 4rem 1.75rem;
    background: rgba(31, 41, 55, 0.5);
}

.metrics-display {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.metric-item {
    text-align: center;
}

.metric-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    color: #06b6d4;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.1rem;
    color: #d1d5db;
}

/* Play Page */
.play-banner {
    padding: 4rem 1.75rem;
    text-align: center;
    background: rgba(31, 41, 55, 0.5);
}

.play-banner h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.25rem;
    color: #06b6d4;
    margin-bottom: 1rem;
    font-weight: 800;
}

.system-requirements {
    padding: 3.5rem 1.75rem;
}

.requirements-box {
    max-width: 950px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8) 0%, rgba(55, 65, 81, 0.8) 100%);
    padding: 2.5rem;
    border-radius: 14px;
    border: 2px solid #06b6d4;
}

.requirements-box h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: #06b6d4;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.req-list {
    list-style: none;
    margin: 1.5rem 0;
}

.req-list li {
    padding: 0.75rem 0;
    font-size: 1.05rem;
}

.critical-note {
    background: rgba(6, 182, 212, 0.15);
    padding: 1.25rem;
    border-radius: 10px;
    border-left: 4px solid #06b6d4;
    margin-top: 1.5rem;
}

.main-gaming {
    padding: 2.5rem 1.75rem 4.5rem;
}

.gaming-frame {
    max-width: 1200px;
    margin: 0 auto;
    background: #000;
    border-radius: 14px;
    overflow: hidden;
    border: 3px solid #06b6d4;
    box-shadow: 0 10px 40px rgba(6, 182, 212, 0.3);
}

.fullsize-game {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.usage-tips {
    padding: 3rem 1.75rem;
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}

.usage-tips h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: #06b6d4;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Document Pages */
.doc-banner {
    padding: 4rem 1.75rem;
    text-align: center;
    background: rgba(31, 41, 55, 0.5);
}

.doc-banner h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.25rem;
    color: #06b6d4;
    margin-bottom: 1rem;
    font-weight: 800;
}

.doc-updated {
    color: #9ca3af;
    font-size: 1.05rem;
}

.doc-body {
    padding: 4rem 1.75rem;
}

.doc-content {
    max-width: 950px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8) 0%, rgba(55, 65, 81, 0.8) 100%);
    padding: 2.75rem;
    border-radius: 14px;
    border: 2px solid #06b6d4;
}

.doc-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    color: #06b6d4;
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.doc-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Footer */
.bottom-bar {
    background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
    padding: 4rem 1.75rem 2.5rem;
    border-top: 2px solid #06b6d4;
    margin-top: 5rem;
}

.footer-wrap {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    color: #06b6d4;
    margin-bottom: 1.25rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.75rem;
}

.footer-list a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: #06b6d4;
}

.footer-copy {
    color: #9ca3af;
    font-size: 0.95rem;
    margin-top: 1.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-icon {
        display: flex;
    }

    .top-nav {
        position: fixed;
        top: 72px;
        right: -100%;
        width: 270px;
        height: calc(100vh - 72px);
        background: rgba(17, 24, 39, 0.98);
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        gap: 1.5rem;
    }

    .top-nav.active {
        right: 0;
    }

    .banner-content h1, .play-banner h1, .doc-banner h1 {
        font-size: 2.75rem;
    }

    .game-iframe {
        height: 450px;
    }

    .fullsize-game {
        height: 550px;
    }

    .facts-grid, .features-array {
        grid-template-columns: 1fr;
    }

    .transparency-panels {
        grid-template-columns: 1fr;
    }

    .metrics-display {
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .banner-content h1, .play-banner h1, .doc-banner h1 {
        font-size: 2.25rem;
    }

    .check-container {
        padding: 2.25rem 1.75rem;
    }

    .check-controls {
        flex-direction: column;
    }

    .game-iframe {
        height: 350px;
    }

    .fullsize-game {
        height: 450px;
    }

    .doc-content {
        padding: 2rem;
    }
}
