:root {
  --orange: #f47b20;
  --orange-hot: #ff9a3d;
  --orange-deep: #c85a0a;
  --bg: #0d0b09;
  --bg-card: #171310;
  --border: #2a221b;
  --text: #f2ece5;
  --text-dim: #a89b8c;
  --display: "Titan One", system-ui, sans-serif;
  --body: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background:
    radial-gradient(1100px 600px at 50% -150px, rgba(244, 123, 32, 0.22), transparent 65%),
    var(--bg);
  color: var(--text);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1.25rem;
}

/* ---------- Hero ---------- */

.hero {
  text-align: center;
  padding: 4.5rem 0 1.5rem;
}

.brand {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.8rem, 9vw, 5.5rem);
  line-height: 1.05;
  color: #fff;
  text-shadow:
    0 0 6px rgba(244, 123, 32, 0.35),
    0 0 30px rgba(244, 123, 32, 0.45),
    0 4px 0 var(--orange-deep);
  letter-spacing: 0.02em;
}

.brand span { color: var(--orange-hot); }

.tagline {
  margin-top: 1rem;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-dim);
  line-height: 1.6;
}

/* ---------- Next-stream banner ---------- */

.next-banner {
  margin: 1.5rem 0 2.5rem;
  padding: 1rem 2rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-card);
  text-align: center;
  font-size: clamp(1rem, 2.8vw, 1.35rem);
  box-shadow: 0 0 25px rgba(244, 123, 32, 0.12);
}

.next-banner strong { color: var(--orange-hot); }

.next-banner .countdown {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: #fff;
}

.next-banner.live {
  border-color: var(--orange);
  animation: live-pulse 1.6s ease-in-out infinite;
}

.next-banner.live .live-dot {
  display: inline-block;
  width: 0.7em;
  height: 0.7em;
  margin-right: 0.4em;
  border-radius: 50%;
  background: #ff3b30;
  animation: dot-blink 1.2s ease-in-out infinite;
}

@keyframes live-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(244, 123, 32, 0.25); }
  50%      { box-shadow: 0 0 45px rgba(244, 123, 32, 0.55); }
}

@keyframes dot-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

/* ---------- Show cards ---------- */

.shows {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 900px;
}

.show-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  text-align: center;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.show-card:hover {
  border-color: var(--orange-deep);
  box-shadow: 0 0 35px rgba(244, 123, 32, 0.18);
  transform: translateY(-3px);
}

.show-card img {
  width: 100%;
  max-width: 320px;
  height: auto;
  margin-bottom: 1.25rem;
}

.show-card .sydney-time {
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.show-card .local-time {
  margin-top: 0.4rem;
  font-size: 1.05rem;
  color: var(--text-dim);
}

.show-card .local-time strong { color: var(--orange-hot); }

.show-card .skip-note {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #e8b53a;
}

.platforms {
  margin-top: 1.4rem;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.platform-btn,
.social-btn {
  display: inline-block;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #201a15;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.platform-btn:hover,
.social-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #100a05;
}

/* ---------- About ---------- */

.about {
  max-width: 700px;
  text-align: center;
  padding: 3.5rem 0 1rem;
}

.about h2 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--orange-hot);
  margin-bottom: 1rem;
}

.about p {
  line-height: 1.75;
  color: var(--text-dim);
  font-size: 1.05rem;
}

/* ---------- Footer ---------- */

.footer {
  padding: 2.5rem 0 3rem;
  text-align: center;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.fineprint {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* ---------- Motion preferences ---------- */

@media (prefers-reduced-motion: reduce) {
  .next-banner.live,
  .next-banner.live .live-dot { animation: none; }
  .show-card { transition: none; }
  .show-card:hover { transform: none; }
}
