@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;500;600;700&family=Share+Tech+Mono&display=swap');

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

:root {
    --zyn-bg: #0d1117;
    --zyn-surface: #161b22;
    --zyn-green: #00ff88;
    --zyn-teal: #00d4aa;
    --zyn-text: #e6edf3;
    --zyn-subtle: #7d8590;
    --zyn-border: #30363d;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--zyn-bg);
    color: var(--zyn-text);
    line-height: 1.6;
    font-size: 16px;
}

.header {
    background: var(--zyn-surface);
    border-bottom: 1px solid var(--zyn-green);
    padding: 0.8rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-glyph {
    width: 42px;
    height: 42px;
    border: 3px solid var(--zyn-green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.4rem;
    color: var(--zyn-green);
    background: rgba(0, 255, 136, 0.1);
}

.logo-name {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.6rem;
    color: var(--zyn-green);
    letter-spacing: 2px;
}

.hamburger {
    display: none;
    background: none;
    border: 1px solid var(--zyn-green);
    color: var(--zyn-green);
    padding: 8px 12px;
    cursor: pointer;
    font-size: 1.2rem;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--zyn-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.2s;
}

.nav-menu a::before {
    content: '>';
    position: absolute;
    left: -15px;
    opacity: 0;
    color: var(--zyn-green);
    transition: opacity 0.2s;
}

.nav-menu a:hover {
    color: var(--zyn-green);
}

.nav-menu a:hover::before {
    opacity: 1;
}

.hero {
    background: linear-gradient(135deg, var(--zyn-surface) 0%, var(--zyn-bg) 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 255, 136, 0.03) 2px,
        rgba(0, 255, 136, 0.03) 4px
    );
    pointer-events: none;
}

.hero-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: 'Share Tech Mono', monospace;
    font-size: 2.8rem;
    color: var(--zyn-green);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.hero-text {
    font-size: 1.15rem;
    color: var(--zyn-subtle);
    margin-bottom: 2rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.launch-btn {
    display: inline-block;
    background: var(--zyn-green);
    color: var(--zyn-bg);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: box-shadow 0.3s, transform 0.2s;
}

.launch-btn:hover {
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.6);
    transform: translateY(-2px);
}

.status-bar {
    background: var(--zyn-surface);
    border-top: 1px solid var(--zyn-border);
    border-bottom: 1px solid var(--zyn-border);
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Share Tech Mono', monospace;
    font-size: 0.9rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--zyn-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

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

.panel-title {
    font-family: 'Share Tech Mono', monospace;
    font-size: 1.8rem;
    color: var(--zyn-green);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.panel-title::before {
    content: '[';
    color: var(--zyn-subtle);
}

.panel-title::after {
    content: ']';
    color: var(--zyn-subtle);
}

.game-display {
    background: var(--zyn-surface);
    border: 1px solid var(--zyn-green);
    border-radius: 8px;
    overflow: hidden;
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

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

.feature-tile {
    background: var(--zyn-surface);
    border: 1px solid var(--zyn-border);
    border-left: 3px solid var(--zyn-green);
    padding: 1.5rem;
    transition: border-color 0.3s;
}

.feature-tile:hover {
    border-color: var(--zyn-green);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.feature-tile h3 {
    font-family: 'Share Tech Mono', monospace;
    color: var(--zyn-green);
    margin-bottom: 0.5rem;
}

.feature-tile p {
    color: var(--zyn-subtle);
    font-size: 0.95rem;
}

.content-area {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.content-area h2 {
    font-family: 'Share Tech Mono', monospace;
    color: var(--zyn-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px dashed var(--zyn-border);
}

.content-area p {
    color: var(--zyn-subtle);
    margin-bottom: 1rem;
}

.content-area ul {
    color: var(--zyn-subtle);
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.content-area li {
    margin-bottom: 0.4rem;
}

.content-area li::marker {
    color: var(--zyn-green);
}

.footer {
    background: var(--zyn-surface);
    border-top: 1px solid var(--zyn-green);
    padding: 2rem;
    text-align: center;
    margin-top: 3rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--zyn-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--zyn-green);
}

.footer-copy {
    color: var(--zyn-subtle);
    font-size: 0.85rem;
    font-family: 'Share Tech Mono', monospace;
}

.verify-overlay {
    position: fixed;
    inset: 0;
    background: rgba(13, 17, 23, 0.98);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.verify-box {
    background: var(--zyn-surface);
    border: 2px solid var(--zyn-green);
    padding: 2.5rem;
    max-width: 420px;
    text-align: center;
    border-radius: 8px;
}

.verify-box h2 {
    font-family: 'Share Tech Mono', monospace;
    color: var(--zyn-green);
    margin-bottom: 1rem;
}

.verify-box p {
    color: var(--zyn-subtle);
    margin-bottom: 1.5rem;
}

.verify-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-confirm {
    background: var(--zyn-green);
    color: var(--zyn-bg);
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 4px;
}

.btn-deny {
    background: transparent;
    border: 1px solid var(--zyn-subtle);
    color: var(--zyn-text);
    padding: 0.8rem 2rem;
    cursor: pointer;
    text-transform: uppercase;
    border-radius: 4px;
}

.access-denied {
    text-align: center;
    padding: 5rem 2rem;
}

.access-denied h1 {
    font-family: 'Share Tech Mono', monospace;
    color: var(--zyn-green);
}

@media (max-width: 850px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--zyn-surface);
        padding: 1rem;
        display: none;
        border-bottom: 1px solid var(--zyn-green);
    }

    .nav-menu.visible {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }

    .nav-menu a::before {
        display: none;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .status-bar {
        flex-direction: column;
        gap: 0.8rem;
    }

    .game-iframe {
        height: 400px;
    }

    .verify-box {
        margin: 1rem;
    }

    .verify-buttons {
        flex-direction: column;
    }
}
