@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Crimson+Text:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blood-red: #8b0000;
    --crimson: #c41e3a;
    --deep-black: #0a0000;
    --charcoal: #1a1a1a;
    --ivory: #fffff0;
    --gold-accent: #ffd700;
}

body {
    font-family: 'Crimson Text', serif;
    background: #0a0000;
    color: var(--ivory);
    line-height: 1.8;
    font-size: 18px;
}

.top-bar {
    background: linear-gradient(90deg, var(--blood-red) 0%, var(--crimson) 100%);
    padding: 0.5rem 2rem;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 2px solid var(--gold-accent);
}

header {
    background: var(--charcoal);
    padding: 2rem;
    border-bottom: 3px solid var(--blood-red);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(139, 0, 0, 0.5);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--crimson);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-emblem {
    width: 55px;
    height: 55px;
    border: 3px solid var(--crimson);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold-accent);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    font-family: 'Cinzel', serif;
    color: var(--ivory);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    position: relative;
    padding-bottom: 5px;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--crimson);
    transition: all 0.3s;
    transform: translateX(-50%);
}

nav a:hover {
    color: var(--crimson);
}

nav a:hover::before {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--crimson);
    border-radius: 2px;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.banner {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.3), rgba(196, 30, 58, 0.3));
    border: 2px solid var(--blood-red);
    border-radius: 0;
    padding: 4rem 3rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.banner::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid var(--crimson);
    pointer-events: none;
}

.banner h1 {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    color: var(--crimson);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.banner p {
    font-size: 1.4rem;
    color: var(--ivory);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

.warning-block {
    background: rgba(139, 0, 0, 0.2);
    border: 3px double var(--crimson);
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.warning-block h2 {
    font-family: 'Cinzel', serif;
    color: var(--gold-accent);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.warning-list {
    list-style: none;
}

.warning-list li {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.5);
    border-left: 5px solid var(--blood-red);
    font-weight: 600;
    font-size: 1.1rem;
}

.content-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.column-box {
    background: var(--charcoal);
    padding: 2.5rem;
    border: 2px solid var(--blood-red);
    transition: all 0.3s;
}

.column-box:hover {
    border-color: var(--crimson);
    box-shadow: 0 0 30px rgba(196, 30, 58, 0.3);
    transform: translateY(-5px);
}

.column-box h3 {
    font-family: 'Cinzel', serif;
    color: var(--crimson);
    font-size: 1.7rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
}

.game-area {
    background: var(--charcoal);
    border: 3px solid var(--blood-red);
    padding: 3rem;
    margin-bottom: 3rem;
}

.game-area h2 {
    font-family: 'Cinzel', serif;
    color: var(--gold-accent);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.game-frame {
    width: 100%;
    height: 650px;
    border: 2px solid var(--crimson);
    background: #000;
}

.text-area {
    background: var(--charcoal);
    border: 2px solid var(--blood-red);
    padding: 3.5rem;
    margin-bottom: 2rem;
}

.text-area h1 {
    font-family: 'Cinzel', serif;
    color: var(--crimson);
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.text-area h2 {
    font-family: 'Cinzel', serif;
    color: var(--gold-accent);
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.text-area p {
    margin-bottom: 1.3rem;
    color: var(--ivory);
}

.text-area ul {
    margin: 1.5rem 0 1.5rem 2.5rem;
}

.text-area li {
    margin-bottom: 0.8rem;
}

footer {
    background: var(--charcoal);
    border-top: 3px solid var(--blood-red);
    padding: 2.5rem 2rem;
    margin-top: 4rem;
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-nav a {
    font-family: 'Cinzel', serif;
    color: var(--crimson);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--gold-accent);
}

.age-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 0, 0, 0.98);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-popup.active {
    display: flex;
}

.age-popup-box {
    background: var(--charcoal);
    border: 5px double var(--crimson);
    padding: 3.5rem;
    max-width: 550px;
    text-align: center;
    position: relative;
}

.age-popup-box::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid var(--blood-red);
    pointer-events: none;
}

.age-popup-box h2 {
    font-family: 'Cinzel', serif;
    color: var(--gold-accent);
    font-size: 2.3rem;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.age-popup-box p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    color: var(--ivory);
}

.age-options {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.age-btn {
    font-family: 'Cinzel', serif;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border: 2px solid;
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.age-btn.confirm {
    background: var(--blood-red);
    border-color: var(--crimson);
    color: var(--ivory);
}

.age-btn.confirm:hover {
    background: var(--crimson);
    box-shadow: 0 0 20px rgba(196, 30, 58, 0.6);
}

.age-btn.decline {
    background: transparent;
    border-color: #666;
    color: #999;
}

.age-btn.decline:hover {
    background: #333;
    border-color: #888;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        position: fixed;
        top: 140px;
        left: -100%;
        width: 100%;
        background: var(--charcoal);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s;
        border-bottom: 3px solid var(--blood-red);
    }

    nav ul.active {
        left: 0;
    }

    .banner h1 {
        font-size: 2.5rem;
    }

    .content-columns {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: 450px;
    }

    .text-area {
        padding: 2rem 1.5rem;
    }
}
