@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;700;800&display=swap');

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

:root {
    --blue: #3b82f6;
    --blue-dark: #1d4ed8;
    --indigo: #4f46e5;
    --dark: #0f172a;
    --darker: #020617;
    --light: #f1f5f9;
    --white: #ffffff;
}

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

.navbar { background: rgba(15, 23, 42, 0.9); backdrop-filter: blur(10px); padding: 1rem 2rem; position: fixed; width: 100%; top: 0; z-index: 1000; border-bottom: 1px solid rgba(59, 130, 246, 0.3); }
.nav-wrap { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--blue), var(--indigo)); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.2rem; color: white; }
.brand-name { font-size: 1.4rem; font-weight: 700; color: white; }
.links { display: flex; gap: 2rem; }
.links a { color: var(--light); text-decoration: none; font-weight: 500; opacity: 0.8; transition: all 0.2s; }
.links a:hover { color: var(--blue); opacity: 1; }
.ham { display: none; cursor: pointer; padding: 8px; }
.ham div { width: 22px; height: 2px; background: var(--blue); margin: 5px 0; }
.mob-nav { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--dark); z-index: 2000; padding: 2rem; transition: right 0.3s; }
.mob-nav.active { right: 0; }
.mob-close { font-size: 1.8rem; color: var(--blue); cursor: pointer; display: block; text-align: right; margin-bottom: 2rem; }
.mob-nav a { display: block; padding: 1rem 0; color: var(--light); text-decoration: none; border-bottom: 1px solid rgba(59, 130, 246, 0.2); }
.mob-bg { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.5); z-index: 1500; display: none; }
.mob-bg.active { display: block; }

main { padding-top: 70px; }
.hero { min-height: 85vh; display: flex; align-items: center; justify-content: center; padding: 4rem 2rem; background: radial-gradient(ellipse at 30% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 70% 80%, rgba(79, 70, 229, 0.1) 0%, transparent 50%), var(--darker); text-align: center; }
.hero h1 { font-size: 3.2rem; font-weight: 800; margin-bottom: 1.5rem; background: linear-gradient(135deg, var(--blue), var(--indigo), #a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; line-height: 1.15; }
.hero p { font-size: 1.1rem; opacity: 0.8; max-width: 600px; margin: 0 auto 2.5rem; }
.cta { display: inline-block; padding: 1rem 2.5rem; background: linear-gradient(135deg, var(--blue), var(--indigo)); color: white; font-weight: 700; text-decoration: none; border-radius: 12px; transition: all 0.3s; }
.cta:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(59, 130, 246, 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: 16px; border: 1px solid rgba(59, 130, 246, 0.2); }
.card .ico { font-size: 2.5rem; margin-bottom: 1rem; }
.card h3 { color: var(--blue); margin-bottom: 0.5rem; font-weight: 700; }
.card p { font-size: 0.9rem; opacity: 0.7; }

.game-sec { padding: 4rem 2rem; background: var(--dark); }
.game-sec h2 { font-size: 2rem; text-align: center; margin-bottom: 2rem; color: white; }
.game-frame { max-width: 1000px; margin: 0 auto; border-radius: 16px; overflow: hidden; border: 2px solid var(--blue); }
.game-frame 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(--blue), var(--indigo)); flex-wrap: wrap; }
.stat { text-align: center; color: white; }
.stat .num { font-size: 2.5rem; font-weight: 800; }
.stat .txt { font-size: 0.9rem; opacity: 0.9; }

.about { max-width: 800px; margin: 0 auto; padding: 4rem 2rem; }
.about h2 { font-size: 1.6rem; color: var(--blue); margin-bottom: 1rem; font-weight: 700; }
.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(59, 130, 246, 0.3); }
.page-head h1 { font-size: 2.2rem; color: white; }
.doc { max-width: 800px; margin: 0 auto; padding: 3rem 2rem; }
.doc h2 { font-size: 1.2rem; color: var(--blue); margin: 2rem 0 0.75rem; font-weight: 700; }
.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(--blue); position: absolute; left: 0; }

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

.age-gate { position: fixed; inset: 0; background: rgba(2, 6, 23, 0.98); display: flex; align-items: center; justify-content: center; z-index: 9999; }
.age-gate.hidden { display: none; }
.age-box { background: var(--dark); padding: 2.5rem; border-radius: 20px; text-align: center; max-width: 420px; margin: 1rem; border: 1px solid rgba(59, 130, 246, 0.3); }
.age-box h2 { color: var(--blue); margin-bottom: 1rem; }
.age-box 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: 10px; font-weight: 700; cursor: pointer; border: none; }
.btn-yes { background: linear-gradient(135deg, var(--blue), var(--indigo)); color: white; }
.btn-no { background: transparent; border: 2px solid #ef4444 !important; color: #ef4444; }
.denied { display: none; text-align: center; padding: 2rem; color: var(--light); }
.denied h3 { color: #ef4444; }

@media (max-width: 768px) {
    .links { display: none; }
    .ham { display: block; }
    .hero h1 { font-size: 2.2rem; }
    .cards { grid-template-columns: 1fr; }
    .game-frame iframe { height: 400px; }
}
