* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #0a0e27;
    color: #e0e7ff;
    min-height: 100vh;
}

/* Header */
.site-header {
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
    border-bottom: 2px solid #06b6d4;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px #06b6d4);
}

.brand-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #06b6d4;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-nav a {
    color: #e0e7ff;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #06b6d4;
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: #06b6d4;
}

.menu-toggle {
    display: none;
    background: none;
    border: 2px solid #06b6d4;
    padding: 0.5rem;
    cursor: pointer;
    border-radius: 4px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: #06b6d4;
    margin: 5px 0;
    transition: 0.3s;
}

/* Main Content */
.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-section {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.hero-section h1 {
    font-size: 3.5rem;
    color: #06b6d4;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
}

.hero-section p {
    font-size: 1.3rem;
    color: #94a3b8;
}

.content-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid #334155;
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.content-box h2 {
    color: #06b6d4;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.content-box h3 {
    color: #0ea5e9;
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-box p {
    line-height: 1.9;
    margin-bottom: 1.2rem;
    color: #cbd5e1;
}

.content-box ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-box li {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #cbd5e1;
}

/* Warning Panel */
.warning-panel {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    border-left: 5px solid #fff;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
}

.warning-panel h3 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.warning-panel ul {
    color: #fff;
}

.warning-panel li {
    color: #fff;
}

.warning-panel strong {
    font-weight: 800;
}

/* Game Section */
.game-section {
    background: #000;
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
    text-align: center;
    border: 2px solid #06b6d4;
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
}

.game-section h2 {
    color: #06b6d4;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-transform: uppercase;
}

.game-section iframe {
    border-radius: 10px;
    max-width: 100%;
    border: 2px solid #334155;
}

/* Grid Layout */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.info-tile {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid #334155;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s;
}

.info-tile:hover {
    border-color: #06b6d4;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.2);
}

.info-tile h3 {
    color: #06b6d4;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-tile p {
    color: #94a3b8;
    line-height: 1.7;
}

/* Footer */
.site-footer {
    background: #0f172a;
    border-top: 2px solid #06b6d4;
    padding: 3rem 2rem;
    margin-top: 4rem;
    text-align: center;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #06b6d4;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #0ea5e9;
}

.footer-info {
    color: #64748b;
    margin-top: 1rem;
}

/* Age Gate Modal */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate.visible {
    display: flex;
}

.age-gate-content {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 3px solid #06b6d4;
    border-radius: 20px;
    padding: 3rem;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 0 50px rgba(6, 182, 212, 0.5);
}

.age-gate-content h2 {
    color: #06b6d4;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.age-gate-content p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.age-gate-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-button {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    font-family: 'Space Grotesk', sans-serif;
}

.age-button-yes {
    background: #06b6d4;
    color: #0a0e27;
}

.age-button-yes:hover {
    background: #0ea5e9;
    transform: scale(1.05);
}

.age-button-no {
    background: #dc2626;
    color: #fff;
}

.age-button-no:hover {
    background: #991b1b;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 968px) {
    .main-nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0f172a;
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-top: 2px solid #06b6d4;
    }

    .main-nav ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .age-gate-content {
        margin: 1rem;
        padding: 2rem;
    }

    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}
