/* 1. fonts & css variables */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700;900&family=Exo+2:wght@400;600&display=swap');

:root {
  --bg:        #0d0f1a;
  --surface:   #161929;
  --card-bg:   #1c2038;
  --accent:    #f0c040;
  --accent2:   #e05a5a;
  --accent3:   #5ae0a0;
  --text:      #e8eaf0;
  --muted:     #7a7f9a;
  --border:    #2e3250;
  --radius:    12px;
  --font-head: 'Orbitron', monospace;
  --font-body: 'Exo 2', sans-serif;
}

/* 2. reset & base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* landing page background */
body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* background canvas */
#bgCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;       
}

/* all real content sits above the canvas */
.site-header,
.hero,
.games-section,
footer {
  position: relative;
  z-index: 2;
}

a {
  color: var(--accent);
  text-decoration: none;
}

h1, h2, h3 {
  font-family: var(--font-head);
  line-height: 1.2;
}

/* 3. header/nav */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: var(--surface);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--accent);
  letter-spacing: 2px;
}

nav {
  display: flex;
  gap: 24px;
}

nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.2s, text-shadow 0.2s;
  position: relative;
}

nav a:hover {
  color: var(--accent);
  text-shadow: 0 0 12px rgba(240, 192, 64, 0.5);
}

/* underline slide-in effect on nav links */
nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}

nav a:hover::after {
  width: 100%;
}

/* 4. hero */
.hero {
  text-align: center;
  padding: 80px 20px 60px;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 4rem);
  margin-bottom: 16px;
  /* Fade-and-rise on load */
  animation: fadeUp 0.8s ease both;
}

.hero .tagline {
  animation: fadeUp 0.8s 0.15s ease both;
}

.hero .nickname-box {
  animation: fadeUp 0.8s 0.3s ease both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.highlight {
  color: var(--accent);
}

.tagline {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 40px;
}

/* nickname input box */
.nickname-box {
  display: inline-block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 32px;
  max-width: 420px;
  width: 100%;
  text-align: left;
  transition: border-color 0.2s;
}

.nickname-box:hover {
  border-color: var(--accent);
}

.nickname-box label {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 10px;
}

.nickname-row {
  display: flex;
  gap: 10px;
}

/* shared input style */
input[type="text"] {
  flex: 1;
  background: rgba(13, 15, 26, 0.8);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 8px;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

input[type="text"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(240, 192, 64, 0.15);
}

.input-active {
  border-color: var(--accent3) !important;
  box-shadow: 0 0 0 2px rgba(90, 224, 160, 0.2);
}

/* shared button style */
button, .card-btn {
  background: var(--accent);
  color: #0d0f1a;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  display: inline-block;
}

button:hover, .card-btn:hover {
  opacity: 0.88;
  transform: translateY(-2px);
}

button:active, .card-btn:active {
  transform: translateY(0);
}

/* greeting message */
.greeting {
  margin-top: 12px;
  color: var(--accent3);
  font-size: 0.95rem;
  font-weight: 600;
  animation: greetPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes greetPop {
  from { opacity: 0; transform: scale(0.85) translateY(6px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.hidden {
  display: none !important;
}

/* CSS sparkle burst */
#sparkleContainer {
  position: absolute;
  left: 50%;
  top: 50%;
  pointer-events: none;
}

.sparkle-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: sparkleFly 0.7s ease-out forwards;
  transform-origin: center;
  --angle: 0deg;
}

@keyframes sparkleFly {
  0%   { transform: rotate(var(--angle)) translateX(0)   scale(1);   opacity: 1; }
  70%  { transform: rotate(var(--angle)) translateX(60px) scale(0.6); opacity: 1; }
  100% { transform: rotate(var(--angle)) translateX(80px) scale(0);   opacity: 0; }
}

/* 5. game cards */
.games-section {
  padding: 40px 40px 80px;
  text-align: center;
}

.games-section h2 {
  font-size: 1.6rem;
  margin-bottom: 36px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 3px;
}

.cards-grid {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  max-width: 280px;
  width: 100%;
  text-align: left;
  transition: transform 0.2s, border-color 0.2s;
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.card-icon {
  display: none;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: var(--accent);
}

.card p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.card-btn {
  font-size: 0.8rem;
  padding: 8px 18px;
}

/* 6. footer */
footer {
  text-align: center;
  padding: 24px;
  color: var(--muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
}

/* 7. game page shared style */
.back-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 8px 16px;
  font-size: 0.85rem;
  margin-bottom: 24px;
  cursor: pointer;
  border-radius: 8px;
  font-family: var(--font-body);
}

.back-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.game-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.game-page h1 {
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  color: var(--accent);
  margin-bottom: 8px;
}

.instructions {
  background: var(--surface);
  border-left: 3px solid var(--accent);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 32px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.8;
}

/* fog bands */
.fog-layer {
  position: absolute;
  left: -20%;
  width: 140%;
  border-radius: 50%;
}

.fog-back {
  bottom: 28%;
  height: 120px;
  background: radial-gradient(ellipse at center, rgba(140,180,140,0.06) 0%, transparent 70%);
  animation: fogDrift 18s ease-in-out infinite alternate;
}

.fog-front {
  bottom: 0;
  height: 180px;
  background: radial-gradient(ellipse at center, rgba(100,140,100,0.09) 0%, transparent 65%);
  animation: fogDrift 24s ease-in-out infinite alternate-reverse;
}

@keyframes fogDrift {
  from { transform: translateX(0); }
  to   { transform: translateX(6%); }
}

/* ensure content sits above the bg */
.site-header,
#progressBarWrap,
.game-page {
  position: relative;
  z-index: 2;
}

/* 8. narrative game */

body.narrative-page {
  background-color: #07100a;
}

body.narrative-page::before {
  /* hide the dot-grid pattern from the landing page */
  display: none;
}

/* chapter label floating above the right edge of the bar */
#progressLabel {
  position: absolute;
  right: 14px;
  top: 7px;
  font-size: 0.7rem;
  color: #4a6a4a;
  font-family: var(--font-head);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  pointer-events: none;
}

/* forest background layers */
.forest-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  background: #07100a;
}

/* far pine silhouettes */
.trees-back {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 55%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='200' viewBox='0 0 120 200'%3E%3Cpolygon points='60,0 80,50 72,50 90,90 78,90 100,140 20,140 42,90 30,90 48,50 40,50' fill='%230d1f0d' fill-opacity='0.85'/%3E%3Crect x='54' y='140' width='12' height='20' fill='%230d1f0d' fill-opacity='0.85'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: 120px auto;
  opacity: 0.6;
}

/* near pine silhouettes */
.trees-front {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='280' viewBox='0 0 160 280'%3E%3Cpolygon points='80,0 108,70 96,70 120,128 104,128 132,196 28,196 56,128 40,128 64,70 52,70' fill='%23040c04'/%3E%3Crect x='72' y='196' width='16' height='28' fill='%23040c04'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: bottom;
  background-size: 160px auto;
}


/* top row: back button + ambient toggle */
.narrative-toprow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.narrative-toprow .back-btn {
  margin-bottom: 0;
}

/* ambient toggle button */
.ambient-btn {
  background: transparent;
  border: 1px solid #2a3e2a;
  color: #4a6a4a;
  padding: 8px 16px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 6px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.ambient-btn:hover {
  border-color: #3a7a4a;
  color: #6aaa7a;
}

/* active state: sound is ON */
.ambient-btn.is-on {
  border-color: #3a7a4a;
  color: #6aaa7a;
  background: rgba(58, 122, 74, 0.08);
}

/* narrative page subtitle */
.narrative-subtitle {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 0.9rem;
  font-style: italic;
}

/* story box */
body.narrative-page #storyBox {
  background: rgba(10, 18, 10, 0.82);
  border: 1px solid #1e321e;
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 2;
  min-height: 160px;
  color: #c8d4c8;      
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: opacity 0.35s ease;
}

/* opacity class toggled by JS during scene cross-fade */
body.narrative-page #storyBox.fading {
  opacity: 0;
}

/* scene entrance animation */
@keyframes sceneFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.scene-enter {
  animation: sceneFadeIn 0.4s ease both;
}

/* choice buttons */
body.narrative-page .choice-btn {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box; 
  background: rgba(10, 18, 10, 0.6);
  border: 1px solid #1e321e;
  color: #a8c4a8;
  border-radius: 6px;
  padding: 14px 20px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.95rem;
  cursor: pointer;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  transition: border-color 0.2s, color 0.2s, transform 0.15s, background 0.2s;
}

body.narrative-page .choice-btn:hover {
  border-color: #3a7a4a;
  color: #c8e8c8;
  background: rgba(18, 36, 18, 0.8);
  transform: translateX(5px);
}

/* ending box */
body.narrative-page #endingBox {
  background: rgba(8, 14, 8, 0.9);
  border: 1px solid #2a422a;
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

body.narrative-page #endingBox h2 {
  font-size: 1.4rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--accent3);
}

body.narrative-page #endingBox p {
  color: #8aaa8a;
  font-size: 0.95rem;
  line-height: 1.8;
}

/* instructions */
body.narrative-page .instructions {
  background: rgba(10, 18, 10, 0.6);
  border-left: 2px solid #2a4a2a;
  color: #6a8a6a;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* page title */
body.narrative-page h1 {
  color: #c8d4c8;
  margin-bottom: 6px;
}

/* mobile */
@media (max-width: 600px) {
  body.narrative-page #storyBox {
    padding: 20px 18px;
    font-size: 0.95rem;
  }

  .narrative-toprow {
    gap: 8px;
  }

  #progressLabel {
    font-size: 0.65rem;
  }
}


/* 9. RPS game */

/* arena layout */
.rps-arena {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.rps-fighter { text-align: center; }

.rps-fighter .label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 8px;
  display: block;
}

.rps-hand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80px;
  color: var(--accent);
  font-size: 3rem; 
}

.rps-hand .rps-pixel-icon {
  width: 80px;
  height: 80px;
  display: block;
  margin: 0 auto;
  image-rendering: pixelated;
}

.vs-label {
  font-family: var(--font-head);
  font-size: 1.4rem;
  color: var(--border);
}

/* choice buttons */
.rps-choices {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.rps-choice-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--card-bg) !important;
  border: 2px solid var(--border) !important;
  color: var(--text) !important;
  border-radius: 12px !important;
  padding: 16px 24px !important;
  cursor: pointer;
  font-family: inherit !important;
  font-weight: normal !important;
  font-size: 2.2rem !important;
  line-height: 1 !important;
  transition: border-color 0.2s, transform 0.15s;
}

.rps-choice-btn:hover {
  border-color: var(--accent);
  transform: scale(1.1);
}

/* result & scoreboard */
#rpsResult {
  text-align: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  min-height: 36px;
  margin-bottom: 16px;
}

.result-win  { color: var(--accent3); }
.result-lose { color: var(--accent2); }
.result-draw { color: var(--accent);  }

.score-board {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.score-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 28px;
  text-align: center;
  min-width: 90px;
}

.score-item .score-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--accent);
}

.score-item .score-label {
  font-size: 0.8rem;
  color: var(--muted);
}

/* animations */
@keyframes rpsPump {
  0%   { transform: translateY(0); }
  40%  { transform: translateY(-18px); }
  100% { transform: translateY(0); }
}
.rps-pump { animation: rpsPump 0.22s ease-in-out both; }

@keyframes rpsShake {
  0%, 100% { transform: translateX(0); }
  18%       { transform: translateX(-10px); }
  36%       { transform: translateX(10px); }
  54%       { transform: translateX(-8px); }
  72%       { transform: translateX(8px); }
  88%       { transform: translateX(-4px); }
}
.rps-shake { animation: rpsShake 0.5s ease both; }

@keyframes rpsBounce {
  0%, 100% { transform: translateY(0); }
  25%       { transform: translateY(-12px); }
  50%       { transform: translateY(0); }
  75%       { transform: translateY(-6px); }
}
.rps-bounce { animation: rpsBounce 0.6s ease both; }

@keyframes rpsGlow {
  0%   { text-shadow: 0 0 0px transparent; }
  40%  { text-shadow: 0 0 18px rgba(90, 224, 160, 0.9), 0 0 36px rgba(90, 224, 160, 0.4); }
  100% { text-shadow: 0 0 0px transparent; }
}
.rps-glow { animation: rpsGlow 1.2s ease both; }

@keyframes rpsConfettiFly {
  0%   { transform: translate(-50%, -50%) rotate(0deg) translateX(0) scale(1); opacity: 1; }
  70%  { opacity: 1; }
  100% { transform: translate(-50%, -50%) rotate(var(--angle)) translateX(var(--dist)) scale(0.3); opacity: 0; }
}

/* 10. alien runner game */
#gameContainer {
  position: relative;
  background: var(--card-bg);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  height: 200px;
  margin-bottom: 16px;
}

#gameCanvas {
  display: block;
  width: 100%;
  height: 100%;
  image-rendering: pixelated;
}

#alienScore {
  position: absolute;
  top: 12px;
  right: 16px;
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--muted);
}

#gameOverOverlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 15, 26, 0.88);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

#gameOverOverlay h2 {
  color: var(--accent2);
  font-size: 1.6rem;
}

#highScoreMsg {
  color: var(--accent3);
  font-size: 0.9rem;
  min-height: 20px;
}

#alien-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 10px 0;
}

/* top row: Jump + hints sit together on one line */
.controls-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hint-text {
  font-size: 0.9rem;
  padding: 0 8px;
  color: var(--muted);
}

@keyframes jumpArc {
  0%   { bottom: 52px; }
  50%  { bottom: 150px; }
  100% { bottom: 52px; }
}

.jumping {
  animation: jumpArc 0.55s ease-in-out;
}

/* 11. responsive */
@media (max-width: 600px) {
  .site-header {
    padding: 14px 20px;
  }

  .games-section {
    padding: 24px 16px 60px;
  }

  .hero {
    padding: 60px 16px 40px;
  }

  .nickname-box {
    padding: 18px 20px;
  }
}


/* blue nebula background */
body:not(.narrative-page) {
  background-color: #060810;
}

/* nebula layer */
body:not(.narrative-page)::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    /* bright core glow — centre */
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(30, 80, 160, 0.35) 0%, transparent 70%),
    /* teal cloud — top left */
    radial-gradient(ellipse 45% 35% at 15% 20%, rgba(20, 160, 180, 0.18) 0%, transparent 65%),
    /* purple haze — bottom right */
    radial-gradient(ellipse 50% 40% at 85% 75%, rgba(80, 30, 160, 0.22) 0%, transparent 65%),
    /* soft blue wash — top right */
    radial-gradient(ellipse 40% 30% at 80% 15%, rgba(40, 100, 200, 0.15) 0%, transparent 60%),
    /* deep base */
    radial-gradient(ellipse 100% 100% at 50% 50%, #0a0e1f 0%, #060810 100%);
  pointer-events: none;
  z-index: 0;
}

/* star field layer via after */
body:not(.narrative-page)::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    /* small stars — tight grid */
    radial-gradient(1px 1px at 10% 15%, rgba(180, 210, 255, 0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 25% 8%,  rgba(180, 210, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 40% 22%, rgba(200, 225, 255, 0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 5%,  rgba(180, 210, 255, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 70% 18%, rgba(200, 225, 255, 0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 85% 10%, rgba(180, 210, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 92% 28%, rgba(200, 225, 255, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 5%  40%, rgba(180, 210, 255, 0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 18% 55%, rgba(200, 225, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 33% 48%, rgba(180, 210, 255, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 48% 62%, rgba(200, 225, 255, 0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 63% 35%, rgba(180, 210, 255, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 77% 50%, rgba(200, 225, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 42%, rgba(180, 210, 255, 0.7) 0%, transparent 100%),
    radial-gradient(1px 1px at 95% 60%, rgba(200, 225, 255, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 12% 72%, rgba(180, 210, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 28% 80%, rgba(200, 225, 255, 0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 44% 88%, rgba(180, 210, 255, 0.6) 0%, transparent 100%),
    radial-gradient(1px 1px at 60% 75%, rgba(200, 225, 255, 0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 75% 85%, rgba(180, 210, 255, 0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 90% 90%, rgba(200, 225, 255, 0.3) 0%, transparent 100%),
    /* slightly bigger accent stars */
    radial-gradient(2px 2px at 20% 30%, rgba(220, 235, 255, 0.8) 0%, transparent 100%),
    radial-gradient(2px 2px at 50% 50%, rgba(150, 200, 255, 0.6) 0%, transparent 100%),
    radial-gradient(2px 2px at 72% 22%, rgba(220, 235, 255, 0.7) 0%, transparent 100%),
    radial-gradient(2px 2px at 38% 70%, rgba(150, 200, 255, 0.5) 0%, transparent 100%),
    radial-gradient(2px 2px at 82% 65%, rgba(220, 235, 255, 0.6) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

