/* ==========================================================
   Hytale Theme — Voxel Adventure RPG
   Arcane purple, adventurer teal, quest gold, hero sky
   ========================================================== */

:root {
  --bg:       #080820;
  --bg-card:  #10102c;
  --bg-hover: #18183a;
  --text:     #d0d0f0;
  --muted:    #6868a0;
  --border:   #28286a;
  --accent:   #9060ff;
  --accent2:  #ffd060;
  --link:     #20d0b0;

  --hy-purple: #9060ff;
  --hy-teal:   #20d0b0;
  --hy-gold:   #ffd060;
  --hy-sky:    #4080ff;
  --hy-rose:   #ff6090;

  --font-h:    'Rajdhani', sans-serif;
  --font-body: 'Exo 2', sans-serif;
  --font-mono: 'Share Tech Mono', monospace;
}

/* ── Background: arcane night sky ──────────────────────── */
body {
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse at 25% 85%, rgba(144, 96, 255, .12) 0%, transparent 50%),
    radial-gradient(ellipse at 75% 15%, rgba(32, 208, 176, .08) 0%, transparent 45%),
    radial-gradient(ellipse at 50% 50%, rgba(64, 128, 255, .05) 0%, transparent 55%);
}

/* ── Scoped overrides ───────────────────────────────────── */
body.theme-hytale h1,
body.theme-hytale h2,
body.theme-hytale h3 {
  color: var(--hy-gold);
  text-shadow: 0 0 20px rgba(144, 96, 255, .3);
}

body.theme-hytale .site-header {
  border-bottom-color: var(--hy-purple);
}

body.theme-hytale .info-box {
  border-left-color: var(--hy-teal);
}

body.theme-hytale .page-header__eyebrow {
  color: var(--hy-teal);
}

body.theme-hytale a {
  color: var(--hy-teal);
}

/* ── Game info panel (Hytale overrides) ──────────────────── */
body.theme-hytale .game-info-panel__title {
  text-shadow: 0 0 16px rgba(144, 96, 255, .4);
}
