@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Roboto:wght@300;400;500&display=swap');

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --crimson: #dc2626;
    --deep-red: #991b1b;
    --charcoal: #111111;
    --onyx: #1a1a1a;
    --silver: #d4d4d4;
    --gold: #d4a574;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--charcoal);
    color: var(--silver);
    line-height: 1.75;
    overflow-x: hidden;
}

.top-bar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9000;
    background: linear-gradient(180deg, rgba(17, 17, 17, 0.98), rgba(17, 17, 17, 0.9));
    border-bottom: 1px solid var(--crimson);
}

.top-bar-inner {
    max-width: 100%;
    padding: 1rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-name {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    font-size: 1.7rem;
    color: var(--crimson);
    text-decoration: none;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--crimson);
    transition: all 0.3s;
}

.navigation {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.navigation a {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--silver);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.navigation a:hover {
    color: var(--crimson);
}

.wrapper {
    padding-top: 75px;
}

.intro-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem;
    background: 
        linear-gradient(180deg, transparent 0%, rgba(220, 38, 38, 0.05) 50%, transparent 100%),
        var(--charcoal);
}

.intro-section h1 {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--silver);
    margin-bottom: 1rem;
    letter-spacing: 6px;
    text-transform: uppercase;
}

.intro-section h1 span {
    display: block;
    color: var(--crimson);
    font-size: 1.5rem;
    letter-spacing: 8px;
    margin-top: 0.5rem;
}

.intro-text {
    max-width: 750px;
    font-size: 1.15rem;
    color: rgba(212, 212, 212, 0.8);
    margin: 2rem 0;
    font-weight: 300;
}

.warning-strips {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.warning-item {
    background: rgba(220, 38, 38, 0.1);
    border: 1px solid var(--deep-red);
    padding: 1rem 2rem;
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.full-section {
    width: 100%;
    padding: 6rem 3rem;
    background: var(--onyx);
}

.full-section:nth-child(even) {
    background: var(--charcoal);
}

.section-label {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--silver);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.section-label::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: var(--crimson);
    margin: 1rem auto 0;
}

.game-frame {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: var(--charcoal);
    border: 2px solid var(--deep-red);
    box-shadow: 0 0 60px rgba(220, 38, 38, 0.15);
}

.game-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.grid-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.highlight-box {
    background: linear-gradient(180deg, rgba(220, 38, 38, 0.08), transparent);
    border: 1px solid rgba(220, 38, 38, 0.3);
    padding: 2.5rem;
    text-align: center;
}

.highlight-box .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.highlight-box h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.highlight-box p {
    font-weight: 300;
    color: rgba(212, 212, 212, 0.75);
    line-height: 1.8;
}

.text-panel {
    max-width: 1000px;
    margin: 0 auto 3rem;
    background: rgba(26, 26, 26, 0.6);
    border-left: 3px solid var(--crimson);
    padding: 2.5rem 3rem;
}

.text-panel h2 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.text-panel p {
    color: rgba(212, 212, 212, 0.85);
    margin-bottom: 1rem;
    font-weight: 300;
}

.text-panel ul {
    margin: 1rem 0 1rem 1.5rem;
    color: rgba(212, 212, 212, 0.85);
}

.text-panel li {
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    border-top: 1px solid var(--deep-red);
    padding: 3rem 2rem;
    text-align: center;
}

.help-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.help-links a {
    font-family: 'Cinzel', serif;
    color: var(--crimson);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.help-links a:hover {
    color: var(--gold);
}

.bottom-text {
    color: rgba(212, 212, 212, 0.5);
    font-size: 0.85rem;
    font-weight: 300;
}

.verify-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.verify-box {
    background: linear-gradient(180deg, var(--onyx), var(--charcoal));
    border: 2px solid var(--crimson);
    padding: 3.5rem;
    text-align: center;
    max-width: 520px;
    margin: 1rem;
}

.verify-box h2 {
    font-family: 'Cinzel', serif;
    color: var(--crimson);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.verify-box p {
    color: rgba(212, 212, 212, 0.8);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.verify-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.verify-btn {
    font-family: 'Cinzel', serif;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.verify-btn.accept {
    background: var(--crimson);
    color: white;
}

.verify-btn.decline {
    background: transparent;
    border: 1px solid var(--silver);
    color: var(--silver);
}

.verify-btn:hover {
    transform: scale(1.05);
}

.gone {
    display: none !important;
}

.page-banner {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(220, 38, 38, 0.1), transparent);
}

.page-banner h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: var(--crimson);
    letter-spacing: 4px;
    text-transform: uppercase;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.legal-text h2 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin: 2.5rem 0 1rem;
    font-size: 1.3rem;
    letter-spacing: 2px;
}

.legal-text p {
    color: rgba(212, 212, 212, 0.85);
    margin-bottom: 1rem;
    font-weight: 300;
    line-height: 1.9;
}

.play-info {
    background: rgba(220, 38, 38, 0.1);
    border-left: 3px solid var(--crimson);
    padding: 1.5rem 2rem;
    margin: 2rem auto;
    max-width: 1100px;
}

.play-info strong {
    color: var(--gold);
}

@media (max-width: 1024px) {
    .grid-three {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(17, 17, 17, 0.98);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0;
        display: none;
        border-bottom: 1px solid var(--crimson);
    }

    .navigation.visible {
        display: flex;
    }

    .navigation li {
        padding: 1rem;
        border-bottom: 1px solid rgba(220, 38, 38, 0.2);
    }

    .intro-section h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .intro-section h1 span {
        font-size: 1rem;
    }

    .warning-strips {
        flex-direction: column;
        align-items: center;
    }

    .section-label {
        font-size: 1.6rem;
    }

    .verify-buttons {
        flex-direction: column;
    }

    .verify-btn {
        width: 100%;
    }

    .full-section {
        padding: 4rem 1.5rem;
    }
}
