@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Lato:wght@300;400;700&display=swap');

:root {
    --gold: #d4af37;
    --dark-purple: #2d1b4e;
    --deep-violet: #1a0f2e;
    --cream: #faf8f0;
    --rose: #9d4a75;
    --shadow-dark: rgba(26, 15, 46, 0.8);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--deep-violet);
    color: var(--cream);
    min-height: 100vh;
}

/* Header */
.site-header {
    background: linear-gradient(180deg, var(--dark-purple) 0%, transparent 100%);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

.header-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 4px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-line {
    display: block;
    width: 30px;
    height: 2px;
    background: var(--gold);
    margin: 6px 0;
    transition: 0.3s;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-nav a {
    color: var(--cream);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.main-nav a:hover {
    color: var(--gold);
}

.main-nav a:hover::after {
    width: 100%;
}

/* Hero Banner */
.hero-banner {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 150px 30px 80px;
    background: 
        radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(157, 74, 117, 0.15) 0%, transparent 50%),
        var(--deep-violet);
}

.hero-banner h1 {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 30px;
    text-shadow: 0 4px 30px rgba(212, 175, 55, 0.4);
    letter-spacing: 3px;
}

.hero-banner .tagline {
    font-size: 1.4rem;
    max-width: 800px;
    line-height: 1.8;
    opacity: 0.9;
    margin-bottom: 50px;
}

.legal-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.badge {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--gold);
    padding: 15px 30px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Game Display */
.game-display {
    padding: 80px 30px;
    background: linear-gradient(180deg, var(--deep-violet) 0%, var(--dark-purple) 50%, var(--deep-violet) 100%);
}

.game-frame-container {
    max-width: 1100px;
    margin: 0 auto;
    border: 3px solid var(--gold);
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.2), inset 0 0 60px rgba(0, 0, 0, 0.5);
}

.game-frame-container iframe {
    display: block;
    width: 100%;
    height: 650px;
    border: none;
}

/* Content Blocks */
.content-area {
    padding: 100px 30px;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

.card-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.info-tile {
    background: linear-gradient(135deg, rgba(45, 27, 78, 0.9) 0%, rgba(26, 15, 46, 0.9) 100%);
    padding: 40px;
    border-left: 3px solid var(--gold);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.info-tile h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.info-tile p {
    line-height: 1.9;
    opacity: 0.85;
}

/* Highlights */
.highlights-section {
    background: var(--dark-purple);
    padding: 80px 30px;
}

.highlight-strip {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.highlight-box {
    text-align: center;
    padding: 30px;
}

.highlight-box .icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.highlight-box span {
    display: block;
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 700;
}

/* Page Layout */
.page-wrapper {
    padding: 140px 30px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-wrapper h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 40px;
    letter-spacing: 2px;
}

.page-wrapper h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--rose);
    margin: 40px 0 20px;
}

.page-wrapper p {
    line-height: 1.9;
    margin-bottom: 20px;
    opacity: 0.9;
    font-size: 1.1rem;
}

.page-wrapper ul {
    margin: 20px 0 30px 25px;
}

.page-wrapper li {
    margin-bottom: 12px;
    line-height: 1.7;
}

/* Site Footer */
.site-footer {
    background: var(--dark-purple);
    padding: 60px 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-inner h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold);
    margin-bottom: 25px;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.help-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.help-links a {
    color: var(--cream);
    text-decoration: none;
    opacity: 0.7;
    transition: all 0.3s;
}

.help-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.copyright-text {
    opacity: 0.6;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

/* Age Gate */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(26, 15, 46, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-gate.dismissed {
    display: none;
}

.age-gate-box {
    background: var(--dark-purple);
    border: 2px solid var(--gold);
    padding: 60px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 0 100px rgba(212, 175, 55, 0.3);
}

.age-gate-box h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.age-gate-box p {
    margin-bottom: 35px;
    line-height: 1.8;
    opacity: 0.9;
}

.gate-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.gate-btn {
    padding: 18px 50px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Lato', sans-serif;
}

.gate-btn.confirm {
    background: var(--gold);
    color: var(--deep-violet);
}

.gate-btn.deny {
    background: transparent;
    border: 1px solid var(--cream);
    color: var(--cream);
}

.gate-btn:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
    .card-row {
        grid-template-columns: 1fr;
    }
    
    .hero-banner h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--dark-purple);
        padding: 30px;
        transform: translateX(-100%);
        transition: transform 0.3s;
    }

    .main-nav.open {
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 25px;
    }

    .legal-badges {
        flex-direction: column;
        align-items: center;
    }

    .game-frame-container iframe {
        height: 450px;
    }

    .highlight-strip {
        flex-direction: column;
        align-items: center;
    }

    .age-gate-box {
        margin: 20px;
        padding: 40px 30px;
    }

    .gate-buttons {
        flex-direction: column;
    }

    .page-wrapper h1 {
        font-size: 2rem;
    }
}
