@import url('https://fonts.googleapis.com/css2?family=Righteous&family=Nunito:wght@300;400;600;700&display=swap');

*{margin:0;padding:0;box-sizing:border-box}

:root{--star:#4fc3f7;--deep:#0d1b2a;--mid:#1b263b;--navy:#415a77;--silver:#e0e1dd;--muted:#778da9}

body{font-family:'Nunito',sans-serif;background:var(--deep);color:var(--silver);line-height:1.8}

.header{position:fixed;width:100%;top:0;z-index:1000;background:rgba(13,27,42,0.95);backdrop-filter:blur(10px);border-bottom:2px solid var(--star)}
.header-inner{max-width:1500px;margin:0 auto;padding:18px 35px;display:flex;justify-content:space-between;align-items:center}
.logo{font-family:'Righteous',cursive;font-size:1.9rem;color:var(--star);text-decoration:none;display:flex;align-items:center;gap:12px}
.logo-icon{width:45px;height:45px}
.nav ul{display:flex;list-style:none;gap:35px}
.nav a{color:var(--muted);text-decoration:none;font-weight:600;transition:color .3s}
.nav a:hover{color:var(--star)}
.burger{display:none;flex-direction:column;cursor:pointer;gap:5px}
.burger span{width:26px;height:2px;background:var(--star)}

.hero{min-height:100vh;padding:130px 35px 80px;display:flex;align-items:center;background:radial-gradient(ellipse at 50% 0%,rgba(79,195,247,0.15),transparent 60%)}
.hero-inner{max-width:1500px;margin:0 auto;width:100%;text-align:center}
.hero h1{font-family:'Righteous',cursive;font-size:4rem;margin-bottom:25px}
.hero h1 span{color:var(--star)}
.hero p{font-size:1.2rem;color:var(--muted);max-width:650px;margin:0 auto 40px}
.btn{display:inline-block;padding:16px 45px;background:var(--star);color:var(--deep);text-decoration:none;font-weight:700;border-radius:30px;transition:all .3s;border:none;cursor:pointer;font-size:1rem}
.btn:hover{transform:translateY(-3px);box-shadow:0 10px 30px rgba(79,195,247,0.3)}
.game-box{background:var(--mid);border-radius:20px;padding:20px;margin-top:50px;border:1px solid var(--navy)}
.game-box iframe{width:100%;height:520px;border:none;border-radius:12px}

.notices{padding:80px 35px;background:var(--mid)}
.notices-grid{max-width:1500px;margin:0 auto;display:grid;grid-template-columns:repeat(3,1fr);gap:30px}
.notice{background:var(--deep);padding:40px 30px;border-radius:15px;text-align:center;border-top:3px solid var(--star)}
.notice-icon{font-size:2.5rem;margin-bottom:20px}
.notice h3{font-family:'Righteous',cursive;font-size:1.2rem;margin-bottom:15px;color:var(--star)}
.notice p{color:var(--muted)}

.features{padding:100px 35px}
.features-inner{max-width:1500px;margin:0 auto}
.features h2{font-family:'Righteous',cursive;font-size:2.5rem;text-align:center;margin-bottom:60px}
.features h2 span{color:var(--star)}
.features-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:40px}
.feature{background:var(--mid);padding:35px;border-radius:15px;display:flex;gap:25px;align-items:start}
.feature-num{font-family:'Righteous',cursive;font-size:2rem;color:var(--star);opacity:.5}
.feature h4{font-family:'Righteous',cursive;margin-bottom:10px}
.feature p{color:var(--muted);font-size:.95rem}

.about{padding:100px 35px;background:var(--mid)}
.about-inner{max-width:1500px;margin:0 auto;display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.about h2{font-family:'Righteous',cursive;font-size:2.5rem;margin-bottom:25px}
.about h2 span{color:var(--star)}
.about p{color:var(--muted);margin-bottom:20px}
.about-stats{display:grid;grid-template-columns:repeat(2,1fr);gap:20px}
.stat{background:var(--deep);padding:30px;border-radius:12px;text-align:center;border-left:3px solid var(--star)}
.stat .num{font-family:'Righteous',cursive;font-size:2rem;color:var(--star)}
.stat .lbl{color:var(--muted);font-size:.9rem;margin-top:5px}

footer{background:var(--deep);padding:60px 35px 30px;border-top:2px solid var(--star)}
.footer-grid{max-width:1500px;margin:0 auto;display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:40px}
.footer-col h4{font-family:'Righteous',cursive;margin-bottom:20px;color:var(--star)}
.footer-col p{color:var(--muted);font-size:.9rem}
.footer-col a{display:block;color:var(--muted);text-decoration:none;margin-bottom:10px;transition:color .3s}
.footer-col a:hover{color:var(--star)}
.footer-bottom{max-width:1500px;margin:40px auto 0;padding-top:25px;border-top:1px solid var(--navy);text-align:center;color:var(--muted);font-size:.85rem}

.age-modal{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(13,27,42,0.98);display:flex;justify-content:center;align-items:center;z-index:9999}
.age-modal.hidden{display:none}
.age-box{background:var(--mid);padding:50px;border-radius:20px;text-align:center;max-width:480px;border:2px solid var(--star)}
.age-box h2{font-family:'Righteous',cursive;font-size:1.8rem;margin-bottom:20px}
.age-box p{color:var(--muted);margin-bottom:25px}
.age-btns{display:flex;gap:15px;justify-content:center}
.btn-yes{background:#4caf50}
.btn-no{background:#f44336}

.page-header{padding:140px 35px 70px;background:var(--mid);text-align:center}
.page-header h1{font-family:'Righteous',cursive;font-size:3rem;margin-bottom:15px}
.page-header p{color:var(--muted)}
.page-content{padding:70px 35px;max-width:900px;margin:0 auto}
.page-content h2{font-family:'Righteous',cursive;font-size:1.6rem;margin:40px 0 18px;color:var(--star)}
.page-content p{color:var(--muted);margin-bottom:16px}
.page-content ul{color:var(--muted);padding-left:25px;margin-bottom:18px}
.page-content li{margin-bottom:8px}

.play-section{padding:120px 35px 70px}
.play-inner{max-width:1200px;margin:0 auto}
.play-game{background:var(--mid);padding:20px;border-radius:20px;margin-bottom:35px}
.play-game iframe{width:100%;height:560px;border:none;border-radius:12px}
.play-info{background:var(--mid);padding:35px;border-radius:15px;border-top:3px solid var(--star)}
.play-info h3{font-family:'Righteous',cursive;margin-bottom:12px}
.play-info p{color:var(--muted);margin-bottom:12px}

@media(max-width:1024px){.notices-grid,.features-grid{grid-template-columns:1fr}.about-inner{grid-template-columns:1fr}.footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:768px){.burger{display:flex}.nav{position:absolute;top:100%;left:0;width:100%;background:var(--deep);padding:25px 35px;display:none}.nav.active{display:block}.nav ul{flex-direction:column;gap:18px}.hero h1{font-size:2.5rem}.footer-grid{grid-template-columns:1fr}.age-box{margin:20px;padding:35px}.age-btns{flex-direction:column}.game-box iframe,.play-game iframe{height:400px}}
@media(max-width:480px){.logo{font-size:1.5rem}.hero h1{font-size:2rem}.page-header h1{font-size:2.2rem}.game-box iframe,.play-game iframe{height:340px}}
