@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Nunito:wght@300;400;600&display=swap');

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

:root {
    --purple: #a855f7;
    --purple-dark: #7c3aed;
    --magenta: #d946ef;
    --dark: #1e1b2e;
    --darker: #0f0d1a;
    --light: #f3e8ff;
    --white: #ffffff;
}

body { font-family: 'Nunito', sans-serif; background: var(--darker); color: var(--light); line-height: 1.7; }

.header { background: rgba(30, 27, 46, 0.95); backdrop-filter: blur(12px); padding: 1rem 2rem; position: fixed; width: 100%; top: 0; z-index: 1000; border-bottom: 1px solid rgba(168, 85, 247, 0.3); }
.header-wrap { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-sym { width: 44px; height: 44px; background: linear-gradient(135deg, var(--purple), var(--magenta)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.5rem; color: var(--dark); }
.brand-txt { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; color: var(--purple); letter-spacing: 2px; }
.nav { display: flex; gap: 2rem; }
.nav a { color: var(--light); text-decoration: none; font-weight: 600; opacity: 0.8; transition: all 0.2s; }
.nav a:hover { color: var(--purple); opacity: 1; }
.menu-btn { display: none; cursor: pointer; padding: 8px; }
.menu-btn span { display: block; width: 24px; height: 2px; background: var(--purple); margin: 5px 0; }
.mob-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--dark); z-index: 2000; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; opacity: 0; visibility: hidden; transition: all 0.3s; }
.mob-menu.open { opacity: 1; visibility: visible; }
.mob-menu a { color: var(--light); text-decoration: none; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; }
.mob-close { position: absolute; top: 25px; right: 30px; font-size: 2rem; color: var(--purple); cursor: pointer; }

main { padding-top: 75px; }
.hero { min-height: 85vh; display: flex; align-items: center; justify-content: center; padding: 4rem 2rem; background: radial-gradient(ellipse at 50% 30%, rgba(168, 85, 247, 0.15) 0%, transparent 60%), radial-gradient(ellipse at 30% 70%, rgba(217, 70, 239, 0.1) 0%, transparent 50%), var(--darker); text-align: center; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 3.5rem; font-weight: 700; margin-bottom: 1.5rem; background: linear-gradient(135deg, var(--purple), var(--magenta)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.2; }
.hero p { font-size: 1.15rem; opacity: 0.85; max-width: 620px; margin: 0 auto 2.5rem; }
.btn { display: inline-block; padding: 1rem 2.5rem; background: linear-gradient(135deg, var(--purple), var(--magenta)); color: white; font-weight: 700; text-decoration: none; border-radius: 50px; transition: all 0.3s; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1100px; margin: 0 auto; padding: 4rem 2rem; }
.card { background: var(--dark); padding: 2rem; border-radius: 20px; text-align: center; border: 1px solid rgba(168, 85, 247, 0.2); }
.card .ico { font-size: 2.5rem; margin-bottom: 1rem; }
.card h3 { font-family: 'Cormorant Garamond', serif; color: var(--purple); margin-bottom: 0.5rem; font-size: 1.2rem; }
.card p { font-size: 0.9rem; opacity: 0.7; }

.game-area { padding: 4rem 2rem; background: var(--dark); }
.game-area h2 { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; text-align: center; color: var(--purple); margin-bottom: 2rem; }
.game-box { max-width: 1000px; margin: 0 auto; border-radius: 20px; overflow: hidden; border: 2px solid var(--purple); }
.game-box iframe { width: 100%; height: 600px; border: none; display: block; }

.stats { display: flex; justify-content: center; gap: 4rem; padding: 3rem 2rem; background: linear-gradient(135deg, var(--purple), var(--magenta)); flex-wrap: wrap; }
.stat { text-align: center; color: white; }
.stat .num { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700; }
.stat .txt { font-size: 0.9rem; opacity: 0.9; }

.about { max-width: 800px; margin: 0 auto; padding: 4rem 2rem; }
.about h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--purple); margin-bottom: 1rem; }
.about p { opacity: 0.8; margin-bottom: 1rem; }

.page-head { padding: 6rem 2rem 3rem; background: var(--dark); text-align: center; border-bottom: 1px solid rgba(168, 85, 247, 0.3); }
.page-head h1 { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--purple); }
.doc { max-width: 800px; margin: 0 auto; padding: 3rem 2rem; }
.doc h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--purple); margin: 2rem 0 0.75rem; }
.doc p { opacity: 0.8; margin-bottom: 1rem; }
.doc ul { list-style: none; margin-bottom: 1rem; }
.doc ul li { opacity: 0.8; padding: 0.4rem 0 0.4rem 1.5rem; position: relative; }
.doc ul li::before { content: '✦'; color: var(--purple); position: absolute; left: 0; font-size: 0.7rem; }

footer { background: var(--dark); padding: 3rem 2rem; border-top: 1px solid rgba(168, 85, 247, 0.2); }
.foot-wrap { max-width: 1000px; margin: 0 auto; text-align: center; }
.foot-nav { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 2rem; }
.foot-nav a { color: var(--light); text-decoration: none; font-size: 0.9rem; opacity: 0.7; }
.foot-nav a:hover { color: var(--purple); opacity: 1; }
.resp { padding-top: 1.5rem; border-top: 1px solid rgba(168, 85, 247, 0.2); }
.resp p { font-size: 0.85rem; opacity: 0.6; margin-bottom: 0.75rem; }
.resp a { color: var(--purple); margin: 0 0.5rem; font-size: 0.85rem; }
.age-tag { display: inline-block; padding: 0.4rem 1.2rem; background: rgba(168, 85, 247, 0.2); border: 1px solid var(--purple); color: var(--purple); border-radius: 50px; font-weight: 600; margin-top: 1rem; }

.age-gate { position: fixed; inset: 0; background: rgba(15, 13, 26, 0.98); display: flex; align-items: center; justify-content: center; z-index: 9999; }
.age-gate.hidden { display: none; }
.age-modal { background: var(--dark); padding: 2.5rem; border-radius: 24px; text-align: center; max-width: 420px; margin: 1rem; border: 1px solid rgba(168, 85, 247, 0.4); }
.age-modal h2 { font-family: 'Cormorant Garamond', serif; color: var(--purple); margin-bottom: 1rem; }
.age-modal p { opacity: 0.8; margin-bottom: 1.5rem; }
.age-btns { display: flex; gap: 1rem; justify-content: center; }
.age-btns button { padding: 0.85rem 2rem; border-radius: 50px; font-weight: 700; cursor: pointer; border: none; }
.btn-y { background: linear-gradient(135deg, var(--purple), var(--magenta)); color: white; }
.btn-n { background: transparent; border: 2px solid #ef4444 !important; color: #ef4444; }
.denied { display: none; text-align: center; padding: 2rem; color: var(--light); }
.denied h3 { color: #ef4444; font-family: 'Cormorant Garamond', serif; }

@media (max-width: 768px) {
    .nav { display: none; }
    .menu-btn { display: block; }
    .hero h1 { font-size: 2.4rem; }
    .cards { grid-template-columns: 1fr; }
    .game-box iframe { height: 400px; }
}
