* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #0a0e27;
    color: #e0e6ed;
    min-height: 100vh;
}

.page-wrapper {
    position: relative;
    overflow-x: hidden;
}

.page-wrapper::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(91, 206, 250, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(163, 117, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, rgba(52, 211, 153, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

.main-header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(91, 206, 250, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-area h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #5bcefa;
    margin: 0;
    text-shadow: 0 0 20px rgba(91, 206, 250, 0.5);
}

.tagline {
    font-size: 0.85rem;
    color: #a3b5c9;
    display: block;
    margin-top: 0.25rem;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 2px solid #5bcefa;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 6px;
}

.menu-bar {
    display: block;
    width: 25px;
    height: 3px;
    background: #5bcefa;
    margin: 4px 0;
    transition: 0.3s;
}

.main-nav {
    background: rgba(15, 23, 42, 0.8);
    padding: 1rem 2rem;
    display: flex;
    gap: 2.5rem;
    border-bottom: 1px solid rgba(91, 206, 250, 0.1);
}

.nav-item {
    color: #a3b5c9;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #5bcefa;
    transition: width 0.3s ease;
}

.nav-item:hover,
.nav-item.current {
    color: #5bcefa;
}

.nav-item:hover::after,
.nav-item.current::after {
    width: 100%;
}

.content-layout {
    display: grid;
    grid-template-columns: 250px 1fr 280px;
    gap: 2rem;
    max-width: 1600px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.left-panel,
.right-panel {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.panel-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(91, 206, 250, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
}

.panel-card.highlight {
    border-color: #5bcefa;
    box-shadow: 0 0 20px rgba(91, 206, 250, 0.2);
}

.panel-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: #5bcefa;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.panel-card p {
    line-height: 1.7;
    color: #cbd5e1;
}

.status-list {
    list-style: none;
    padding: 0;
}

.status-list li {
    padding: 0.5rem 0;
    color: #cbd5e1;
    font-size: 1rem;
}

.fact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fact {
    padding: 0.75rem;
    background: rgba(91, 206, 250, 0.1);
    border-radius: 8px;
    font-size: 0.95rem;
}

.fact strong {
    color: #5bcefa;
}

.center-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.welcome-area h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #5bcefa;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(91, 206, 250, 0.4);
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.essentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.essential-box {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(91, 206, 250, 0.3);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.essential-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(91, 206, 250, 0.3);
}

.essential-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.essential-box h3 {
    font-family: 'Orbitron', sans-serif;
    color: #5bcefa;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.essential-box p {
    line-height: 1.7;
    color: #cbd5e1;
}

.game-display {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(91, 206, 250, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
}

.game-display h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #5bcefa;
    text-align: center;
    margin-bottom: 1rem;
}

.game-subtitle {
    text-align: center;
    color: #a3b5c9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.game-container {
    max-width: 900px;
    margin: 0 auto;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.info-block {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(91, 206, 250, 0.3);
    border-radius: 12px;
    padding: 2rem;
}

.info-block h4 {
    font-family: 'Orbitron', sans-serif;
    color: #5bcefa;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.info-block p {
    line-height: 1.8;
    color: #cbd5e1;
}

.content-centered {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.play-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.play-intro {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(91, 206, 250, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
}

.play-intro h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #5bcefa;
    margin-bottom: 1rem;
}

.play-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.game-notice {
    background: rgba(163, 117, 255, 0.1);
    border: 1px solid rgba(163, 117, 255, 0.4);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.game-notice p {
    color: #cbd5e1;
    font-size: 1.05rem;
}

.gaming-tips {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(91, 206, 250, 0.3);
    border-radius: 12px;
    padding: 2.5rem;
}

.gaming-tips h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #5bcefa;
    text-align: center;
    margin-bottom: 2rem;
}

.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tip-card {
    background: rgba(91, 206, 250, 0.1);
    border: 1px solid rgba(91, 206, 250, 0.3);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
}

.tip-emoji {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 1rem;
}

.legal-main {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(91, 206, 250, 0.3);
    border-radius: 12px;
    padding: 3rem;
}

.legal-main h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #5bcefa;
    margin-bottom: 1rem;
}

.legal-intro {
    font-size: 1.1rem;
    color: #a3b5c9;
    margin-bottom: 2rem;
}

.legal-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.7rem;
    color: #5bcefa;
    margin: 2rem 0 1rem;
}

.legal-section h3:first-child {
    margin-top: 0;
}

.legal-section p {
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
    color: #cbd5e1;
}

.legal-section li {
    margin: 0.5rem 0;
    line-height: 1.7;
}

.site-footer {
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid rgba(91, 206, 250, 0.2);
    padding: 3rem 2rem 2rem;
    margin-top: 4rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-family: 'Orbitron', sans-serif;
    color: #5bcefa;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #a3b5c9;
    line-height: 1.7;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.resource-links a {
    color: #5bcefa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource-links a:hover {
    color: #a3f5ff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(91, 206, 250, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: #64748b;
    margin: 0.5rem 0;
}

.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate-overlay.hidden {
    display: none;
}

.age-gate-box {
    background: rgba(15, 23, 42, 0.95);
    border: 2px solid #5bcefa;
    border-radius: 16px;
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 40px rgba(91, 206, 250, 0.5);
}

.moon-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-gate-box h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #5bcefa;
    margin-bottom: 1.5rem;
}

.age-gate-box p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.small-text {
    font-size: 0.95rem;
    color: #94a3b8;
}

.age-choice {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-confirm,
.btn-decline {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-confirm {
    background: #5bcefa;
    color: #0a0e27;
}

.btn-confirm:hover {
    background: #a3f5ff;
    transform: scale(1.05);
}

.btn-decline {
    background: #475569;
    color: #e0e6ed;
}

.btn-decline:hover {
    background: #64748b;
    transform: scale(1.05);
}

@media (max-width: 1200px) {
    .content-layout {
        grid-template-columns: 1fr;
    }

    .left-panel,
    .right-panel {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 968px) {
    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        gap: 0;
    }

    .main-nav.active {
        display: flex;
    }

    .nav-item {
        padding: 1rem;
        border-bottom: 1px solid rgba(91, 206, 250, 0.1);
    }

    .game-iframe {
        height: 500px;
    }

    .age-gate-box {
        margin: 1rem;
        padding: 2rem;
    }

    .age-choice {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .content-centered,
    .content-layout {
        padding: 0 1rem;
    }

    .game-iframe {
        height: 400px;
    }

    .play-intro,
    .legal-main,
    .game-display {
        padding: 1.5rem;
    }
}
