@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Quicksand:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --crimson: #8b0000;
    --dark-red: #4a0000;
    --gold: #ffd700;
    --cream: #f5f0e6;
    --dark-bg: #1a0808;
    --maroon: #2d0f0f;
}

body {
    font-family: 'Quicksand', sans-serif;
    background: var(--dark-bg);
    color: var(--cream);
    line-height: 1.75;
    font-weight: 400;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
}

.top-bar {
    background: linear-gradient(to right, var(--dark-red), var(--maroon), var(--dark-red));
    border-bottom: 3px solid var(--gold);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 5000;
    padding: 1.2rem 1.5rem;
}

.top-bar-inner {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.menu-btn {
    display: none;
    background: transparent;
    border: 2px solid var(--gold);
    border-radius: 4px;
    padding: 8px 12px;
    cursor: pointer;
}

.menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    margin: 5px 0;
    transition: 0.3s;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--gold);
}

.wrapper {
    padding-top: 85px;
}

.mystical-hero {
    background: radial-gradient(ellipse at center, var(--maroon) 0%, var(--dark-bg) 100%);
    padding: 6rem 2rem;
    text-align: center;
    position: relative;
}

.mystical-hero::before {
    content: '✦';
    position: absolute;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: var(--gold);
    opacity: 0.6;
}

.mystical-hero h1 {
    font-size: 3.2rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.mystical-hero .tagline {
    font-size: 1.3rem;
    color: var(--cream);
    opacity: 0.9;
    max-width: 750px;
    margin: 0 auto;
    font-weight: 300;
}

.warnings-row {
    background: var(--maroon);
    padding: 3rem 2rem;
    border-top: 1px solid var(--crimson);
    border-bottom: 1px solid var(--crimson);
}

.warnings-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.warning-item {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.warning-item .symbol {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.warning-item h3 {
    color: var(--gold);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.warning-item p {
    color: var(--cream);
    opacity: 0.8;
    font-size: 0.95rem;
    font-weight: 300;
}

.game-showcase {
    padding: 5rem 2rem;
    background: var(--dark-bg);
}

.game-showcase h2 {
    text-align: center;
    color: var(--gold);
    font-size: 2.4rem;
    margin-bottom: 3rem;
}

.game-embed {
    max-width: 1150px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--crimson), var(--dark-red));
    padding: 8px;
    border-radius: 20px;
    box-shadow: 0 0 80px rgba(139, 0, 0, 0.4);
}

.game-embed iframe {
    width: 100%;
    height: 680px;
    border: none;
    border-radius: 14px;
    display: block;
}

.benefits-area {
    padding: 5rem 2rem;
    background: linear-gradient(180deg, var(--maroon) 0%, var(--dark-bg) 100%);
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-tile {
    background: rgba(139, 0, 0, 0.2);
    border: 1px solid var(--crimson);
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.benefit-tile:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
}

.benefit-tile .glyph {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.benefit-tile h3 {
    color: var(--gold);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.benefit-tile p {
    font-weight: 300;
    opacity: 0.85;
}

.text-page {
    padding: 5rem 2rem;
    max-width: 950px;
    margin: 0 auto;
}

.text-page h1 {
    color: var(--gold);
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 3rem;
}

.text-page h2 {
    color: var(--gold);
    font-size: 1.5rem;
    margin: 2.5rem 0 1rem;
}

.text-page p {
    margin-bottom: 1rem;
    font-weight: 300;
}

.text-page ul {
    margin: 1rem 0 1rem 2rem;
    font-weight: 300;
}

.text-page li {
    margin-bottom: 0.5rem;
}

.game-instructions {
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid var(--gold);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
}

.game-instructions p {
    margin: 0.5rem 0;
}

.bottom-footer {
    background: var(--dark-red);
    border-top: 3px solid var(--gold);
    padding: 3rem 2rem;
    text-align: center;
}

.responsible-section {
    margin-bottom: 1.5rem;
}

.responsible-section h4 {
    color: var(--gold);
    font-family: 'Cinzel', serif;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.responsible-section a {
    color: var(--cream);
    text-decoration: none;
    margin: 0 1rem;
    transition: color 0.3s;
}

.responsible-section a:hover {
    color: var(--gold);
}

.copyright-text {
    color: var(--cream);
    opacity: 0.7;
    font-size: 0.85rem;
}

/* Age Gate */
.age-gate {
    position: fixed;
    inset: 0;
    background: rgba(26, 8, 8, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50000;
}

.age-gate.hidden {
    display: none;
}

.age-gate-box {
    background: linear-gradient(135deg, var(--maroon), var(--dark-red));
    border: 3px solid var(--gold);
    border-radius: 24px;
    padding: 3.5rem;
    max-width: 520px;
    margin: 1rem;
    text-align: center;
}

.age-gate-box h2 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.age-gate-box p {
    margin-bottom: 2rem;
    font-weight: 300;
}

.gate-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.gate-btn {
    padding: 1rem 2.5rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.gate-btn.accept {
    background: var(--gold);
    color: var(--dark-bg);
}

.gate-btn.accept:hover {
    background: #fff;
}

.gate-btn.decline {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

.gate-btn.decline:hover {
    background: rgba(255, 215, 0, 0.15);
}

.decline-msg {
    display: none;
    margin-top: 1.5rem;
    color: #ff6666;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark-red);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        display: none;
        border-bottom: 2px solid var(--gold);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem;
    }
    
    .mystical-hero h1 {
        font-size: 2.2rem;
    }
    
    .game-embed iframe {
        height: 480px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .gate-buttons {
        flex-direction: column;
    }
}
