:root {
  /* Backgrounds */
  --bg-body: #0a0a0f;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-border: rgba(255, 255, 255, 0.08);
  --bg-btn-disabled: #333;
  --bg-btn-subscribed: rgba(255, 255, 255, 0.08);
  --bg-ios-box: rgba(255, 255, 255, 0.03);
  --bg-ios-border: rgba(255, 255, 255, 0.12);

  /* Text */
  --text-primary: #e0e0e8;
  --text-subtitle: #888;
  --text-metric-label: #888;
  --text-updated: #666;
  --text-info: #777;
  --text-info-strong: #aaa;
  --text-footer: #555;
  --text-ios-steps: #bbb;
  --text-ios-steps-strong: #fff;

  /* Accents */
  --accent-gradient: linear-gradient(135deg, #00ff88, #00ccff, #8b5cf6);
  --accent-link: #00ccff;
  --accent-subscribed-border: rgba(0, 255, 136, 0.3);
  --accent-subscribed-text: #00ff88;
  --accent-ios-heading: #fbbf24;
  --accent-ios-share: #00ccff;

  /* Level colors */
  --level-quiet: #555;
  --level-low: #00ff88;
  --level-moderate: #fbbf24;
  --level-high: #f97316;
  --level-alert: #ef4444;
  --level-alert-glow: rgba(239, 68, 68, 0.4);
  --level-alert-glow-strong: rgba(239, 68, 68, 0.8);

  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --card-radius: 1.25rem;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background: var(--bg-body);
  color: var(--text-primary);
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
}

/* Star field */
.stars {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(1px 1px at 10% 20%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1px 1px at 25% 50%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 40% 15%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1.5px 1.5px at 55% 70%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1px 1px at 70% 35%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 85% 80%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1.5px 1.5px at 15% 85%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1px 1px at 50% 40%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 90% 10%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 35% 90%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1.5px 1.5px at 60% 5%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(1px 1px at 80% 55%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 5% 60%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(1px 1px at 45% 75%, rgba(255, 255, 255, 0.4), transparent),
    radial-gradient(1.5px 1.5px at 95% 45%, rgba(255, 255, 255, 0.5), transparent);
}

main {
  position: relative;
  z-index: 1;
  max-width: 480px;
  width: 100%;
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.subtitle {
  font-size: 0.9rem;
  color: var(--text-subtitle);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 0.25rem;
}

/* Status Card */
.card {
  margin-top: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-card-border);
  border-radius: var(--card-radius);
  padding: 2rem 1.5rem;
  backdrop-filter: blur(12px);
}

.level {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.4s;
}

.metrics {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 1.5rem;
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

.metric-label {
  font-size: 0.75rem;
  color: var(--text-metric-label);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
}

.updated {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--text-updated);
}

/* Level colors */
.level-quiet { color: var(--level-quiet); }
.level-low { color: var(--level-low); }
.level-moderate { color: var(--level-moderate); }
.level-high { color: var(--level-high); }
.level-alert {
  color: var(--level-alert);
  animation: pulse-glow 1.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; text-shadow: 0 0 8px var(--level-alert-glow); }
  50% { opacity: 0.7; text-shadow: 0 0 20px var(--level-alert-glow-strong); }
}

/* Notify Button */
.notify-btn {
  margin-top: 2rem;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent-gradient);
  background-size: 200% 200%;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}

.notify-btn:hover:not(:disabled) {
  transform: scale(1.03);
}

.notify-btn:active:not(:disabled) {
  transform: scale(0.98);
}

.notify-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: var(--bg-btn-disabled);
}

.notify-btn.subscribed {
  background: var(--bg-btn-subscribed);
  border: 1px solid var(--accent-subscribed-border);
  color: var(--accent-subscribed-text);
}

/* iOS Install Prompt */
.ios-install {
  margin-top: 2rem;
}

.ios-install-box {
  position: relative;
  border: 2px solid var(--bg-ios-border);
  border-radius: var(--card-radius);
  padding: 1.5rem 1.25rem;
  background: var(--bg-ios-box);
}

.ios-install-box .notify-btn {
  margin-top: 0;
  pointer-events: none;
  opacity: 0.25;
  filter: grayscale(1);
  background: var(--bg-btn-disabled);
}

.ios-install-instructions {
  margin-top: 1.25rem;
}

.ios-install-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-ios-heading);
  margin-bottom: 0.5rem;
}

.ios-install-steps {
  font-size: 0.9rem;
  color: var(--text-ios-steps);
  line-height: 1.6;
}

.ios-install-steps strong {
  color: var(--text-ios-steps-strong);
}

.ios-icon-share {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  color: var(--accent-ios-share);
  margin: 0 0.15em;
}

/* Info */
.info {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--text-info);
  line-height: 1.6;
}

.info p + p {
  margin-top: 0.5rem;
}

.info strong {
  color: var(--text-info-strong);
}

footer {
  margin-top: 3rem;
  font-size: 0.75rem;
  color: var(--text-footer);
}

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

footer a:hover {
  text-decoration: underline;
}

/* =============================================
   Theme Visibility
   ============================================= */

[data-theme="explorer"] .kids-only { display: none !important; }
[data-theme="kids"] .explorer-only { display: none !important; }

/* =============================================
   Theme: Kids — "PNW Night Watch"
   ============================================= */

[data-theme="kids"] {
  --bg-body: #0b1628;
  --bg-card: rgba(20, 40, 80, 0.55);
  --bg-card-border: rgba(100, 200, 255, 0.15);
  --bg-btn-disabled: #1a2a4a;
  --bg-btn-subscribed: rgba(100, 200, 255, 0.12);
  --bg-ios-box: rgba(20, 40, 80, 0.4);
  --bg-ios-border: rgba(100, 200, 255, 0.2);

  --text-primary: #f0e6ff;
  --text-subtitle: #8ec8e8;
  --text-metric-label: #8ec8e8;
  --text-updated: #7aa8c8;
  --text-info: #8ec8e8;
  --text-info-strong: #c8e8ff;
  --text-footer: #4a7a9a;
  --text-ios-steps: #a8d0e8;
  --text-ios-steps-strong: #fff;

  --accent-gradient: linear-gradient(135deg, #ff6bcb, #ffb347, #7cefcf, #6bc5ff);
  --accent-link: #7cefcf;
  --accent-subscribed-border: rgba(124, 239, 207, 0.4);
  --accent-subscribed-text: #7cefcf;
  --accent-ios-heading: #ffb347;
  --accent-ios-share: #6bc5ff;

  --level-quiet: #8ec8e8;
  --level-low: #7cefcf;
  --level-moderate: #ffb347;
  --level-high: #ff6bcb;
  --level-alert: #ff4466;
  --level-alert-glow: rgba(255, 68, 102, 0.4);
  --level-alert-glow-strong: rgba(255, 68, 102, 0.8);

  --font-family: "Fredoka", system-ui, sans-serif;
  --card-radius: 1.5rem;
}

/* Kids title */
.kids-title {
  font-size: 1.6rem;
  line-height: 1.3;
  letter-spacing: 0;
}

/* Kids level display */
.kids-level {
  text-align: center;
}

.kids-level-emoji {
  font-size: 2.2rem;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.kids-level-text {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.4s;
}

/* =============================================
   Kids Scene: Background
   ============================================= */

.kids-scene {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* Twinkling stars for kids mode */
.kids-stars {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1.5px 1.5px at 8% 12%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(2px 2px at 20% 35%, rgba(200, 220, 255, 0.9), transparent),
    radial-gradient(1px 1px at 32% 8%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(2px 2px at 45% 55%, rgba(255, 240, 200, 0.8), transparent),
    radial-gradient(1.5px 1.5px at 58% 18%, rgba(200, 230, 255, 0.7), transparent),
    radial-gradient(1px 1px at 72% 42%, rgba(255, 255, 255, 0.5), transparent),
    radial-gradient(2px 2px at 85% 15%, rgba(255, 220, 180, 0.8), transparent),
    radial-gradient(1.5px 1.5px at 92% 60%, rgba(200, 200, 255, 0.7), transparent),
    radial-gradient(1px 1px at 15% 65%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(2px 2px at 38% 78%, rgba(200, 240, 255, 0.7), transparent),
    radial-gradient(1.5px 1.5px at 65% 72%, rgba(255, 200, 255, 0.6), transparent),
    radial-gradient(1px 1px at 78% 88%, rgba(255, 255, 255, 0.5), transparent);
  animation: twinkle 4s ease-in-out infinite alternate;
}

@keyframes twinkle {
  0% { opacity: 0.7; }
  100% { opacity: 1; }
}

/* Aurora ribbons */
.aurora-ribbon {
  position: absolute;
  width: 200%;
  border-radius: 50%;
  filter: blur(50px);
  will-change: transform, opacity;
  pointer-events: none;
}

.ribbon-1 {
  height: 28vh;
  top: 4%;
  left: -50%;
  background: linear-gradient(90deg, transparent 5%, #00ff88 30%, #00ccff 60%, transparent 95%);
  opacity: 0.25;
  animation: aurora-drift-1 14s ease-in-out infinite alternate;
}

.ribbon-2 {
  height: 22vh;
  top: 10%;
  left: -40%;
  background: linear-gradient(90deg, transparent 5%, #8b5cf6 25%, #ff6bcb 55%, transparent 95%);
  opacity: 0.18;
  animation: aurora-drift-2 18s ease-in-out infinite alternate;
}

.ribbon-3 {
  height: 18vh;
  top: 2%;
  left: -30%;
  background: linear-gradient(90deg, transparent 10%, #7cefcf 40%, #6bc5ff 70%, transparent 95%);
  opacity: 0.2;
  animation: aurora-drift-3 22s ease-in-out infinite alternate;
}

@keyframes aurora-drift-1 {
  0%   { transform: translateX(-8%) scaleY(0.8); opacity: 0.2; }
  50%  { transform: translateX(6%) scaleY(1.3); opacity: 0.35; }
  100% { transform: translateX(-4%) scaleY(1); opacity: 0.25; }
}

@keyframes aurora-drift-2 {
  0%   { transform: translateX(5%) scaleY(1); opacity: 0.15; }
  50%  { transform: translateX(-8%) scaleY(1.4); opacity: 0.3; }
  100% { transform: translateX(3%) scaleY(0.9); opacity: 0.18; }
}

@keyframes aurora-drift-3 {
  0%   { transform: translateX(-6%) scaleY(1.1); opacity: 0.18; }
  50%  { transform: translateX(8%) scaleY(0.7); opacity: 0.28; }
  100% { transform: translateX(-3%) scaleY(1.2); opacity: 0.2; }
}

/* Aurora intensity levels — override ribbon opacity */
.aurora-intensity-quiet .aurora-ribbon { opacity: 0.08; }
.aurora-intensity-low .ribbon-1 { opacity: 0.2; }
.aurora-intensity-low .ribbon-2 { opacity: 0.12; }
.aurora-intensity-low .ribbon-3 { opacity: 0.15; }
.aurora-intensity-moderate .ribbon-1 { opacity: 0.35; }
.aurora-intensity-moderate .ribbon-2 { opacity: 0.25; }
.aurora-intensity-moderate .ribbon-3 { opacity: 0.3; }
.aurora-intensity-high .ribbon-1 { opacity: 0.5; }
.aurora-intensity-high .ribbon-2 { opacity: 0.4; }
.aurora-intensity-high .ribbon-3 { opacity: 0.45; }
.aurora-intensity-alert .ribbon-1 { opacity: 0.7; animation-duration: 6s; }
.aurora-intensity-alert .ribbon-2 { opacity: 0.6; animation-duration: 8s; }
.aurora-intensity-alert .ribbon-3 { opacity: 0.65; animation-duration: 7s; }

/* Forest silhouette layers */
.forest-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-repeat: repeat-x;
  background-position: bottom center;
  background-size: auto 100%;
  pointer-events: none;
}

.forest-back {
  height: 28vh;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 120'%3E%3Cpolygon points='20,30 8,120 32,120' fill='%23091520'/%3E%3Cpolygon points='55,20 40,120 70,120' fill='%23091520'/%3E%3Cpolygon points='95,35 82,120 108,120' fill='%23091520'/%3E%3Cpolygon points='130,15 115,120 145,120' fill='%23091520'/%3E%3Cpolygon points='170,28 155,120 185,120' fill='%23091520'/%3E%3Cpolygon points='210,22 195,120 225,120' fill='%23091520'/%3E%3Cpolygon points='250,32 237,120 263,120' fill='%23091520'/%3E%3Cpolygon points='285,18 270,120 300,120' fill='%23091520'/%3E%3C/svg%3E");
}

.forest-mid {
  height: 24vh;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 250 100'%3E%3Cpolygon points='15,25 5,100 25,100' fill='%230a1a15'/%3E%3Cpolygon points='45,15 32,100 58,100' fill='%230a1a15'/%3E%3Cpolygon points='80,30 68,100 92,100' fill='%230a1a15'/%3E%3Cpolygon points='115,10 100,100 130,100' fill='%230a1a15'/%3E%3Cpolygon points='150,22 138,100 162,100' fill='%230a1a15'/%3E%3Cpolygon points='185,18 172,100 198,100' fill='%230a1a15'/%3E%3Cpolygon points='220,28 208,100 232,100' fill='%230a1a15'/%3E%3C/svg%3E");
}

.forest-front {
  height: 16vh;
  opacity: 0.55;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 70'%3E%3Cpolygon points='10,15 0,70 20,70' fill='%23060e08'/%3E%3Cpolygon points='40,8 27,70 53,70' fill='%23060e08'/%3E%3Cpolygon points='75,18 63,70 87,70' fill='%23060e08'/%3E%3Cpolygon points='110,5 95,70 125,70' fill='%23060e08'/%3E%3Cpolygon points='145,12 133,70 157,70' fill='%23060e08'/%3E%3Cpolygon points='178,8 165,70 191,70' fill='%23060e08'/%3E%3C/svg%3E");
}

/* =============================================
   Creatures
   ============================================= */

.creatures {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.creature {
  position: absolute;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.creature-fox {
  bottom: 14vh;
  left: 6%;
  width: 80px;
}

.creature-owl {
  bottom: 22vh;
  right: 8%;
  width: 55px;
}

.creature-sasquatch {
  bottom: 14vh;
  right: 22%;
  width: 45px;
  opacity: 0;
}

/* Owl eyelids — default: closed (sleeping) */
.owl-lid {
  transition: opacity 0.5s ease;
  opacity: 1;
}

/* Owl wings — default: folded */
.owl-wing-l, .owl-wing-r {
  transition: transform 0.4s ease;
  transform-origin: top center;
}

/* Fox zzz — default: visible */
.fox-zzz {
  transition: opacity 0.5s ease;
  opacity: 1;
}

/* Fox tail wag */
.fox-tail {
  transform-origin: 55px 40px;
  transition: transform 0.3s ease;
}

/* Fox eyes — default: sleepy slits */
.fox-eye {
  transition: ry 0.4s ease, rx 0.4s ease;
  ry: 0.5;
}

/* Sasquatch eyes glow */
.sasquatch-eye {
  filter: blur(1px);
  transition: opacity 0.5s ease, filter 0.5s ease;
}

/* --- Excitement Levels --- */

/* QUIET: Fox sleeping, owl sleeping, sasquatch hidden */
.excitement-quiet .creature-fox { transform: scaleX(1.05) scaleY(0.9) translateY(8px); }
.excitement-quiet .fox-eye { ry: 0.5; }
.excitement-quiet .fox-zzz { opacity: 1; animation: float-zzz 3s ease-in-out infinite; }
.excitement-quiet .creature-sasquatch { opacity: 0; }
.excitement-quiet .owl-lid { opacity: 1; }

/* LOW: Fox wakes, owl peeks, sasquatch eyes barely visible */
.excitement-low .creature-fox { transform: none; }
.excitement-low .fox-eye { ry: 1.2; rx: 1.8; }
.excitement-low .fox-zzz { opacity: 0; }
.excitement-low .owl-lid { opacity: 0.5; }
.excitement-low .creature-sasquatch { opacity: 0.25; }
.excitement-low .sasquatch-eye { opacity: 0.4; }

/* MODERATE: Fox alert, owl awake, sasquatch visible */
.excitement-moderate .creature-fox { transform: translateY(-4px); }
.excitement-moderate .fox-eye { ry: 2; rx: 2; }
.excitement-moderate .fox-zzz { opacity: 0; }
.excitement-moderate .fox-tail { animation: wag 0.8s ease-in-out infinite alternate; }
.excitement-moderate .owl-lid { opacity: 0; }
.excitement-moderate .creature-sasquatch { opacity: 0.5; }

/* HIGH: Fox excited, owl spreading wings, sasquatch stepping out */
.excitement-high .creature-fox { transform: translateY(-10px); animation: fox-hop 0.6s ease-in-out infinite alternate; }
.excitement-high .fox-eye { ry: 2.5; rx: 2.5; }
.excitement-high .fox-zzz { opacity: 0; }
.excitement-high .fox-tail { animation: wag 0.4s ease-in-out infinite alternate; }
.excitement-high .owl-lid { opacity: 0; }
.excitement-high .owl-wing-l { transform: rotate(-20deg); }
.excitement-high .owl-wing-r { transform: rotate(20deg); }
.excitement-high .creature-sasquatch { opacity: 0.8; transform: translateY(-5px); }

/* ALERT: Everything goes wild */
.excitement-alert .creature-fox { animation: fox-bounce 0.4s ease-in-out infinite alternate; }
.excitement-alert .fox-eye { ry: 3; rx: 2.5; }
.excitement-alert .fox-zzz { opacity: 0; }
.excitement-alert .fox-tail { animation: wag 0.25s ease-in-out infinite alternate; }
.excitement-alert .owl-lid { opacity: 0; }
.excitement-alert .owl-wing-l { animation: flap-left 0.3s ease-in-out infinite alternate; }
.excitement-alert .owl-wing-r { animation: flap-right 0.3s ease-in-out infinite alternate; }
.excitement-alert .creature-owl { animation: owl-bob 0.5s ease-in-out infinite alternate; }
.excitement-alert .creature-sasquatch { opacity: 1; animation: squatch-celebrate 0.6s ease-in-out infinite alternate; }
.excitement-alert .sasquatch-eye { filter: blur(2px) brightness(1.5); }

/* Creature keyframes */
@keyframes float-zzz {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes wag {
  0% { transform: rotate(-8deg); }
  100% { transform: rotate(8deg); }
}

@keyframes fox-hop {
  0% { transform: translateY(-8px); }
  100% { transform: translateY(-14px); }
}

@keyframes fox-bounce {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-18px) scale(1.05); }
}

@keyframes flap-left {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-35deg); }
}

@keyframes flap-right {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(35deg); }
}

@keyframes owl-bob {
  0% { transform: translateY(0); }
  100% { transform: translateY(-6px); }
}

@keyframes squatch-celebrate {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-12px) scale(1.08); }
}

/* =============================================
   Theme Toggle
   ============================================= */

.theme-toggle {
  margin-top: 2rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.theme-toggle-btn {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.3rem;
  cursor: pointer;
  font-family: var(--font-family);
}

.toggle-option {
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  border-radius: 100px;
  transition: color 0.3s, background 0.3s;
  z-index: 1;
  position: relative;
  color: var(--text-footer);
  user-select: none;
}

.toggle-slider {
  position: absolute;
  width: calc(50% - 0.3rem);
  height: calc(100% - 0.6rem);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  top: 0.3rem;
  left: 0.3rem;
}

/* Active theme indication */
[data-theme="kids"] .toggle-slider {
  transform: translateX(100%);
}

[data-theme="explorer"] .toggle-explorer,
[data-theme="kids"] .toggle-kids {
  color: var(--text-primary);
}

[data-theme="kids"] .theme-toggle-btn {
  border-color: rgba(124, 239, 207, 0.2);
}

/* =============================================
   Accessibility: Reduced Motion
   ============================================= */

@media (prefers-reduced-motion: reduce) {
  .aurora-ribbon,
  .kids-stars,
  .creature,
  .fox-tail,
  .owl-wing-l,
  .owl-wing-r,
  .fox-zzz,
  .creature-fox,
  .creature-owl,
  .creature-sasquatch {
    animation: none !important;
  }
  .toggle-slider {
    transition: none;
  }
}
