/* Celestial Frequency — radio.echovestia.org
   Deliberately minimal placeholder: flat colors, no gradients/blur/animation.
   A real visual pass is planned once a design reference is ready — see the
   Roadmap in the top-level README. Keep IDs/classes stable so player.js
   doesn't need touching when the redesign lands. */

* {
  box-sizing: border-box;
}

:root {
  --font-main: Arial, BlinkMacSystemFont, Roboto, sans-serif;
  --bg: #f8f9fa;
  --text: #333;
  --muted: #999;
  --accent: #1e4c7d;
}

:root[data-theme="dark"] {
  --bg: #111;
  --text: #eee;
  --muted: #777;
  --accent: #9cc2e8;
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg);
  font-family: var(--font-main);
  color: var(--text);
}

.app {
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px;
}

.top-bar {
  width: 100%;
  max-width: 480px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

.home-link {
  color: var(--text);
  opacity: 0.7;
  text-decoration: none;
}
.home-link:hover { opacity: 1; }

.theme-toggle {
  background: none;
  border: 1px solid var(--muted);
  color: var(--text);
  font-size: 14px;
  cursor: pointer;
  padding: 6px 10px;
}
.theme-toggle:hover { opacity: 0.8; }

.stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
  width: 100%;
}

.station-name {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  margin: 0;
  text-transform: uppercase;
}

.station-tagline {
  font-size: 13px;
  opacity: 0.7;
  margin: 0;
  max-width: 320px;
  line-height: 1.5;
  min-height: 1.5em;
}

.orb-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.orb { display: none; }

.play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid var(--muted);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text);
}
.play-btn:active { opacity: 0.7; }
.play-btn[disabled] { opacity: 0.5; cursor: wait; }

.play-btn svg { width: 26px; height: 26px; fill: var(--text); }
.play-btn .icon-pause { display: none; }
.play-btn.is-playing .icon-play { display: none; }
.play-btn.is-playing .icon-pause { display: block; }

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: 1px;
  opacity: 0.7;
}

.live-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--muted);
}
.live-badge.is-live .dot {
  background: var(--accent);
}

.status-text {
  font-size: 11px;
  opacity: 0.5;
}

footer.site-footer {
  font-size: 11px;
  opacity: 0.5;
  text-align: center;
}
footer.site-footer a { color: inherit; text-decoration: none; }
footer.site-footer a:hover { opacity: 1; }
