@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@300;400;600;700;800&display=swap');

:root {
    --sunset-orange: #ff6b35;
    --warm-yellow: #f7c948;
    --sky-blue: #4ecdc4;
    --off-white: #fff9f5;
    --deep-purple: #2d1b4e;
    --soft-purple: #6b4c93;
    --text-color: #3d3d3d;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body { font-family: 'Nunito', sans-serif; background: var(--off-white); color: var(--text-color); line-height: 1.7; }

header { background: linear-gradient(90deg, var(--deep-purple) 0%, var(--soft-purple) 100%); position: fixed; width: 100%; top: 0; z-index: 1000; }

.header-row { max-width: 1350px; margin: 0 auto; padding: 1rem 2rem; display: flex; justify-content: space-between; align-items: center; }

.logo-text { font-size: 1.7rem; font-weight: 800; color: var(--warm-yellow); text-decoration: none; letter-spacing: 1px; }

.nav-desktop { display: flex; gap: 2rem; }

.nav-desktop a { color: white; text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: color 0.3s; }

.nav-desktop a:hover { color: var(--warm-yellow); }

.hamburger-icon { display: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 8px; }

.hamburger-icon span { width: 24px; height: 3px; background: var(--warm-yellow); transition: 0.3s; border-radius: 3px; }

.hamburger-icon.active span:first-child { transform: rotate(45deg) translate(6px, 6px); }
.hamburger-icon.active span:nth-child(2) { opacity: 0; }
.hamburger-icon.active span:last-child { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-menu { display: none; background: var(--deep-purple); }

.mobile-menu.open { display: block; }

.mobile-menu a { display: block; color: white; text-decoration: none; padding: 1rem 2rem; border-bottom: 1px solid rgba(247, 201, 72, 0.2); font-weight: 600; }

.splash { min-height: 100vh; padding: 120px 2rem 80px; background: linear-gradient(180deg, var(--soft-purple) 0%, var(--deep-purple) 50%, #1a0f30 100%); text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; }

.splash-inner { max-width: 750px; }

.splash .pill { display: inline-block; background: var(--sunset-orange); color: white; padding: 0.5rem 1.5rem; border-radius: 30px; font-weight: 700; font-size: 0.85rem; margin-bottom: 2rem; }

.splash h1 { font-size: clamp(2.8rem, 8vw, 5rem); color: white; margin-bottom: 1.5rem; font-weight: 800; }

.splash h1 .highlight { color: var(--warm-yellow); }

.splash p { color: rgba(255, 255, 255, 0.85); font-size: 1.2rem; margin-bottom: 3rem; }

.splash-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-bright { display: inline-block; background: var(--sunset-orange); color: white; padding: 1rem 2.5rem; border-radius: 30px; text-decoration: none; font-weight: 700; transition: all 0.3s; }

.btn-bright:hover { background: #ff8555; transform: scale(1.05); }

.btn-light { display: inline-block; background: white; color: var(--deep-purple); padding: 1rem 2.5rem; border-radius: 30px; text-decoration: none; font-weight: 700; transition: all 0.3s; }

.btn-light:hover { background: var(--warm-yellow); }

.alerts { padding: 4rem 2rem; background: var(--sky-blue); }

.alerts-flex { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 2rem; }

.alert-item { background: white; padding: 2rem 1.5rem; border-radius: 20px; text-align: center; flex: 1; min-width: 260px; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); }

.alert-item .a-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.alert-item h3 { color: var(--deep-purple); font-size: 1.15rem; margin-bottom: 0.5rem; }

.alert-item p { color: var(--text-color); font-size: 0.9rem; }

.game-area { padding: 5rem 2rem; background: var(--off-white); }

.game-heading { text-align: center; margin-bottom: 3rem; }

.game-heading h2 { font-size: clamp(2rem, 5vw, 3rem); color: var(--deep-purple); font-weight: 800; }

.game-heading h2 span { color: var(--sunset-orange); }

.game-heading p { color: var(--soft-purple); margin-top: 0.5rem; }

.game-box { max-width: 1050px; margin: 0 auto; background: linear-gradient(135deg, var(--deep-purple), var(--soft-purple)); padding: 1rem; border-radius: 20px; box-shadow: 0 15px 40px rgba(45, 27, 78, 0.3); }

.game-box iframe { width: 100%; height: 580px; border: none; border-radius: 12px; display: block; }

.perks-section { padding: 5rem 2rem; background: var(--warm-yellow); }

.perks-title { text-align: center; font-size: 2rem; color: var(--deep-purple); font-weight: 800; margin-bottom: 3rem; }

.perks-row { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }

.perk-card { background: white; padding: 1.5rem; border-radius: 15px; text-align: center; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); }

.perk-card .p-icon { font-size: 2rem; margin-bottom: 0.8rem; }

.perk-card h4 { color: var(--deep-purple); font-size: 1rem; margin-bottom: 0.3rem; }

.perk-card p { color: var(--text-color); font-size: 0.85rem; }

footer { background: var(--deep-purple); padding: 4rem 2rem 2rem; }

.footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2rem; }

.footer-brand .logo-text { display: inline-block; margin-bottom: 1rem; }

.footer-brand p { color: rgba(255, 255, 255, 0.6); font-size: 0.9rem; }

.footer-nav h5 { color: var(--warm-yellow); margin-bottom: 1rem; font-weight: 700; }

.footer-nav a { display: block; color: rgba(255, 255, 255, 0.6); text-decoration: none; margin-bottom: 0.5rem; font-size: 0.9rem; }

.footer-nav a:hover { color: var(--warm-yellow); }

.footer-help h5 { color: var(--warm-yellow); margin-bottom: 1rem; font-weight: 700; }

.footer-help a { display: inline-block; background: var(--soft-purple); color: white; padding: 0.4rem 0.8rem; border-radius: 8px; text-decoration: none; font-size: 0.8rem; margin: 0.2rem; }

.footer-end { border-top: 1px solid rgba(247, 201, 72, 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(45, 27, 78, 0.97); display: flex; align-items: center; justify-content: center; z-index: 10000; }

#ageModal.hidden { display: none; }

.popup-box { background: white; padding: 3rem; max-width: 440px; text-align: center; border-radius: 25px; box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3); }

.popup-box .pop-icon { font-size: 3.5rem; margin-bottom: 1rem; }

.popup-box h2 { color: var(--deep-purple); margin-bottom: 1rem; font-size: 1.5rem; font-weight: 800; }

.popup-box p { color: var(--text-color); margin-bottom: 2rem; }

.popup-btns { display: flex; gap: 1rem; justify-content: center; }

.popup-btns button { padding: 0.8rem 2rem; font-family: inherit; font-size: 1rem; font-weight: 700; cursor: pointer; border: none; border-radius: 30px; }

#ageYes { background: var(--sunset-orange); color: white; }

#ageNo { background: white; border: 2px solid var(--text-color) !important; color: var(--text-color); }

.inner-content { padding: 120px 2rem 60px; min-height: 70vh; background: var(--off-white); }

.inner-wrap { max-width: 850px; margin: 0 auto; }

.inner-title { font-size: clamp(2rem, 5vw, 3rem); color: var(--deep-purple); text-align: center; margin-bottom: 3rem; font-weight: 800; }

.text-card { background: white; padding: 2rem; margin-bottom: 1.5rem; border-radius: 15px; border-left: 5px solid var(--sunset-orange); box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); }

.text-card h2 { color: var(--deep-purple); font-size: 1.2rem; margin-bottom: 0.8rem; font-weight: 700; }

.text-card p { color: var(--text-color); margin-bottom: 0.5rem; }

.text-card ul { color: var(--text-color); padding-left: 1.5rem; }

.text-card li { margin-bottom: 0.3rem; }

@media (max-width: 900px) {
    .alerts-flex { flex-direction: column; align-items: center; }
    .perks-row { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
    .nav-desktop { display: none; }
    .hamburger-icon { display: flex; }
    .game-box iframe { height: 400px; }
    .perks-row { grid-template-columns: 1fr; }
    .popup-btns { flex-direction: column; }
}
