@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: #0a0a0a;
    color: #e0e0e0;
    min-height: 100vh;
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #1a0000 0%, #330000 100%);
    border-right: 3px solid #ff4444;
    padding: 2rem 0;
    z-index: 1000;
    transition: transform 0.3s;
}

.sidebar-logo {
    text-align: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.sidebar-logo a {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ff4444;
    text-decoration: none;
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.5);
}

.sidebar nav ul {
    list-style: none;
}

.sidebar nav ul li {
    margin: 0.5rem 0;
}

.sidebar nav ul li a {
    display: block;
    padding: 1rem 2rem;
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.sidebar nav ul li a:hover {
    background: rgba(255, 68, 68, 0.2);
    border-left-color: #ff4444;
    color: #ff4444;
}

.menu-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    background: #ff4444;
    border: none;
    color: white;
    padding: 0.8rem 1.2rem;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1001;
    border-radius: 5px;
}

/* Main Content */
.main-content {
    margin-left: 280px;
    padding: 2rem;
    min-height: 100vh;
}

.page-header {
    background: linear-gradient(135deg, #330000 0%, #660000 100%);
    border: 2px solid #ff4444;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 30px rgba(255, 68, 68, 0.3);
}

.page-header h1 {
    color: #ff4444;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-header p {
    font-size: 1rem;
    line-height: 1.8;
    color: #b0b0b0;
}

.alert-panel {
    background: #1a0000;
    border: 2px solid #ff6b6b;
    border-radius: 10px;
    padding: 1.5rem;
    margin: 2rem 0;
}

.alert-panel h2 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.alert-panel ul {
    list-style: none;
}

.alert-panel ul li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #d0d0d0;
}

.alert-panel ul li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #ff4444;
    font-weight: bold;
}

.game-section {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.game-section h2 {
    color: #ff4444;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-transform: uppercase;
}

.game-embed {
    width: 100%;
    height: 650px;
    border: 3px solid #ff4444;
    border-radius: 5px;
    background: #000;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a0000 100%);
    border: 2px solid #ff4444;
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.3);
}

.feature-box h3 {
    color: #ff6b6b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-box p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: #0a0a0a;
    border-top: 3px solid #ff4444;
    padding: 2rem;
    margin-left: 280px;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
}

.footer-content h3 {
    color: #ff4444;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin: 0.5rem 0;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff4444;
}

/* Age Verification Modal */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.age-gate.show {
    display: flex;
}

.age-gate-box {
    background: linear-gradient(135deg, #1a0000 0%, #330000 100%);
    border: 3px solid #ff4444;
    border-radius: 15px;
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 0 50px rgba(255, 68, 68, 0.5);
}

.age-gate-box h2 {
    color: #ff4444;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.age-gate-box p {
    color: #d0d0d0;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.age-gate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 2rem;
    border: 2px solid #ff4444;
    background: transparent;
    color: #ff4444;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: all 0.3s;
    text-transform: uppercase;
}

.age-btn:hover {
    background: #ff4444;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 68, 68, 0.6);
}

.age-btn.decline {
    border-color: #666;
    color: #666;
}

.age-btn.decline:hover {
    background: #666;
    color: #fff;
    box-shadow: none;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .menu-toggle {
        display: block;
    }

    .main-content {
        margin-left: 0;
        padding: 5rem 1rem 1rem 1rem;
    }

    footer {
        margin-left: 0;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .game-embed {
        height: 400px;
    }

    .age-gate-box {
        margin: 1rem;
        padding: 2rem;
    }

    .age-gate-buttons {
        flex-direction: column;
    }
}

.content-page {
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 10px;
    padding: 2.5rem;
    margin: 2rem 0;
}

.content-page h1 {
    color: #ff4444;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-transform: uppercase;
}

.content-page h2 {
    color: #ff6b6b;
    margin: 2rem 0 1rem 0;
    font-size: 1.3rem;
}

.content-page p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.content-page ul, .content-page ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: #b0b0b0;
}

.content-page li {
    margin: 0.5rem 0;
    line-height: 1.6;
}
