@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;900&family=Lora:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --burgundy: #722f37;
    --cream: #faf8f5;
    --charcoal: #1a1a1a;
    --forest: #1e3a2f;
}

body {
    font-family: 'Lora', serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.8;
}

header {
    background: linear-gradient(to right, var(--charcoal), var(--forest));
    padding: 0.8rem 3rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo svg {
    width: 55px;
    height: 55px;
}

.logo-text {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: var(--gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: var(--gold);
    transition: 0.3s;
}

.hero-banner {
    background: linear-gradient(135deg, var(--forest) 0%, var(--charcoal) 50%, var(--burgundy) 100%);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
}

.hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-banner h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
}

.hero-banner p {
    font-size: 1.3rem;
    color: var(--cream);
    max-width: 850px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.badge-row {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.badge {
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid var(--gold);
    padding: 1.2rem 2rem;
    border-radius: 4px;
    min-width: 220px;
}

.badge h4 {
    font-family: 'Cinzel', serif;
    color: var(--gold-light);
    font-size: 1rem;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge p {
    color: var(--cream);
    font-size: 0.95rem;
    margin: 0;
}

.game-area {
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--forest) 100%);
    padding: 5rem 2rem;
}

.game-area h2 {
    font-family: 'Cinzel', serif;
    text-align: center;
    font-size: 2.4rem;
    color: var(--gold);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.game-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    border: 4px solid var(--gold);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.game-wrapper iframe {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
    background: #000;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    max-width: 1600px;
    margin: 0 auto;
}

.info-card {
    padding: 4rem 3rem;
    text-align: center;
}

.info-card:nth-child(1) {
    background: var(--burgundy);
    color: var(--cream);
}

.info-card:nth-child(2) {
    background: var(--forest);
    color: var(--cream);
}

.info-card:nth-child(3) {
    background: var(--charcoal);
    color: var(--cream);
}

.info-card .icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.info-card p {
    font-size: 1.05rem;
    line-height: 1.9;
}

.text-section {
    padding: 5rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.text-section h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: var(--burgundy);
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 3px solid var(--gold);
    padding-bottom: 1rem;
}

.text-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: var(--forest);
    margin: 2.5rem 0 1rem;
}

.text-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--charcoal);
}

.text-section ul {
    margin: 1rem 0 1.5rem 2.5rem;
}

.text-section li {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.about-block {
    background: var(--cream);
    padding: 5rem 2rem;
}

.about-block .inner {
    max-width: 1100px;
    margin: 0 auto;
}

.about-block h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: var(--burgundy);
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-block p {
    font-size: 1.15rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1.5rem;
}

footer {
    background: var(--charcoal);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 4px solid var(--gold);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gold);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold-light);
}

footer p {
    color: var(--cream);
    font-size: 0.9rem;
    opacity: 0.8;
}

.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 26, 0.97);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-gate.hidden {
    display: none;
}

.age-gate-box {
    background: linear-gradient(145deg, var(--forest), var(--charcoal));
    border: 3px solid var(--gold);
    padding: 3.5rem;
    text-align: center;
    max-width: 480px;
    margin: 1rem;
}

.age-gate-box h2 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.age-gate-box p {
    color: var(--cream);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.age-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-btn {
    padding: 0.9rem 2.5rem;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.age-btn.confirm {
    background: var(--gold);
    color: var(--charcoal);
}

.age-btn.confirm:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
}

.age-btn.deny {
    background: transparent;
    border: 2px solid var(--cream);
    color: var(--cream);
}

.age-btn.deny:hover {
    background: var(--cream);
    color: var(--charcoal);
}

.play-section {
    padding: 3rem 2rem;
    background: var(--forest);
}

.play-section h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 1rem;
}

.play-hint {
    text-align: center;
    color: var(--cream);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

@media (max-width: 900px) {
    .info-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background: var(--charcoal);
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        gap: 1.5rem;
        border-top: 2px solid var(--gold);
        transform: translateX(-100%);
        transition: transform 0.4s;
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .hero-banner h1 {
        font-size: 2rem;
    }
    
    .hero-banner p {
        font-size: 1.05rem;
    }
    
    .badge-row {
        flex-direction: column;
        align-items: center;
    }
    
    .game-wrapper iframe {
        height: 400px;
    }
    
    header {
        padding: 0.8rem 1.5rem;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .age-actions {
        flex-direction: column;
    }
}
