@import url('https://fonts.googleapis.com/css2?family=Paytone+One&family=Nunito+Sans:wght@300;400;600;700&display=swap');

:root { --lime: #aeea00; --forest: #1b5e20; --dark: #0d1b0d; --gray: #2d3e2d; --white: #f5f5f5; --accent: #76ff03; }
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Nunito Sans', sans-serif; background: var(--dark); color: var(--white); }

.nav { position: fixed; width: 100%; top: 0; z-index: 1000; background: rgba(13, 27, 13, 0.95); border-bottom: 2px solid var(--lime); }
.nav-wrap { max-width: 1500px; margin: 0 auto; padding: 18px 30px; display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Paytone One', sans-serif; font-size: 1.8rem; color: var(--lime); text-decoration: none; }
.burger { display: none; background: none; border: none; cursor: pointer; }
.burger span { display: block; width: 26px; height: 3px; background: var(--lime); margin: 5px 0; border-radius: 2px; }
.links { display: flex; list-style: none; gap: 35px; }
.links a { color: var(--white); text-decoration: none; font-weight: 600; transition: color 0.3s; }
.links a:hover { color: var(--lime); }

.hero { min-height: 100vh; padding: 130px 30px 80px; background: radial-gradient(ellipse at 30% 70%, rgba(174, 234, 0, 0.1) 0%, transparent 60%), var(--dark); display: flex; align-items: center; }
.hero-content { max-width: 1500px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; width: 100%; }
.hero-text h1 { font-family: 'Paytone One', sans-serif; font-size: 3.5rem; color: var(--lime); margin-bottom: 20px; }
.hero-text p { font-size: 1.15rem; margin-bottom: 35px; opacity: 0.9; line-height: 1.7; }
.pills { display: flex; flex-wrap: wrap; gap: 12px; }
.pill { background: var(--forest); padding: 10px 22px; font-weight: 700; font-size: 0.85rem; border-radius: 50px; }

.game-box { background: var(--gray); border: 2px solid var(--lime); border-radius: 20px; overflow: hidden; box-shadow: 0 0 50px rgba(174, 234, 0, 0.2); }
.game-box iframe { display: block; width: 100%; height: 520px; border: none; }

.section { padding: 90px 30px; }
.section.alt { background: var(--gray); }
.section-wrap { max-width: 1400px; margin: 0 auto; }
.sec-title { font-family: 'Paytone One', sans-serif; font-size: 2.4rem; text-align: center; color: var(--lime); margin-bottom: 50px; }
.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card { background: var(--dark); padding: 35px; border-radius: 16px; border-bottom: 4px solid var(--lime); }
.card h3 { font-family: 'Paytone One', sans-serif; color: var(--accent); margin-bottom: 15px; font-size: 1.3rem; }
.card p { opacity: 0.85; line-height: 1.7; }

.game-area { padding: 80px 30px; background: var(--dark); }
.game-frame { max-width: 1050px; margin: 0 auto; border: 2px solid var(--lime); border-radius: 20px; overflow: hidden; box-shadow: 0 0 60px rgba(174, 234, 0, 0.3); }
.game-frame iframe { display: block; width: 100%; height: 580px; border: none; }

.pg-header { padding: 130px 30px 50px; background: var(--gray); text-align: center; }
.pg-header h1 { font-family: 'Paytone One', sans-serif; font-size: 2.8rem; color: var(--lime); margin-bottom: 10px; }
.pg-header p { opacity: 0.8; }
.pg-body { padding: 60px 30px 100px; max-width: 900px; margin: 0 auto; }
.pg-body h2 { font-family: 'Paytone One', sans-serif; font-size: 1.5rem; color: var(--lime); margin: 40px 0 15px; }
.pg-body p { opacity: 0.85; margin-bottom: 15px; line-height: 1.8; }
.pg-body ul { opacity: 0.85; margin: 15px 0 25px 25px; }
.pg-body li { margin-bottom: 10px; }

.footer { background: var(--gray); padding: 50px 30px; border-top: 2px solid var(--lime); text-align: center; }
.footer h4 { font-family: 'Paytone One', sans-serif; color: var(--lime); margin-bottom: 20px; }
.f-links { display: flex; justify-content: center; gap: 30px; margin-bottom: 25px; flex-wrap: wrap; }
.f-links a { color: var(--white); text-decoration: none; opacity: 0.7; }
.f-links a:hover { opacity: 1; }
.footer small { opacity: 0.5; }

.age-screen { position: fixed; inset: 0; background: rgba(13, 27, 13, 0.98); display: flex; justify-content: center; align-items: center; z-index: 10000; }
.age-screen.gone { display: none; }
.age-box { background: var(--gray); border: 2px solid var(--lime); border-radius: 20px; padding: 50px; max-width: 480px; text-align: center; }
.age-box h2 { font-family: 'Paytone One', sans-serif; color: var(--lime); font-size: 2rem; margin-bottom: 18px; }
.age-box p { margin-bottom: 30px; opacity: 0.9; line-height: 1.7; }
.age-btns { display: flex; gap: 15px; justify-content: center; }
.age-btn { padding: 14px 40px; font-weight: 700; border: none; cursor: pointer; border-radius: 50px; font-family: 'Nunito Sans', sans-serif; }
.age-btn.yes { background: var(--lime); color: var(--dark); }
.age-btn.no { background: transparent; border: 2px solid var(--white); color: var(--white); }
.age-btn:hover { transform: scale(1.05); }

@media (max-width: 1024px) { .hero-content { grid-template-columns: 1fr; } .grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
    .burger { display: block; }
    .links { position: fixed; top: 70px; left: 0; width: 100%; background: var(--dark); flex-direction: column; padding: 25px; gap: 15px; transform: translateX(-100%); transition: transform 0.3s; }
    .links.open { transform: translateX(0); }
    .hero-text h1 { font-size: 2.4rem; }
    .game-box iframe, .game-frame iframe { height: 400px; }
    .pills { flex-direction: column; }
    .age-box { margin: 20px; padding: 35px; }
    .age-btns { flex-direction: column; }
}
