/* Voidexy - Dark Void Theme */
/* Font: Space Grotesk */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon: #00ff88;
    --neon-dim: #00cc6a;
    --void: #0d0d0d;
    --void-light: #1a1a1a;
    --void-lighter: #2a2a2a;
    --text: #e0e0e0;
    --text-dim: #888;
    --danger: #ff4444;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--void);
    color: var(--text);
    line-height: 1.7;
    min-height: 100vh;
}

/* Age Gate */
.age-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.98);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.age-overlay.hidden {
    display: none;
}

.age-modal {
    background: var(--void-light);
    border: 2px solid var(--neon);
    border-radius: 8px;
    padding: 48px 40px;
    max-width: 440px;
    text-align: center;
    position: relative;
}

.void-ring {
    width: 80px;
    height: 80px;
    border: 4px solid var(--neon);
    border-radius: 50%;
    margin: 0 auto 24px;
    position: relative;
}

.void-ring::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: var(--neon);
    border-radius: 50%;
}

.age-modal h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--neon);
}

.age-modal p {
    color: var(--text-dim);
    margin-bottom: 32px;
    line-height: 1.8;
}

.age-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-enter, .btn-leave {
    padding: 16px 32px;
    border: none;
    border-radius: 4px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-enter {
    background: var(--neon);
    color: var(--void);
}

.btn-enter:hover {
    background: var(--neon-dim);
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.btn-leave {
    background: transparent;
    color: var(--text-dim);
    border: 1px solid var(--text-dim);
}

.btn-leave:hover {
    border-color: var(--danger);
    color: var(--danger);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.95);
    backdrop-filter: blur(8px);
    z-index: 1000;
    border-bottom: 1px solid var(--void-lighter);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand-text {
    font-size: 26px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.5px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 4px;
}

.site-nav {
    display: flex;
    gap: 4px;
}

.site-nav a {
    color: var(--text-dim);
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.2s;
}

.site-nav a:hover, .site-nav a.current {
    color: var(--neon);
    background: rgba(0, 255, 136, 0.1);
}

/* Landing Section */
.landing {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.landing-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.void-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 255, 136, 0.1);
}

.vc-1 {
    width: 300px;
    height: 300px;
    top: 20%;
    left: 10%;
}

.vc-2 {
    width: 500px;
    height: 500px;
    bottom: 10%;
    right: 5%;
}

.vc-3 {
    width: 200px;
    height: 200px;
    top: 60%;
    left: 50%;
}

.landing-content {
    max-width: 700px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.landing-content h1 {
    font-size: clamp(40px, 8vw, 64px);
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.landing-content p {
    font-size: 19px;
    color: var(--text-dim);
    margin-bottom: 40px;
    line-height: 1.8;
}

.btn-glow {
    display: inline-block;
    padding: 18px 48px;
    background: var(--neon);
    color: var(--void);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-glow:hover {
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
    transform: translateY(-2px);
}

/* Key Points */
.key-points {
    padding: 80px 24px;
    background: var(--void-light);
}

.points-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.point-box {
    background: var(--void);
    padding: 40px 32px;
    border: 1px solid var(--void-lighter);
    border-radius: 8px;
    transition: border-color 0.3s;
}

.point-box:hover {
    border-color: var(--neon);
}

.point-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.point-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.point-box p {
    color: var(--text-dim);
    line-height: 1.8;
}

/* Featured Game */
.featured-game {
    padding: 100px 24px;
}

.featured-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.featured-inner h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.featured-desc {
    color: var(--text-dim);
    font-size: 18px;
    margin-bottom: 48px;
}

.game-embed {
    aspect-ratio: 16/10;
    border: 2px solid var(--neon);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.15);
}

.game-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* About Section */
.about-void {
    padding: 100px 24px;
    background: var(--void-light);
}

.about-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
}

.about-text p {
    color: var(--text-dim);
    margin-bottom: 16px;
    line-height: 1.9;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    background: var(--void);
    padding: 24px;
    border-radius: 8px;
    border-left: 3px solid var(--neon);
}

.feature-tag {
    display: inline-block;
    background: rgba(0, 255, 136, 0.15);
    color: var(--neon);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-item p {
    color: var(--text-dim);
    font-size: 15px;
}

/* Info Blocks */
.info-blocks {
    padding: 80px 24px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.block {
    background: linear-gradient(135deg, var(--void-light) 0%, var(--void) 100%);
    padding: 32px;
    border-radius: 8px;
    border: 1px solid var(--void-lighter);
}

.block h3 {
    font-size: 20px;
    margin-bottom: 14px;
}

.block p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.8;
}

/* Play Page */
.play-main {
    padding-top: 80px;
}

.play-header {
    padding: 60px 24px 40px;
    text-align: center;
}

.play-header h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--neon);
}

.play-header p {
    color: var(--text-dim);
    font-size: 18px;
    max-width: 550px;
    margin: 0 auto;
}

.play-area {
    padding: 24px;
}

.game-stage {
    max-width: 1100px;
    margin: 0 auto;
    aspect-ratio: 16/10;
    border: 2px solid var(--neon);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 0 80px rgba(0, 255, 136, 0.2);
}

.game-stage iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.play-guide {
    padding: 60px 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.guide-item {
    background: var(--void-light);
    padding: 28px;
    border-radius: 8px;
    border: 1px solid var(--void-lighter);
}

.guide-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.guide-item p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.7;
}

.play-notice {
    padding: 24px 24px 80px;
    max-width: 700px;
    margin: 0 auto;
}

.notice-content {
    background: var(--void-light);
    border: 1px solid var(--neon);
    border-radius: 8px;
    padding: 32px;
    text-align: center;
}

.notice-content h3 {
    color: var(--neon);
    margin-bottom: 12px;
}

.notice-content p {
    color: var(--text-dim);
    line-height: 1.8;
}

/* Legal Pages */
.legal-main {
    padding: 120px 24px 80px;
}

.legal-article {
    max-width: 780px;
    margin: 0 auto;
}

.legal-article h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--neon);
}

.date-line {
    color: var(--text-dim);
    margin-bottom: 48px;
    font-size: 15px;
}

.legal-block {
    margin-bottom: 40px;
}

.legal-block.emphasis {
    background: var(--void-light);
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid var(--neon);
}

.legal-block h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 14px;
}

.legal-block p {
    color: var(--text-dim);
    line-height: 1.9;
    margin-bottom: 12px;
}

.legal-block ul {
    color: var(--text-dim);
    margin-left: 24px;
    line-height: 2;
}

/* Footer */
.site-footer {
    background: var(--void-light);
    border-top: 1px solid var(--void-lighter);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
}

.footer-name {
    font-size: 24px;
    font-weight: 700;
    display: block;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.7;
}

.footer-nav h4, .footer-help h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    color: var(--text);
}

.footer-nav a, .footer-help a {
    display: block;
    color: var(--text-dim);
    text-decoration: none;
    padding: 8px 0;
    font-size: 15px;
    transition: color 0.2s;
}

.footer-nav a:hover, .footer-help a:hover {
    color: var(--neon);
}

.footer-legal {
    border-top: 1px solid var(--void-lighter);
    padding: 24px;
    text-align: center;
}

.footer-legal p {
    color: var(--text-dim);
    font-size: 14px;
}

/* Mobile */
@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--void-light);
        flex-direction: column;
        padding: 16px;
        gap: 4px;
        display: none;
        border-bottom: 1px solid var(--void-lighter);
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        padding: 14px 16px;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .game-embed, .game-stage {
        aspect-ratio: 4/3;
    }

    .landing-content h1 {
        letter-spacing: -1px;
    }
}
