:root {
  color-scheme: dark;
  font-family: Arial, Helvetica, sans-serif;
  background: #05070c;
  color: #f8fafc;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #05070c;
}

.shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: max(24px, env(safe-area-inset-top)) 20px max(24px, env(safe-area-inset-bottom));
  overflow: hidden;
}

.hero {
  width: min(100%, 460px);
  position: relative;
  text-align: center;
}

.brand {
  width: min(100%, 420px);
  height: auto;
  display: block;
  margin: 12px auto 0;
}

.brand-background {
  position: fixed;
  inset: 50% auto auto 50%;
  width: min(120vw, 920px);
  opacity: 0.14;
  transform: translate(-50%, -50%) scale(1.45);
  pointer-events: none;
}

.topline {
  color: #38bdf8;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.subtitle {
  color: #cbd5e1;
  font-size: 18px;
  margin: 16px 0 22px;
}

.player {
  position: relative;
  background: rgba(31, 41, 55, 0.92);
  border: 1px solid #334155;
  border-radius: 8px;
  padding: 22px;
}

.status-row {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #e5e7eb;
  font-weight: 700;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #64748b;
}

.dot.live {
  background: #22c55e;
}

button,
a {
  min-height: 52px;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
}

.play-button {
  width: 100%;
  min-height: 64px;
  margin-top: 22px;
  border: 0;
  background: #facc15;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 19px;
}

.track-panel {
  min-height: 82px;
  margin-top: 14px;
  border: 1px solid #334155;
  border-radius: 8px;
  background: #0f172a;
  padding: 12px 14px;
  text-align: left;
}

.track-label {
  color: #38bdf8;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.track-title {
  color: #f8fafc;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  margin-top: 6px;
  overflow-wrap: anywhere;
}

.actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.secondary {
  border: 1px solid #475569;
  background: transparent;
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
}

.ios-help {
  color: #cbd5e1;
  line-height: 1.45;
  margin: 18px auto 0;
  max-width: 340px;
}
