@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;600;700&family=Open+Sans:wght@300;400;600&display=swap');

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

:root {
    --fire-orange: #ff6b35;
    --deep-red: #8b0000;
    --ember-yellow: #ffb347;
    --ash-dark: #1c1c1c;
    --smoke-gray: #3a3a3a;
    --light-text: #f5f5f5;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: var(--ash-dark);
    color: var(--light-text);
    line-height: 1.8;
}

/* Top Navigation Bar */
.top-bar {
    background: linear-gradient(90deg, var(--deep-red) 0%, #ff4500 100%);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 500;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.nav-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ember-yellow);
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.brand h1::before {
    content: '🔥 ';
}

.main-nav {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    border-bottom: 3px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--ember-yellow);
    border-bottom-color: var(--ember-yellow);
}

.menu-icon {
    display: none;
    background: var(--ember-yellow);
    border: none;
    padding: 0.8rem 1rem;
    cursor: pointer;
    border-radius: 6px;
}

.menu-icon span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--ash-dark);
    margin: 5px 0;
}

/* Main Layout */
.page-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.hero-area {
    background: linear-gradient(135deg, var(--deep-red) 0%, #ff4500 50%, var(--fire-orange) 100%);
    padding: 6rem 3rem;
    text-align: center;
    border-bottom: 5px solid var(--ember-yellow);
}

.hero-area h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
}

.hero-area p {
    font-size: 1.3rem;
    max-width: 1000px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
}

.main-container {
    padding: 4rem 3rem;
}

.content-block {
    background: var(--smoke-gray);
    padding: 3rem;
    margin-bottom: 3rem;
    border-radius: 10px;
    border-left: 6px solid var(--fire-orange);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.content-block h3 {
    font-family: 'Oswald', sans-serif;
    color: var(--ember-yellow);
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
}

.content-block p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #d4d4d4;
}

.alert-section {
    background: linear-gradient(135deg, #4a0000 0%, #8b0000 100%);
    padding: 2.5rem;
    border-radius: 10px;
    margin: 2.5rem 0;
    border: 3px solid #ff4444;
}

.alert-section h4 {
    color: var(--ember-yellow);
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.alert-section ul {
    margin-left: 2rem;
    color: #f0f0f0;
}

.alert-section li {
    margin: 1rem 0;
}

.gaming-area {
    background: #0d0d0d;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
    border: 4px solid var(--fire-orange);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.3);
}

.gaming-area iframe {
    max-width: 100%;
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5);
}

.feature-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
}

.feature-box {
    background: linear-gradient(135deg, var(--smoke-gray) 0%, #2a2a2a 100%);
    padding: 2.5rem;
    border-radius: 10px;
    border-top: 4px solid var(--fire-orange);
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.feature-box h4 {
    font-family: 'Oswald', sans-serif;
    color: var(--ember-yellow);
    font-size: 1.7rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.feature-box p {
    color: #c4c4c4;
    font-size: 1rem;
}

.site-footer {
    background: linear-gradient(90deg, #1c1c1c 0%, var(--smoke-gray) 100%);
    padding: 3.5rem 2rem;
    margin-top: 5rem;
    border-top: 4px solid var(--fire-orange);
}

.footer-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

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

.footer-nav a {
    color: var(--ember-yellow);
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--fire-orange);
}

/* Age Gate Modal */
.age-gate {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.94);
}

.age-gate.visible {
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-gate-box {
    background: linear-gradient(135deg, var(--deep-red) 0%, #ff4500 100%);
    padding: 4rem;
    border-radius: 15px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 20px 80px rgba(255, 107, 53, 0.6);
    border: 4px solid var(--ember-yellow);
}

.age-gate-box h2 {
    font-family: 'Oswald', sans-serif;
    color: var(--ember-yellow);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
}

.age-gate-box p {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.age-options {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.age-options button {
    padding: 1.3rem 4rem;
    font-size: 1.2rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--ember-yellow);
    color: var(--ash-dark);
}

.btn-accept:hover {
    background: #ffd700;
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(255, 179, 71, 0.5);
}

.btn-reject {
    background: #1c1c1c;
    color: white;
}

.btn-reject:hover {
    background: #000;
    transform: scale(1.08);
}

/* Responsive Design */
@media (max-width: 968px) {
    .menu-icon {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: var(--smoke-gray);
        flex-direction: column;
        padding: 6rem 2rem;
        gap: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
    }

    .main-nav.open {
        right: 0;
    }

    .hero-area {
        padding: 4rem 2rem;
    }

    .hero-area h2 {
        font-size: 2.5rem;
    }

    .main-container {
        padding: 3rem 1.5rem;
    }

    .content-block {
        padding: 2rem;
    }

    .feature-boxes {
        grid-template-columns: 1fr;
    }

    .age-gate-box {
        margin: 1.5rem;
        padding: 3rem;
    }

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

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