@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@400;600;700&family=Roboto:wght@300;400&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --flame-orange: #FF4500;
    --flame-red: #FF6347;
    --flame-yellow: #FFA500;
    --dark-bg: #1a1a1a;
    --lighter-bg: #2a2a2a;
    --text-light: #ffffff;
    --text-dim: #b0b0b0;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to bottom, #1a1a1a, #2a1a1a, #1a1a1a);
    color: var(--text-light);
    line-height: 1.7;
}

.layout-container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Navigation */
.sidebar {
    width: 280px;
    background: linear-gradient(180deg, rgba(255, 69, 0, 0.1), rgba(0, 0, 0, 0.8));
    border-right: 3px solid var(--flame-orange);
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 5px 0 30px rgba(255, 69, 0, 0.3);
}

.sidebar-content {
    padding: 2rem;
}

.sidebar-logo {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--flame-orange);
    text-transform: uppercase;
    margin-bottom: 3rem;
    text-align: center;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-logo-icon {
    font-size: 3rem;
    animation: flicker 3s infinite alternate;
}

@keyframes flicker {
    0%, 100% { opacity: 1; text-shadow: 0 0 10px #FF4500, 0 0 20px #FF4500; }
    50% { opacity: 0.8; text-shadow: 0 0 5px #FF4500; }
}

.sidebar nav ul {
    list-style: none;
}

.sidebar nav li {
    margin-bottom: 0.5rem;
}

.sidebar nav a {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-dim);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.sidebar nav a:hover {
    background: rgba(255, 69, 0, 0.2);
    color: var(--flame-orange);
    transform: translateX(5px);
}

.sidebar-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 69, 0, 0.3);
}

.sidebar-footer h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--flame-yellow);
    text-transform: uppercase;
}

.sidebar-footer a {
    display: block;
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

.sidebar-footer a:hover {
    color: var(--flame-orange);
}

/* Main Content */
.main-content {
    margin-left: 280px;
    flex: 1;
    padding: 3rem;
}

.page-header {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.2), rgba(255, 165, 0, 0.1));
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 2px solid var(--flame-orange);
    text-align: center;
}

.page-header h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--flame-orange);
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
}

.page-header p {
    font-size: 1.3rem;
    color: var(--text-dim);
}

.section-card {
    background: rgba(42, 42, 42, 0.6);
    border: 2px solid rgba(255, 69, 0, 0.4);
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.section-card h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    color: var(--flame-yellow);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.section-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    color: var(--flame-orange);
    margin: 2rem 0 1rem;
    text-transform: uppercase;
}

.section-card p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.section-card ul {
    list-style: none;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.section-card li {
    padding: 0.5rem 0;
    position: relative;
    color: var(--text-light);
}

.section-card li:before {
    content: "🔥";
    position: absolute;
    left: -1.5rem;
}

.alert-box {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.3), rgba(255, 99, 71, 0.3));
    border-left: 5px solid var(--flame-red);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(255, 69, 0, 0.2);
}

.game-wrapper {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    margin: 2rem 0;
    border: 3px solid var(--flame-orange);
    box-shadow: 0 10px 40px rgba(255, 69, 0, 0.4);
}

.game-wrapper iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.age-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-modal-content {
    background: linear-gradient(135deg, #2a2a2a, #3a1a1a);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 550px;
    border: 3px solid var(--flame-orange);
    box-shadow: 0 0 50px rgba(255, 69, 0, 0.6);
}

.age-modal-content h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.8rem;
    color: var(--flame-orange);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.age-modal-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-dim);
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-btn {
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-btn-confirm {
    background: linear-gradient(135deg, var(--flame-orange), var(--flame-red));
    color: white;
}

.age-btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 25px rgba(255, 69, 0, 0.5);
}

.age-btn-decline {
    background: #444;
    color: white;
}

.age-btn-decline:hover {
    background: #555;
}

/* Mobile Hamburger */
.mobile-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 10001;
    background: var(--flame-orange);
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    display: block;
    transition: 0.3s;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .sidebar {
        left: -100%;
        transition: left 0.3s ease;
        width: 80%;
        max-width: 300px;
    }

    .sidebar.active {
        left: 0;
    }

    .main-content {
        margin-left: 0;
        padding: 2rem 1rem;
        padding-top: 5rem;
    }

    .mobile-toggle {
        display: flex;
    }

    .page-header {
        padding: 2rem 1.5rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .section-card {
        padding: 1.5rem;
    }

    .section-card h2 {
        font-size: 1.8rem;
    }

    .game-wrapper iframe {
        height: 500px;
    }

    .age-modal-content {
        margin: 1rem;
        padding: 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }
}
