@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@300;400;500;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
    --burgundy: #722f37;
    --gold: #d4af37;
    --cream: #fffef7;
    --charcoal: #2c2c2c;
    --light-gray: #f5f4f0;
    --text-dark: #1a1a1a;
    --text-muted: #6b6b6b;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: 'Lato', sans-serif; background: var(--cream); color: var(--text-dark); line-height: 1.8; }

header { background: var(--charcoal); position: sticky; top: 0; z-index: 1000; }

.site-header { max-width: 1400px; margin: 0 auto; padding: 1.2rem 2rem; display: flex; justify-content: space-between; align-items: center; }

.brand { font-family: 'Crimson Pro', serif; font-size: 2rem; color: var(--gold); text-decoration: none; font-weight: 600; letter-spacing: 2px; }

.main-nav { display: flex; gap: 2.5rem; }

.main-nav a { color: var(--cream); text-decoration: none; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; transition: color 0.3s; }

.main-nav a:hover { color: var(--gold); }

.burger { display: none; cursor: pointer; flex-direction: column; gap: 6px; }

.burger span { width: 28px; height: 2px; background: var(--gold); transition: 0.3s; }

.burger.open span:first-child { transform: rotate(45deg) translate(6px, 6px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:last-child { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-menu { display: none; position: fixed; top: 70px; left: 0; width: 100%; background: var(--charcoal); padding: 2rem; z-index: 999; }

.mobile-menu.open { display: block; }

.mobile-menu a { display: block; color: var(--cream); text-decoration: none; padding: 1rem 0; border-bottom: 1px solid rgba(212, 175, 55, 0.2); font-size: 1.1rem; }

.intro { padding: 100px 2rem 80px; text-align: center; background: linear-gradient(180deg, var(--charcoal) 0%, var(--burgundy) 100%); }

.intro-content { max-width: 800px; margin: 0 auto; }

.intro .label { color: var(--gold); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 1rem; }

.intro h1 { font-family: 'Crimson Pro', serif; font-size: clamp(2.5rem, 6vw, 4rem); color: var(--cream); margin-bottom: 1.5rem; font-weight: 500; }

.intro p { color: rgba(255, 255, 255, 0.8); font-size: 1.1rem; margin-bottom: 2.5rem; }

.intro-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-gold { background: var(--gold); color: var(--charcoal); padding: 1rem 2.5rem; text-decoration: none; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; transition: all 0.3s; }

.btn-gold:hover { background: #e8c547; transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--gold); padding: 1rem 2.5rem; text-decoration: none; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; border: 2px solid var(--gold); transition: all 0.3s; }

.btn-outline:hover { background: var(--gold); color: var(--charcoal); }

.info-strip { background: var(--light-gray); padding: 4rem 2rem; }

.info-boxes { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.info-box { text-align: center; padding: 2rem; }

.info-box .symbol { font-size: 2.5rem; margin-bottom: 1rem; }

.info-box h3 { font-family: 'Crimson Pro', serif; color: var(--burgundy); font-size: 1.3rem; margin-bottom: 0.5rem; }

.info-box p { color: var(--text-muted); font-size: 0.95rem; }

.game-showcase { padding: 5rem 2rem; background: var(--cream); }

.showcase-header { text-align: center; margin-bottom: 3rem; }

.showcase-header h2 { font-family: 'Crimson Pro', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--burgundy); }

.showcase-header p { color: var(--text-muted); margin-top: 0.5rem; }

.game-frame { max-width: 1100px; margin: 0 auto; background: var(--charcoal); padding: 1.5rem; border: 3px solid var(--gold); }

.game-frame iframe { width: 100%; height: 600px; border: none; display: block; }

.highlights { padding: 5rem 2rem; background: var(--burgundy); }

.highlights-header { text-align: center; margin-bottom: 3rem; }

.highlights-header h2 { font-family: 'Crimson Pro', serif; color: var(--gold); font-size: 2rem; }

.highlights-grid { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

.highlight { text-align: center; }

.highlight .h-icon { font-size: 2rem; margin-bottom: 0.8rem; }

.highlight h4 { color: var(--cream); font-size: 1rem; margin-bottom: 0.3rem; }

.highlight p { color: rgba(255, 255, 255, 0.7); font-size: 0.85rem; }

footer { background: var(--charcoal); padding: 4rem 2rem 2rem; }

.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }

.footer-about .brand { display: inline-block; margin-bottom: 1rem; }

.footer-about p { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }

.footer-links h5 { color: var(--gold); margin-bottom: 1rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

.footer-links a { display: block; color: rgba(255, 255, 255, 0.6); text-decoration: none; margin-bottom: 0.5rem; font-size: 0.9rem; }

.footer-links a:hover { color: var(--gold); }

.footer-resources h5 { color: var(--gold); margin-bottom: 1rem; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; }

.footer-resources a { display: inline-block; background: var(--burgundy); color: var(--cream); padding: 0.4rem 0.8rem; text-decoration: none; font-size: 0.8rem; margin: 0.2rem; }

.footer-bottom { border-top: 1px solid rgba(212, 175, 55, 0.2); padding-top: 2rem; text-align: center; color: rgba(255, 255, 255, 0.5); font-size: 0.85rem; }

#ageModal { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.95); display: flex; align-items: center; justify-content: center; z-index: 10000; }

#ageModal.hidden { display: none; }

.age-dialog { background: var(--charcoal); padding: 3.5rem; max-width: 480px; text-align: center; border: 2px solid var(--gold); }

.age-dialog .d-icon { font-size: 3rem; margin-bottom: 1.5rem; }

.age-dialog h2 { font-family: 'Crimson Pro', serif; color: var(--gold); font-size: 1.8rem; margin-bottom: 1rem; }

.age-dialog p { color: rgba(255, 255, 255, 0.7); margin-bottom: 2rem; }

.age-btns { display: flex; gap: 1rem; justify-content: center; }

.age-btns button { padding: 0.8rem 2rem; font-size: 0.9rem; cursor: pointer; border: none; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }

#ageYes { background: var(--gold); color: var(--charcoal); }

#ageNo { background: transparent; border: 2px solid var(--cream) !important; color: var(--cream); }

.page-main { padding: 100px 2rem 60px; min-height: 70vh; background: var(--light-gray); }

.page-container { max-width: 900px; margin: 0 auto; }

.page-heading { font-family: 'Crimson Pro', serif; font-size: clamp(2rem, 5vw, 2.8rem); color: var(--burgundy); text-align: center; margin-bottom: 3rem; }

.text-section { background: var(--cream); padding: 2rem; margin-bottom: 1.5rem; border-left: 4px solid var(--gold); }

.text-section h2 { font-family: 'Crimson Pro', serif; color: var(--burgundy); font-size: 1.3rem; margin-bottom: 0.8rem; }

.text-section p { color: var(--text-muted); margin-bottom: 0.6rem; }

.text-section ul { color: var(--text-muted); padding-left: 1.5rem; }

.text-section li { margin-bottom: 0.3rem; }

@media (max-width: 900px) {
    .info-boxes { grid-template-columns: 1fr; }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .burger { display: flex; }
    .game-frame iframe { height: 400px; }
    .highlights-grid { grid-template-columns: 1fr; }
    .age-btns { flex-direction: column; }
}
