:root{
  --bg-1: #0B3D91; /* deep blue */
  --accent: #00B4D8; /* turquoise */
  --accent-2: #FFB703; /* warm accent */
  --muted: #6B7280;
  --card-bg: #ffffffcc;
  --glass: rgba(255,255,255,0.06);
  --max-width: 1100px;
}
*{box-sizing:border-box}
html,body{height:100%}
body{font-family:Inter, Montserrat, system-ui, -apple-system, "Segoe UI", Montserrat, "Helvetica Neue", Arial; margin:0; color:#0b1a2b; background:linear-gradient(180deg,var(--bg-1) 0%, #062a5a 60%); color:#0b1a2b;}
.container{max-width:var(--max-width);margin:0 auto;padding:1rem}
.site-header{background:transparent;padding:0.75rem 0;color:white}
.header-inner{display:flex;align-items:center;justify-content:space-between}
.brand strong{font-size:1.2rem;color:var(--accent-2);display:block}
.brand small{display:block;color:rgba(255,255,255,0.8);font-size:0.8rem}
.logo-white {height:150px;width:auto;display:block;filter:brightness(0) invert(1);}
.icon{color:rgba(255,255,255,0.9);margin-left:0.5rem;text-decoration:none}

.hero{padding:3.5rem 0;color:white}
.hero-inner{display:flex;gap:2rem;align-items:center}
.hero-copy{flex:1}
.slogan{font-size:2.2rem;line-height:1.05;margin:0 0 0.5rem;font-weight:800}
.slogan .word{position:relative;padding:0 0.15rem}
.slogan .word.highlight{color:var(--accent);transform:scale(1.06)}
.lead{color:rgba(255,255,255,0.9);margin:0 0 1rem;font-weight:400}
.hero-ctas{display:flex;gap:0.6rem}
.btn{border:0;padding:0.6rem 1rem;border-radius:8px;cursor:pointer;font-weight:600}
.btn.primary{background:var(--accent);color:#012;box-shadow:0 6px 18px rgba(0,180,216,0.15)}
.btn.ghost{background:transparent;color:white;border:1px solid rgba(255,255,255,0.12)}
.btn.small{padding:0.4rem 0.8rem;font-size:0.9rem}

.hero-aside{width:220px;background:linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));padding:1rem;border-radius:12px;text-align:center}
.countdown{display:flex;justify-content:space-between;gap:0.5rem}
.countdown-item{flex:1;background:rgba(255,255,255,0.03);padding:0.6rem;border-radius:8px}
.countdown-item span{display:block;font-size:1.25rem;font-weight:700}
.launch-note{margin-top:0.6rem;font-size:0.85rem}

.programs{background:transparent;padding:2.5rem 0;color:white}
.programs h2{margin:0 0 0.25rem}
.muted{color:rgba(255,255,255,0.8)}
.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:1rem;margin-top:1rem}
.card{background:var(--card-bg);padding:1rem;border-radius:10px;color:#07203b;box-shadow:0 4px 20px rgba(2,6,23,0.08)}

.quiz{padding:2.5rem 0;color:white}
.quiz-app{background:var(--glass);padding:1rem;border-radius:10px}
.quiz-question{font-weight:700;margin-bottom:0.6rem}
.quiz-choices{display:flex;flex-direction:column;gap:0.5rem}
.quiz-choices button{background:transparent;border:1px solid rgba(255,255,255,0.12);color:white;padding:0.6rem;border-radius:8px;text-align:left}

/* Game styles */
.game{display:flex;flex-direction:column;gap:0.6rem;align-items:center}
.game-hud{width:100%;display:flex;justify-content:space-between;align-items:center;margin-bottom:0.5rem;color:white}
#dragonGame{width:100%;max-width:820px;height:220px;border-radius:8px;box-shadow:0 8px 30px rgba(2,6,23,0.4);background:#092B4A}
.game-controls{display:flex;gap:0.5rem;align-items:center;margin-top:0.5rem}
.game-controls .btn{font-weight:700}

.site-footer{padding:1.5rem 0;color:white}
.footer-inner{display:flex;justify-content:space-between;align-items:center;gap:1rem}
.newsletter-form{display:flex;gap:0.5rem;align-items:center}
.newsletter-form input{padding:0.5rem;border-radius:8px;border:1px solid rgba(255,255,255,0.12);background:transparent;color:white}
.muted.small{color:rgba(255,255,255,0.75);margin-top:0.6rem}

.modal{position:fixed;inset:0;display:none;align-items:center;justify-content:center;background:rgba(2,6,23,0.5);backdrop-filter:blur(4px);}
.modal[aria-hidden="false"]{display:flex}
.modal-content{background:white;padding:1rem;border-radius:10px;max-width:420px;width:100%;color:#07203b}
.modal-close{position:absolute;right:16px;top:12px;background:transparent;border:0;font-size:1.2rem}
.subscribe-form input{width:100%;margin-bottom:0.6rem;padding:0.6rem;border-radius:8px;border:1px solid #e6e9ee}
.form-row{display:flex;gap:0.5rem;align-items:center}

@media (max-width:800px){
  .hero-inner{flex-direction:column;align-items:flex-start}
  .hero-aside{width:100%}
  .footer-inner{flex-direction:column;align-items:flex-start}
}

/* reduced motion preference */
@media (prefers-reduced-motion:reduce){
  .slogan .word{transition:none}
}
