@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Lato:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4af37;
    --dark-gold: #b8941f;
    --cream: #f5f5dc;
    --navy: #1e2a3a;
    --charcoal: #2c3e50;
    --light-gray: #ecf0f1;
    --white: #ffffff;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(to bottom, #1e2a3a 0%, #2c3e50 100%);
    color: var(--light-gray);
    line-height: 1.8;
}

.top-bar {
    background: rgba(30, 42, 58, 0.98);
    border-bottom: 4px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 1.8rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 4px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.primary-nav ul {
    display: flex;
    list-style: none;
    gap: 3.5rem;
}

.primary-nav a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
}

.primary-nav a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 7px;
    cursor: pointer;
}

.nav-toggle span {
    width: 32px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.content-wrapper {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
    padding: 3rem 4rem;
}

.hero-banner {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(44, 62, 80, 0.3) 100%);
    border: 3px solid var(--gold);
    border-radius: 15px;
    padding: 6rem 4rem;
    text-align: center;
    margin-bottom: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-banner h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 2rem;
    line-height: 1.3;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
}

.hero-banner p {
    font-size: 1.4rem;
    max-width: 950px;
    margin: 0 auto;
    color: var(--cream);
    line-height: 1.9;
}

.info-banner {
    background: rgba(212, 175, 55, 0.12);
    border: 2px solid var(--dark-gold);
    border-radius: 12px;
    padding: 3.5rem;
    margin: 3rem 0;
    text-align: center;
}

.info-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.info-banner ul {
    list-style: none;
    max-width: 1000px;
    margin: 0 auto;
}

.info-banner li {
    font-size: 1.25rem;
    margin: 1.8rem 0;
    padding: 1.3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 5px solid var(--gold);
    color: var(--cream);
}

.game-wrapper {
    background: rgba(30, 42, 58, 0.6);
    border-radius: 15px;
    padding: 3rem;
    margin: 4rem 0;
    border: 2px solid var(--dark-gold);
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.4);
}

.game-wrapper iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin: 4rem 0;
}

.feature-box {
    background: rgba(44, 62, 80, 0.7);
    border: 2px solid var(--dark-gold);
    border-radius: 12px;
    padding: 3.5rem 2.5rem;
    transition: all 0.4s ease;
}

.feature-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 45px rgba(212, 175, 55, 0.25);
    border-color: var(--gold);
}

.feature-box h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.feature-box p {
    color: var(--light-gray);
    line-height: 1.9;
    font-size: 1.08rem;
}

.prose-section {
    background: rgba(44, 62, 80, 0.5);
    border-radius: 12px;
    padding: 4.5rem 4rem;
    margin: 3rem 0;
}

.prose-section h1,
.prose-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-bottom: 2rem;
}

.prose-section h1 {
    font-size: 3.5rem;
    font-weight: 900;
}

.prose-section h2 {
    font-size: 2.3rem;
    margin-top: 3.5rem;
    font-weight: 700;
}

.prose-section p {
    margin-bottom: 1.8rem;
    color: var(--light-gray);
    line-height: 2;
    font-size: 1.12rem;
}

.bottom-bar {
    background: rgba(30, 42, 58, 0.98);
    border-top: 4px solid var(--gold);
    padding: 4rem 4rem;
    margin-top: 5rem;
}

.footer-wrapper {
    max-width: 1500px;
    margin: 0 auto;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gold);
    text-decoration: none;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: var(--cream);
}

.footer-wrapper p {
    color: var(--light-gray);
    font-size: 1.05rem;
}

.age-gate {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.96);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-gate.visible {
    display: flex;
}

.gate-content {
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--navy) 100%);
    border: 4px solid var(--gold);
    border-radius: 15px;
    padding: 4.5rem 4rem;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 0 70px rgba(212, 175, 55, 0.4);
}

.gate-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 900;
}

.gate-content p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--cream);
    line-height: 1.8;
}

.gate-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.gate-btn {
    padding: 1.3rem 4rem;
    font-size: 1.2rem;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.gate-btn.accept {
    background: var(--gold);
    color: var(--navy);
}

.gate-btn.accept:hover {
    background: var(--dark-gold);
    transform: scale(1.06);
}

.gate-btn.reject {
    background: transparent;
    color: var(--cream);
    border: 2px solid var(--cream);
}

.gate-btn.reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .primary-nav ul {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: rgba(30, 42, 58, 0.99);
        width: 100%;
        text-align: center;
        transition: 0.4s;
        padding: 3rem 0;
        gap: 2rem;
        border-top: 3px solid var(--gold);
    }

    .primary-nav ul.active {
        left: 0;
    }

    .nav-container {
        padding: 1.2rem 2rem;
    }

    .site-logo {
        font-size: 2rem;
    }

    .hero-banner h1 {
        font-size: 2.8rem;
    }

    .hero-banner p {
        font-size: 1.15rem;
    }

    .hero-banner {
        padding: 3.5rem 2rem;
    }

    .content-wrapper {
        padding: 2rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .game-wrapper iframe {
        height: 450px;
    }

    .prose-section {
        padding: 2.5rem 2rem;
    }

    .prose-section h1 {
        font-size: 2.3rem;
    }

    .gate-content {
        margin: 0 2rem;
        padding: 3rem 2.5rem;
    }

    .gate-buttons {
        flex-direction: column;
    }
}
