@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Archivo+Black&display=swap');

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

:root {
    --rich-black: #0d0d0d;
    --slate-dark: #1a1a2e;
    --berry-red: #e63946;
    --lime-fresh: #a7c957;
    --sunny-yellow: #ffbe0b;
    --cream-white: #f8f9fa;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--rich-black);
    color: var(--cream-white);
    line-height: 1.7;
}

h1, h2, h3 { font-family: 'Archivo Black', sans-serif; }

a { color: var(--lime-fresh); text-decoration: none; transition: all 0.3s; }
a:hover { color: var(--sunny-yellow); }

.header { position: fixed; top: 0; width: 100%; z-index: 1000; background: rgba(13, 13, 13, 0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(167, 201, 87, 0.15); }
.header-wrap { max-width: 1500px; margin: 0 auto; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.logo-box { display: flex; align-items: center; gap: 12px; }
.logo-box svg { width: 46px; height: 46px; }
.logo-box span { font-family: 'Archivo Black', sans-serif; font-size: 1.6rem; color: var(--lime-fresh); }

.burger { display: none; width: 30px; height: 22px; flex-direction: column; justify-content: space-between; cursor: pointer; }
.burger span { height: 3px; background: var(--lime-fresh); transition: all 0.3s; }
.burger.on span:first-child { transform: rotate(45deg) translate(6px, 6px); }
.burger.on span:nth-child(2) { opacity: 0; }
.burger.on span:last-child { transform: rotate(-45deg) translate(7px, -7px); }

.nav-links { display: flex; list-style: none; gap: 2.5rem; }
.nav-links a { font-weight: 500; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--cream-white); }
.nav-links a:hover { color: var(--lime-fresh); }

.hero-block { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 120px 2rem 80px; background: radial-gradient(ellipse at 30% 40%, rgba(230, 57, 70, 0.15) 0%, transparent 50%), radial-gradient(ellipse at 70% 60%, rgba(167, 201, 87, 0.1) 0%, transparent 40%), var(--rich-black); text-align: center; }
.hero-inner { max-width: 850px; }
.hero-inner h1 { font-size: clamp(2.5rem, 7vw, 4.5rem); color: var(--cream-white); margin-bottom: 1.5rem; }
.hero-inner h1 .pop { color: var(--lime-fresh); }
.hero-text { font-size: 1.15rem; color: rgba(248, 249, 250, 0.8); margin-bottom: 2.5rem; }
.hero-cta { display: inline-block; background: linear-gradient(135deg, var(--lime-fresh), var(--berry-red)); color: var(--rich-black); padding: 1rem 2.5rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; border-radius: 8px; transition: all 0.3s; }
.hero-cta:hover { color: var(--rich-black); transform: scale(1.05); box-shadow: 0 10px 40px rgba(167, 201, 87, 0.3); }

.info-row { padding: 5rem 2rem; background: linear-gradient(180deg, var(--rich-black), var(--slate-dark)); }
.info-cards { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.info-card { background: rgba(26, 26, 46, 0.6); border: 1px solid rgba(167, 201, 87, 0.2); border-radius: 12px; padding: 2.5rem 2rem; text-align: center; transition: all 0.3s; }
.info-card:hover { border-color: var(--lime-fresh); transform: translateY(-5px); }
.card-emoji { font-size: 2.8rem; margin-bottom: 1.5rem; }
.info-card h3 { font-size: 1.3rem; color: var(--lime-fresh); margin-bottom: 0.75rem; font-family: 'Archivo Black', sans-serif; }
.info-card p { color: rgba(248, 249, 250, 0.7); font-size: 0.95rem; }

.game-row { padding: 5rem 2rem; background: var(--rich-black); }
.game-inner { max-width: 1400px; margin: 0 auto; }
.game-title { text-align: center; margin-bottom: 3rem; }
.game-title h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--cream-white); }
.game-title p { color: var(--sunny-yellow); }
.game-box { background: var(--slate-dark); border: 2px solid var(--berry-red); border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
.game-box iframe { width: 100%; height: 600px; border: none; display: block; }

.about-row { padding: 6rem 2rem; background: linear-gradient(180deg, var(--rich-black), rgba(26, 26, 46, 0.5)); }
.about-inner { max-width: 900px; margin: 0 auto; text-align: center; }
.about-inner h2 { font-size: 2.5rem; color: var(--lime-fresh); margin-bottom: 2rem; }
.about-inner p { font-size: 1.1rem; color: rgba(248, 249, 250, 0.85); margin-bottom: 1.5rem; }

.footer { background: rgba(13, 13, 13, 0.98); border-top: 1px solid rgba(167, 201, 87, 0.15); padding: 3rem 2rem; }
.footer-inner { max-width: 1400px; 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(--cream-white); font-size: 0.9rem; }
.support-row { padding-top: 2rem; border-top: 1px solid rgba(167, 201, 87, 0.1); }
.support-row p { font-size: 0.85rem; color: rgba(248, 249, 250, 0.6); margin-bottom: 1rem; }
.support-row .links { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; }
.support-row .links a { font-size: 0.85rem; }
.copy { margin-top: 2rem; font-size: 0.8rem; color: rgba(248, 249, 250, 0.4); }

.age-popup { position: fixed; inset: 0; background: rgba(13, 13, 13, 0.98); z-index: 10000; display: flex; align-items: center; justify-content: center; padding: 2rem; }
.age-popup.hidden { display: none; }
.popup-box { background: linear-gradient(145deg, var(--slate-dark), var(--rich-black)); border: 2px solid var(--lime-fresh); border-radius: 16px; padding: 3rem; max-width: 480px; text-align: center; }
.popup-box h2 { font-size: 2rem; color: var(--lime-fresh); margin-bottom: 1.5rem; }
.popup-box p { color: var(--cream-white); margin-bottom: 2rem; }
.popup-btns { display: flex; gap: 1rem; justify-content: center; }
.popup-btn { padding: 0.9rem 2rem; border: none; border-radius: 8px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem; cursor: pointer; transition: all 0.3s; }
.popup-btn.ok { background: var(--lime-fresh); color: var(--rich-black); }
.popup-btn.ok:hover { transform: scale(1.05); }
.popup-btn.no { background: transparent; color: var(--cream-white); border: 2px solid var(--berry-red); }
.popup-btn.no:hover { background: var(--berry-red); }

.page-main { padding: 120px 2rem 4rem; max-width: 950px; margin: 0 auto; min-height: calc(100vh - 250px); }
.page-main h1 { font-size: clamp(2rem, 5vw, 3rem); color: var(--lime-fresh); margin-bottom: 2.5rem; text-align: center; }
.page-main h2 { font-size: 1.4rem; color: var(--sunny-yellow); margin: 2.5rem 0 1rem; }
.page-main p { color: rgba(248, 249, 250, 0.9); margin-bottom: 1.2rem; }
.page-main ul { margin: 1rem 0 1.5rem 1.5rem; }
.page-main li { color: rgba(248, 249, 250, 0.85); margin-bottom: 0.5rem; }

.play-main { padding: 120px 2rem 4rem; max-width: 1400px; margin: 0 auto; }
.play-main h1 { text-align: center; font-size: clamp(2rem, 4vw, 3rem); color: var(--lime-fresh); margin-bottom: 1rem; }
.play-main .note { text-align: center; color: rgba(248, 249, 250, 0.6); margin-bottom: 2rem; }

@media (max-width: 900px) { .info-cards { grid-template-columns: 1fr; max-width: 500px; } }
@media (max-width: 768px) {
    .burger { display: flex; }
    .nav-links { position: fixed; top: 0; right: -100%; width: 75%; max-width: 300px; height: 100vh; background: var(--rich-black); flex-direction: column; padding: 100px 2rem; gap: 2rem; transition: right 0.35s; border-left: 1px solid rgba(167, 201, 87, 0.2); }
    .nav-links.show { right: 0; }
    .game-box iframe { height: 480px; }
    .popup-btns { flex-direction: column; }
    .foot-links { flex-direction: column; gap: 1rem; }
}
@media (max-width: 480px) { .logo-box span { font-size: 1.3rem; } .game-box iframe { height: 380px; } }
