@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Source+Sans+Pro:wght@300;400;600&display=swap');

:root {
    --forest: #1a4731;
    --gold-leaf: #c9a227;
    --cream-white: #faf9f6;
    --soft-sage: #a8c69f;
    --deep-earth: #2d2a26;
    --warm-gray: #7a7670;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: 'Source Sans Pro', sans-serif; background: var(--cream-white); color: var(--deep-earth); line-height: 1.8; }

header { background: var(--forest); padding: 1rem 0; position: sticky; top: 0; z-index: 1000; }

.top-bar { max-width: 1300px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-between; align-items: center; }

.brand-name { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold-leaf); text-decoration: none; font-weight: 600; }

.nav-main { display: flex; gap: 2rem; }

.nav-main a { color: var(--cream-white); text-decoration: none; font-size: 0.95rem; transition: color 0.3s; }

.nav-main a:hover { color: var(--gold-leaf); }

.toggle-menu { display: none; cursor: pointer; padding: 10px; }

.toggle-menu span { display: block; width: 26px; height: 3px; background: var(--gold-leaf); margin: 5px 0; transition: 0.3s; border-radius: 2px; }

.toggle-menu.active span:first-child { transform: rotate(45deg) translate(6px, 6px); }
.toggle-menu.active span:nth-child(2) { opacity: 0; }
.toggle-menu.active span:last-child { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-menu { display: none; background: var(--forest); }

.mobile-menu.open { display: block; }

.mobile-menu a { display: block; color: var(--cream-white); text-decoration: none; padding: 1rem 2rem; border-bottom: 1px solid rgba(201, 162, 39, 0.2); }

.welcome { padding: 80px 2rem; background: linear-gradient(135deg, var(--forest) 0%, #2d5a41 100%); text-align: center; }

.welcome-inner { max-width: 800px; margin: 0 auto; }

.welcome .eyebrow { color: var(--gold-leaf); font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 1rem; }

.welcome h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 6vw, 4rem); color: var(--cream-white); margin-bottom: 1.5rem; font-weight: 500; }

.welcome p { color: rgba(255, 255, 255, 0.85); font-size: 1.15rem; margin-bottom: 2.5rem; }

.welcome-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-primary { background: var(--gold-leaf); color: var(--deep-earth); padding: 1rem 2.5rem; text-decoration: none; font-weight: 600; transition: all 0.3s; }

.btn-primary:hover { background: #d9b52f; transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--cream-white); padding: 1rem 2.5rem; text-decoration: none; font-weight: 600; border: 2px solid var(--cream-white); transition: all 0.3s; }

.btn-ghost:hover { background: var(--cream-white); color: var(--forest); }

.notices-row { padding: 4rem 2rem; background: var(--soft-sage); }

.notices-container { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem; }

.notice-item { text-align: center; flex: 1; min-width: 250px; }

.notice-item .n-icon { font-size: 2.5rem; margin-bottom: 0.8rem; }

.notice-item h3 { font-family: 'Playfair Display', serif; color: var(--forest); font-size: 1.2rem; margin-bottom: 0.3rem; }

.notice-item p { color: var(--deep-earth); font-size: 0.9rem; }

.game-display { padding: 5rem 2rem; background: var(--cream-white); }

.display-header { text-align: center; margin-bottom: 3rem; }

.display-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--forest); }

.display-header p { color: var(--warm-gray); }

.game-panel { max-width: 1050px; margin: 0 auto; background: var(--deep-earth); padding: 1.2rem; border: 4px solid var(--gold-leaf); }

.game-panel iframe { width: 100%; height: 580px; border: none; display: block; }

.benefits { padding: 5rem 2rem; background: var(--forest); }

.benefits-title { text-align: center; font-family: 'Playfair Display', serif; color: var(--gold-leaf); font-size: 2rem; margin-bottom: 3rem; }

.benefits-list { max-width: 900px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

.benefit { text-align: center; }

.benefit .b-icon { font-size: 2rem; margin-bottom: 0.8rem; }

.benefit h4 { color: var(--cream-white); font-size: 1rem; margin-bottom: 0.3rem; }

.benefit p { color: rgba(255, 255, 255, 0.7); font-size: 0.85rem; }

footer { background: var(--deep-earth); padding: 4rem 2rem 2rem; }

.footer-layout { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }

.footer-about .brand-name { 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-leaf); margin-bottom: 1rem; font-size: 0.9rem; }

.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-leaf); }

.footer-support h5 { color: var(--gold-leaf); margin-bottom: 1rem; font-size: 0.9rem; }

.footer-support a { display: inline-block; background: var(--forest); color: var(--cream-white); padding: 0.4rem 0.8rem; text-decoration: none; font-size: 0.8rem; margin: 0.2rem; }

.footer-bottom { border-top: 1px solid rgba(201, 162, 39, 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.9); display: flex; align-items: center; justify-content: center; z-index: 10000; }

#ageModal.hidden { display: none; }

.verify-dialog { background: var(--cream-white); padding: 3rem; max-width: 460px; text-align: center; border: 4px solid var(--forest); }

.verify-dialog .v-icon { font-size: 3.5rem; margin-bottom: 1rem; }

.verify-dialog h2 { font-family: 'Playfair Display', serif; color: var(--forest); font-size: 1.6rem; margin-bottom: 1rem; }

.verify-dialog p { color: var(--warm-gray); margin-bottom: 2rem; }

.verify-btns { display: flex; gap: 1rem; justify-content: center; }

.verify-btns button { padding: 0.8rem 2rem; font-size: 0.95rem; cursor: pointer; border: none; font-weight: 600; }

#ageYes { background: var(--forest); color: var(--cream-white); }

#ageNo { background: transparent; border: 2px solid var(--warm-gray) !important; color: var(--warm-gray); }

.content-page { padding: 100px 2rem 60px; min-height: 70vh; background: var(--cream-white); }

.content-wrapper { max-width: 850px; margin: 0 auto; }

.content-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 5vw, 2.8rem); color: var(--forest); text-align: center; margin-bottom: 3rem; }

.content-section { background: white; padding: 2rem; margin-bottom: 1.5rem; border-left: 4px solid var(--soft-sage); box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); }

.content-section h2 { font-family: 'Playfair Display', serif; color: var(--forest); font-size: 1.2rem; margin-bottom: 0.8rem; }

.content-section p { color: var(--warm-gray); margin-bottom: 0.5rem; }

.content-section ul { color: var(--warm-gray); padding-left: 1.5rem; }

.content-section li { margin-bottom: 0.3rem; }

@media (max-width: 900px) {
    .notices-container { flex-direction: column; align-items: center; }
    .benefits-list { grid-template-columns: repeat(2, 1fr); }
    .footer-layout { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
    .nav-main { display: none; }
    .toggle-menu { display: block; }
    .game-panel iframe { height: 400px; }
    .benefits-list { grid-template-columns: 1fr; }
    .verify-btns { flex-direction: column; }
}
