@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4a535;
    --deep-amber: #b8860b;
    --cream: #fdf8e8;
    --charcoal: #1a1a1a;
    --warm-black: #0f0e0c;
    --bronze: #cd7f32;
}

body {
    font-family: 'Raleway', sans-serif;
    background: var(--warm-black);
    color: var(--cream);
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--bronze);
}

/* Header */
.top-header {
    background: linear-gradient(to right, var(--charcoal), var(--warm-black), var(--charcoal));
    border-bottom: 3px solid var(--gold);
    padding: 0.8rem 1.5rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    width: 48px;
    height: 48px;
}

.brand-name {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger div {
    width: 26px;
    height: 2px;
    background: var(--gold);
    margin: 6px 0;
    transition: 0.4s;
}

.hamburger.open div:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger.open div:nth-child(2) {
    opacity: 0;
}

.hamburger.open div:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--cream);
    position: relative;
    padding-bottom: 5px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Page Content */
.page-wrapper {
    padding-top: 80px;
}

.section-full {
    width: 100%;
    padding: 4rem 2rem;
}

.container-wide {
    max-width: 1600px;
    margin: 0 auto;
}

/* Welcome Banner */
.welcome-banner {
    background: radial-gradient(ellipse at center, rgba(212, 165, 53, 0.15) 0%, transparent 70%);
    text-align: center;
    padding: 5rem 2rem;
}

.welcome-banner h1 {
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.welcome-banner .tagline {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

/* Feature Strips */
.feature-strip {
    display: flex;
    width: 100%;
    border-top: 1px solid rgba(212, 165, 53, 0.3);
    border-bottom: 1px solid rgba(212, 165, 53, 0.3);
}

.feature-item {
    flex: 1;
    padding: 2.5rem 2rem;
    text-align: center;
    border-right: 1px solid rgba(212, 165, 53, 0.2);
    transition: background 0.3s;
}

.feature-item:last-child {
    border-right: none;
}

.feature-item:hover {
    background: rgba(212, 165, 53, 0.08);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.feature-item p {
    font-size: 0.95rem;
    color: rgba(253, 248, 232, 0.8);
}

/* Game Display */
.game-display {
    background: var(--charcoal);
    padding: 3rem;
}

.game-display h2 {
    text-align: center;
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.game-frame {
    max-width: 1100px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    background: #000;
    border: 4px solid var(--deep-amber);
    border-radius: 8px;
    overflow: hidden;
}

.game-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Two Column Layout */
.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem 2rem;
    max-width: 1600px;
    margin: 0 auto;
}

.col-box {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(15, 14, 12, 0.9));
    border: 1px solid rgba(212, 165, 53, 0.3);
    padding: 2.5rem;
    border-radius: 4px;
}

.col-box h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(212, 165, 53, 0.3);
}

/* Article Content */
.article-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem;
    background: var(--charcoal);
    border-left: 4px solid var(--gold);
}

.article-content h1 {
    color: var(--gold);
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.article-content h2 {
    color: var(--bronze);
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
}

.article-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.article-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.article-content li {
    margin-bottom: 0.6rem;
}

/* Footer */
.bottom-footer {
    background: var(--charcoal);
    border-top: 3px solid var(--gold);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-title {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.help-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.help-links a {
    color: var(--cream);
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--gold);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.help-links a:hover {
    background: var(--gold);
    color: var(--warm-black);
}

.copyright {
    color: rgba(253, 248, 232, 0.5);
    font-size: 0.85rem;
}

/* Age Gate */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-gate-modal {
    background: var(--charcoal);
    border: 2px solid var(--gold);
    padding: 3.5rem;
    text-align: center;
    max-width: 480px;
    margin: 1rem;
}

.age-gate-modal h2 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1.25rem;
}

.age-gate-modal p {
    margin-bottom: 2rem;
    line-height: 1.7;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-buttons button {
    padding: 0.9rem 2.5rem;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.btn-confirm {
    background: var(--gold);
    color: var(--warm-black);
}

.btn-confirm:hover {
    background: var(--bronze);
}

.btn-deny {
    background: transparent;
    color: var(--cream);
    border: 1px solid rgba(253, 248, 232, 0.3);
}

.btn-deny:hover {
    border-color: var(--cream);
}

.hidden {
    display: none !important;
}

/* Responsive */
@media (max-width: 900px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 75%;
        height: 100vh;
        background: var(--charcoal);
        transition: left 0.3s;
        padding-top: 100px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        padding: 2rem;
        gap: 0;
    }

    .nav-menu li {
        border-bottom: 1px solid rgba(212, 165, 53, 0.2);
    }

    .nav-menu a {
        display: block;
        padding: 1.2rem 0;
    }

    .feature-strip {
        flex-direction: column;
    }

    .feature-item {
        border-right: none;
        border-bottom: 1px solid rgba(212, 165, 53, 0.2);
    }

    .two-cols {
        grid-template-columns: 1fr;
    }

    .welcome-banner h1 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .brand-name {
        font-size: 1.2rem;
    }

    .section-full {
        padding: 2rem 1rem;
    }

    .article-content {
        padding: 1.5rem;
    }

    .game-display {
        padding: 1.5rem;
    }

    .age-gate-modal {
        padding: 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }
}
