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

body {
    font-family: 'Poppins', sans-serif;
    background: #0d0221;
    color: #b8c5d6;
    line-height: 1.6;
}

.main-header {
    background: linear-gradient(135deg, #0d0221, #1a0b3f);
    border-bottom: 2px solid #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-symbol {
    font-size: 1.8rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.logo-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #00ffff;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.site-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #b8c5d6;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 1px;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}

.nav-link.active::before {
    content: '⬢';
    position: absolute;
    left: -15px;
    color: #00ffff;
}

.menu-trigger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-trigger span {
    width: 28px;
    height: 3px;
    background: #00ffff;
    box-shadow: 0 0 5px rgba(0, 255, 255, 0.8);
    transition: all 0.3s;
}

.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-zone {
    position: relative;
    padding: 5rem 0;
    text-align: center;
    overflow: hidden;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.grid-line {
    position: absolute;
    background: #00ffff;
}

.grid-line.horizontal {
    left: 0;
    right: 0;
    height: 1px;
}

.grid-line.horizontal:nth-child(1) { top: 25%; }
.grid-line.horizontal:nth-child(2) { top: 75%; }

.grid-line.vertical {
    top: 0;
    bottom: 0;
    width: 1px;
}

.grid-line.vertical:nth-child(3) { left: 25%; }
.grid-line.vertical:nth-child(4) { left: 75%; }

.hero-text {
    position: relative;
    z-index: 1;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(0, 255, 255, 0.1);
    border: 2px solid #00ffff;
    color: #00ffff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.hero-zone h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #00ffff;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: 5px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.sub-title {
    font-size: 1.5rem;
    color: #ff00ff;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.8);
}

.hero-tagline {
    font-size: 1.3rem;
    color: #b8c5d6;
    margin-bottom: 2.5rem;
}

.primary-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #00ffff, #ff00ff);
    color: #0d0221;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    letter-spacing: 2px;
    transition: all 0.3s;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
    border: 2px solid transparent;
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.8);
}

.stats-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: #00ffff;
    margin: 3rem 0;
}

.stat-cell {
    background: #0d0221;
    padding: 2rem;
    text-align: center;
}

.stat-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: #777;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ffff;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.platform-info {
    margin: 4rem 0;
}

.info-dual {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
}

.info-block {
    background: linear-gradient(135deg, #1a0b3f, #0d0221);
    border: 1px solid #00ffff;
    padding: 2.5rem;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.block-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.block-icon {
    font-size: 2rem;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.block-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #00ffff;
    letter-spacing: 2px;
}

.info-block p {
    margin-bottom: 1rem;
}

.feature-matrix {
    list-style: none;
}

.feature-matrix li {
    padding: 0.8rem 0;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.matrix-icon {
    color: #ff00ff;
    font-size: 1.5rem;
    font-weight: 700;
}

.game-display {
    margin: 4rem 0;
}

.display-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.header-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, #00ffff, transparent);
}

.display-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #00ffff;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

.game-frame-container {
    background: #0d0221;
    border: 2px solid #00ffff;
    padding: 1rem;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
}

.game-viewport {
    width: 100%;
    height: 600px;
    border: none;
}

.display-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    font-family: 'Orbitron', sans-serif;
}

.meta-tag {
    color: #00ffff;
    font-weight: 700;
    letter-spacing: 1px;
}

.meta-sep {
    color: #ff00ff;
}

.data-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.data-card {
    padding: 2.5rem;
    background: linear-gradient(135deg, #1a0b3f, #0d0221);
    border: 2px solid;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.data-card:hover {
    transform: translateY(-5px);
}

.cyan-card {
    border-color: #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.magenta-card {
    border-color: #ff00ff;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.3);
}

.card-header {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.cyan-card .card-header {
    color: #00ffff;
}

.magenta-card .card-header {
    color: #ff00ff;
}

.data-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.responsibility-zone {
    margin: 4rem 0;
}

.zone-content {
    background: linear-gradient(135deg, #1a0b3f, #0d0221);
    border: 2px solid #ff00ff;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.3);
}

.zone-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff00ff;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}

.play-header {
    text-align: center;
    padding: 4rem 0;
}

.play-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #00ffff;
    margin-bottom: 1rem;
    letter-spacing: 5px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.play-subtitle {
    font-size: 1.2rem;
    color: #b8c5d6;
}

.play-zone {
    margin: 3rem 0;
}

.play-container {
    background: #0d0221;
    border: 2px solid #00ffff;
    padding: 1rem;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
}

.play-viewport {
    width: 100%;
    height: 700px;
    border: none;
}

.spec-panel {
    margin: 4rem 0;
}

.spec-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.spec-card {
    background: linear-gradient(135deg, #1a0b3f, #0d0221);
    border: 1px solid #00ffff;
    padding: 2rem;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
}

.spec-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 1rem;
}

.warning-panel {
    margin: 4rem 0;
}

.warning-content {
    background: rgba(255, 0, 255, 0.05);
    border: 2px solid #ff00ff;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    box-shadow: 0 0 40px rgba(255, 0, 255, 0.3);
}

.warning-symbol {
    font-size: 3rem;
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.8);
}

.warning-text h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff00ff;
    margin-bottom: 0.8rem;
}

.doc-panel {
    background: linear-gradient(135deg, #1a0b3f, #0d0221);
    border: 2px solid #00ffff;
    padding: 3rem;
    margin: 3rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
}

.doc-title h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #00ffff;
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
}

.doc-timestamp {
    font-family: 'Orbitron', sans-serif;
    color: #777;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.doc-block {
    margin-bottom: 2.5rem;
}

.doc-block h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff00ff;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.main-footer {
    background: linear-gradient(135deg, #0d0221, #1a0b3f);
    border-top: 2px solid #00ffff;
    padding: 3rem 2rem 1rem;
    margin-top: 5rem;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

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

.footer-col h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer-tag {
    color: #ff00ff;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    margin-top: 0.8rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #b8c5d6;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #00ffff;
}

.footer-bar {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 255, 0.2);
    color: #777;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.gate-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 2, 33, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.gate-screen.hidden {
    display: none;
}

.gate-container {
    background: linear-gradient(135deg, #1a0b3f, #0d0221);
    border: 3px solid #00ffff;
    max-width: 600px;
    box-shadow: 0 0 60px rgba(0, 255, 255, 0.6);
}

.gate-header {
    background: rgba(0, 255, 255, 0.1);
    border-bottom: 2px solid #00ffff;
    padding: 2rem;
    text-align: center;
}

.gate-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #00ffff;
    letter-spacing: 3px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.gate-status {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: #ff00ff;
    letter-spacing: 2px;
}

.gate-content {
    padding: 2rem;
}

.gate-message {
    text-align: center;
    margin-bottom: 2rem;
}

.age-display {
    background: rgba(0, 255, 255, 0.05);
    border: 2px solid #00ffff;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
}

.age-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: #777;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.age-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
}

.age-unit {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.9rem;
    color: #ff00ff;
    letter-spacing: 2px;
}

.gate-info {
    text-align: center;
    color: #b8c5d6;
    font-size: 0.95rem;
}

.gate-actions {
    padding: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.gate-btn {
    padding: 1rem 2rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.3s;
}

.confirm-btn {
    background: #00ffff;
    border-color: #00ffff;
    color: #0d0221;
}

.confirm-btn:hover {
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

.reject-btn {
    background: transparent;
    border-color: #ff00ff;
    color: #ff00ff;
}

.reject-btn:hover {
    background: rgba(255, 0, 255, 0.1);
}

@media (max-width: 968px) {
    .menu-trigger {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        background: linear-gradient(135deg, #0d0221, #1a0b3f);
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transition: left 0.3s;
        border-bottom: 2px solid #00ffff;
    }

    .site-nav.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 255, 255, 0.2);
    }

    .hero-zone h1 {
        font-size: 2.5rem;
    }

    .stats-panel {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-dual {
        grid-template-columns: 1fr;
    }

    .data-cards {
        grid-template-columns: 1fr;
    }

    .spec-cards {
        grid-template-columns: 1fr;
    }

    .game-viewport {
        height: 400px;
    }

    .play-viewport {
        height: 500px;
    }

    .gate-container {
        margin: 1rem;
    }

    .gate-actions {
        flex-direction: column;
    }

    .warning-content {
        flex-direction: column;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
