@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;900&family=Raleway:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --burgundy: #8b1538;
    --gold: #d4a574;
    --cream: #f5f1e8;
    --dark-brown: #2d1f1a;
    --light-gold: #e8d5b7;
}

body {
    font-family: 'Raleway', sans-serif;
    background: linear-gradient(135deg, #1a0f0a 0%, #2d1f1a 50%, #1a0f0a 100%);
    color: var(--cream);
    line-height: 1.75;
    position: relative;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(212,165,116,0.05)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
}

.site-header {
    background: linear-gradient(180deg, rgba(139, 21, 56, 0.9) 0%, rgba(45, 31, 26, 0.95) 100%);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 8px 25px rgba(139, 21, 56, 0.4);
}

.header-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-name {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.logo-graphic {
    width: 55px;
    height: 55px;
}

.site-navigation ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.site-navigation a {
    color: var(--cream);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-bottom: 2px solid transparent;
}

.site-navigation a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-menu span {
    width: 30px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-area {
    max-width: 1300px;
    margin: 4rem auto 3rem;
    padding: 0 2rem;
    text-align: center;
}

h1 {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 1.2rem;
    letter-spacing: 3px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);
}

h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    letter-spacing: 2px;
}

h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--light-gold);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--light-gold);
    margin-bottom: 2rem;
    font-style: italic;
}

.content-area {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.game-section {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.3) 0%, rgba(45, 31, 26, 0.6) 100%);
    border: 3px solid var(--gold);
    border-radius: 15px;
    padding: 3rem;
    margin: 3rem auto;
    max-width: 1200px;
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.5);
}

.game-section iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.benefits-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(45, 31, 26, 0.7) 0%, rgba(139, 21, 56, 0.3) 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(212, 165, 116, 0.4);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow: 0 12px 35px rgba(212, 165, 116, 0.4);
}

.benefit-card h3 {
    margin-bottom: 1rem;
}

.notice-block {
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.4) 0%, rgba(212, 165, 116, 0.2) 100%);
    border: 2px solid var(--burgundy);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.notice-block ul {
    list-style: none;
    padding: 0;
}

.notice-block li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
}

.notice-block li::before {
    content: '🏛️';
    position: absolute;
    left: 0;
}

.page-footer {
    background: linear-gradient(180deg, rgba(45, 31, 26, 0.95) 0%, rgba(139, 21, 56, 0.9) 100%);
    padding: 3.5rem 2rem;
    margin-top: 5rem;
    border-top: 3px solid var(--gold);
}

.footer-content {
    max-width: 1300px;
    margin: 0 auto;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--cream);
    text-decoration: none;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-nav a:hover {
    color: var(--gold);
}

.age-verification {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 15, 10, 0.97);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-verification.active {
    display: flex;
}

.verification-card {
    background: linear-gradient(135deg, var(--dark-brown) 0%, rgba(139, 21, 56, 0.4) 100%);
    padding: 3.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 550px;
    border: 4px solid var(--gold);
    box-shadow: 0 20px 60px rgba(212, 165, 116, 0.5);
}

.verification-card h2 {
    margin-top: 0;
    margin-bottom: 1.5rem;
}

.verification-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.verify-btn {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.verify-btn.yes {
    background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
    color: var(--dark-brown);
}

.verify-btn.yes:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.6);
}

.verify-btn.no {
    background: #4a4a4a;
    color: white;
}

.verify-btn.no:hover {
    background: #5a5a5a;
}

.prose-section {
    background: rgba(45, 31, 26, 0.5);
    padding: 2.5rem;
    border-radius: 12px;
    margin: 2.5rem 0;
    border-left: 5px solid var(--gold);
}

.prose-section p {
    margin-bottom: 1.2rem;
}

.prose-section ul, .prose-section ol {
    margin-left: 2rem;
    margin-bottom: 1.2rem;
}

.prose-section li {
    margin-bottom: 0.6rem;
}

@media (max-width: 768px) {
    .mobile-menu {
        display: flex;
    }
    
    .site-navigation ul {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background: rgba(45, 31, 26, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 0;
        border-top: 2px solid var(--gold);
    }
    
    .site-navigation ul.active {
        left: 0;
    }
    
    .site-navigation li {
        margin: 1.2rem 0;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .benefits-layout {
        grid-template-columns: 1fr;
    }
    
    .game-section iframe {
        height: 500px;
    }
    
    .header-inner {
        padding: 0 1.5rem;
    }
    
    .content-area {
        padding: 2rem 1.5rem;
    }
    
    .hero-area {
        padding: 0 1.5rem;
        margin: 3rem auto 2rem;
    }
    
    .verification-card {
        margin: 1.5rem;
        padding: 2.5rem;
    }
    
    .verification-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .verify-btn {
        width: 100%;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
}
