@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Crimson+Text:wght@400;600;700&display=swap');

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

:root {
    --blood-red: #DC2626;
    --dark-red: #7F1D1D;
    --charcoal: #1C1C1C;
    --silver: #D1D5DB;
    --gold: #F59E0B;
    --midnight: #0A0A0A;
    --ash: #9CA3AF;
}

body {
    font-family: 'Crimson Text', serif;
    background: var(--midnight);
    color: var(--silver);
    line-height: 1.75;
}

.main-header {
    background: linear-gradient(to bottom, var(--charcoal), var(--midnight));
    border-bottom: 2px solid var(--blood-red);
    padding: 2rem 0;
    box-shadow: 0 5px 30px rgba(220, 38, 38, 0.3);
}

.header-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 3rem;
    text-align: center;
}

.brand-mark {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--blood-red);
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.8), 0 0 40px rgba(220, 38, 38, 0.5);
    transition: all 0.3s ease;
}

.brand-mark:hover {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.8), 0 0 40px rgba(245, 158, 11, 0.5);
}

.main-nav {
    background: var(--charcoal);
    border-bottom: 1px solid var(--dark-red);
}

.nav-inner {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 3rem;
}

.nav-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0;
}

.nav-list li {
    margin: 0;
}

.nav-list a {
    display: block;
    padding: 1.5rem 2.5rem;
    color: var(--silver);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
}

.nav-list a:hover {
    background: var(--midnight);
    color: var(--blood-red);
    border-bottom: 3px solid var(--blood-red);
}

.burger-menu {
    display: none;
    background: var(--blood-red);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    border-radius: 5px;
}

.page-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.banner-hero {
    background: linear-gradient(135deg, var(--dark-red), var(--midnight));
    border: 2px solid var(--blood-red);
    border-radius: 10px;
    padding: 5rem;
    text-align: center;
    margin-bottom: 4rem;
    box-shadow: 0 0 60px rgba(220, 38, 38, 0.4);
    position: relative;
    overflow: hidden;
}

.banner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(220, 38, 38, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.banner-hero h1 {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--blood-red);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 0 30px rgba(220, 38, 38, 0.8);
    position: relative;
    z-index: 1;
}

.banner-hero p {
    font-size: 1.4rem;
    line-height: 2;
    max-width: 950px;
    margin: 0 auto;
    color: var(--silver);
    position: relative;
    z-index: 1;
}

.section-box {
    background: var(--charcoal);
    border: 1px solid var(--dark-red);
    border-radius: 10px;
    padding: 4rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.section-box h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--blood-red);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
    border-bottom: 2px solid var(--dark-red);
    padding-bottom: 1.5rem;
}

.section-box h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--gold);
    margin-top: 2.5rem;
    margin-bottom: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-box p {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    color: var(--ash);
}

.section-box ul {
    margin-left: 3rem;
    margin-bottom: 1.5rem;
}

.section-box li {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: var(--ash);
}

.warning-panel {
    background: linear-gradient(135deg, rgba(127, 29, 29, 0.3), rgba(0, 0, 0, 0.5));
    border: 2px solid var(--blood-red);
    border-radius: 8px;
    padding: 2.5rem;
    margin: 2.5rem 0;
}

.warning-panel strong {
    font-family: 'Cinzel', serif;
    color: var(--blood-red);
    font-size: 1.6rem;
    display: block;
    margin-bottom: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.warning-panel p {
    color: var(--silver);
    font-size: 1.1rem;
}

.game-frame {
    background: var(--midnight);
    border: 3px solid var(--blood-red);
    border-radius: 10px;
    padding: 4rem;
    margin: 4rem 0;
    text-align: center;
    box-shadow: 0 0 80px rgba(220, 38, 38, 0.5);
}

.game-frame h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--blood-red);
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.game-frame iframe {
    width: 100%;
    max-width: 1000px;
    height: 700px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.page-footer {
    background: linear-gradient(to top, var(--charcoal), var(--midnight));
    border-top: 2px solid var(--blood-red);
    padding: 4rem 3rem;
    margin-top: 5rem;
    text-align: center;
}

.footer-header {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--blood-red);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

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

.footer-menu a {
    color: var(--silver);
    text-decoration: none;
    font-size: 1.15rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.footer-menu a:hover {
    color: var(--blood-red);
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.6);
}

.age-gate-modal {
    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-modal.visible {
    display: flex;
}

.age-gate-content {
    background: linear-gradient(135deg, var(--charcoal), var(--midnight));
    border: 4px solid var(--blood-red);
    border-radius: 15px;
    padding: 4rem;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 0 100px rgba(220, 38, 38, 0.7);
}

.age-gate-content h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--blood-red);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(220, 38, 38, 0.8);
}

.age-gate-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--silver);
    line-height: 2;
}

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

.age-gate-btn {
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.age-gate-btn.accept {
    background: var(--blood-red);
    color: white;
    border: 2px solid var(--blood-red);
}

.age-gate-btn.accept:hover {
    background: var(--gold);
    border: 2px solid var(--gold);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.6);
}

.age-gate-btn.decline {
    background: transparent;
    color: var(--silver);
    border: 2px solid var(--ash);
}

.age-gate-btn.decline:hover {
    background: var(--ash);
    color: var(--midnight);
    transform: scale(1.05);
}

@media (max-width: 968px) {
    .burger-menu {
        display: block;
    }

    .header-inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .brand-mark {
        font-size: 2rem;
    }

    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--charcoal);
        flex-direction: column;
        padding: 6rem 0;
        transition: right 0.3s ease;
        border-left: 3px solid var(--blood-red);
        z-index: 1000;
    }

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

    .nav-list a {
        border-left: 3px solid transparent;
        border-bottom: 1px solid var(--dark-red);
    }

    .nav-list a:hover {
        border-left: 3px solid var(--blood-red);
        border-bottom: 1px solid var(--dark-red);
    }

    .page-container {
        padding: 2rem 1.5rem;
    }

    .banner-hero {
        padding: 3rem;
    }

    .banner-hero h1 {
        font-size: 2.5rem;
    }

    .section-box {
        padding: 2.5rem;
    }

    .game-frame iframe {
        height: 450px;
    }

    .footer-menu {
        flex-direction: column;
        gap: 1.5rem;
    }

    .age-gate-content {
        margin: 2rem;
        padding: 3rem;
    }

    .age-gate-buttons {
        flex-direction: column;
    }
}
