@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Roboto:wght@300;400;700&display=swap');

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

body {
    font-family: 'Roboto', sans-serif;
    background: #0a0e27;
    color: #e0e0e0;
    line-height: 1.6;
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #0d1430 0%, #1a1f3a 100%);
    border-right: 3px solid #00ffff;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    box-shadow: 5px 0 20px rgba(0, 255, 255, 0.3);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.sidebar-header {
    padding: 2rem 1.5rem;
    border-bottom: 2px solid rgba(0, 255, 255, 0.3);
    text-align: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #00ffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
    display: block;
}

.sidebar nav {
    padding: 2rem 0;
}

.sidebar nav ul {
    list-style: none;
}

.sidebar nav a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.sidebar nav a:hover {
    background: rgba(0, 255, 255, 0.1);
    border-left-color: #00ffff;
    color: #00ffff;
}

.hamburger {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 2000;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: #1a1f3a;
    padding: 10px;
    border-radius: 5px;
    border: 2px solid #00ffff;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #00ffff;
    transition: 0.3s;
}

.main-content {
    margin-left: 280px;
    flex: 1;
    padding: 3rem;
}

.hero {
    background: linear-gradient(135deg, #1a1f3a 0%, #2a3556 100%);
    padding: 4rem 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 2px solid #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

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

h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    color: #00ffff;
    margin: 2.5rem 0 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.tagline {
    font-size: 1.3rem;
    color: #b0b0b0;
    font-weight: 300;
    letter-spacing: 1px;
    position: relative;
}

.warning-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.warning-box {
    background: linear-gradient(135deg, #1a1f3a 0%, #252d4a 100%);
    padding: 2.5rem;
    border-radius: 10px;
    border: 2px solid #00ffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.warning-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00ffff, #0080ff);
}

.warning-box h3 {
    color: #00ffff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.game-embed {
    background: #000;
    padding: 1rem;
    border-radius: 10px;
    margin: 3rem 0;
    border: 3px solid #00ffff;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
}

.game-embed iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 5px;
}

.info-panel {
    background: linear-gradient(135deg, #1a1f3a 0%, #252d4a 100%);
    padding: 3rem;
    border-radius: 10px;
    margin: 2.5rem 0;
    border: 2px solid rgba(0, 255, 255, 0.5);
}

.info-panel p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.info-panel ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.info-panel li {
    margin-bottom: 0.8rem;
}

footer {
    background: linear-gradient(180deg, #0d1430 0%, #1a1f3a 100%);
    padding: 2.5rem 3rem;
    margin-top: 4rem;
    border-top: 3px solid #00ffff;
}

.footer-content {
    text-align: center;
}

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

.footer-links a {
    color: #00ffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-links a:hover {
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.8);
}

.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate.active {
    display: flex;
}

.age-gate-box {
    background: linear-gradient(135deg, #1a1f3a 0%, #2a3556 100%);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    max-width: 550px;
    border: 3px solid #00ffff;
    box-shadow: 0 0 60px rgba(0, 255, 255, 0.5);
}

.age-gate-box h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.age-gate-box p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.age-controls {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-control-btn {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    border: 2px solid #00ffff;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-control-btn.confirm {
    background: #00ffff;
    color: #0a0e27;
}

.age-control-btn.confirm:hover {
    background: #00cccc;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    transform: translateY(-2px);
}

.age-control-btn.deny {
    background: transparent;
    color: #ff4444;
    border-color: #ff4444;
}

.age-control-btn.deny:hover {
    background: #ff4444;
    color: #fff;
}

@media (max-width: 968px) {
    body {
        flex-direction: column;
    }

    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
    }

    .main-content {
        margin-left: 0;
        padding: 5rem 1.5rem 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        padding: 2.5rem 1.5rem;
    }

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

    .game-embed iframe {
        height: 500px;
    }

    .info-panel {
        padding: 2rem 1.5rem;
    }

    .age-gate-box {
        margin: 1rem;
        padding: 2rem;
    }

    .age-controls {
        flex-direction: column;
    }

    footer {
        padding: 2rem 1.5rem;
    }
}
