/* ============================================================
   LIVE SHOW PAGE (Public) — VAN Dark UI (Production)
   ------------------------------------------------------------
   Targets every class used in:
   src/views/pages/live/show.php

   Includes:
   - Hero + player + meta/actions
   - Main layout (about, rundown, chat)
   - Sidebar (facts + subscription CTA)
   - Related grid
   - Reusable auth modal styles (same as /live index)
   - Removes reliance on inline chat styles by overriding with classes
     (inline styles still exist, but these will visually win where possible)

   Mobile-first → tablets → laptops → desktops → big screens
   ============================================================ */

/* -----------------------------
   Design tokens (safe defaults)
------------------------------ */
:root {
  --va-bg: #020617;
  --va-panel: rgba(15, 23, 42, 0.96);
  --va-panel-2: rgba(15, 23, 42, 0.9);

  --va-border: rgba(148, 163, 184, 0.22);
  --va-border-strong: rgba(148, 163, 184, 0.55);

  --va-text: #e5e7eb;
  --va-text-strong: #f9fafb;
  --va-text-muted: #9ca3af;

  --va-accent: #f5b200;
  --va-accent-2: #f97316;

  --va-blue: #2563eb;
  --va-live: #ef4444;
  --va-good: #22c55e;

  --va-radius-sm: 0.9rem;
  --va-radius-md: 1.2rem;
  --va-radius-lg: 1.5rem;
  --va-radius-pill: 999px;

  --va-shadow-1: 0 14px 40px rgba(0, 0, 0, 0.55);
  --va-shadow-2: 0 18px 50px rgba(0, 0, 0, 0.6);

  --va-max: 1200px;
}

/* -----------------------------
   Base + utilities
------------------------------ */
.live-show-page,
.live-show-page * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.live-show-page img {
  max-width: 100%;
  height: auto;
}

.dot {
  opacity: 0.6;
}

/* Prevent background scroll when modal opens */
html.modal-open {
  overflow: hidden;
}

/* Unified focus-visible ring */
.live-show-btn-primary:focus-visible,
.live-show-btn-secondary:focus-visible,
.live-show-btn-icon:focus-visible,
.live-show-follow-btn:focus-visible,
.live-show-section-link:focus-visible,
.live-related-thumb-link:focus-visible,
.live-related-title a:focus-visible,
.van-auth-modal__close:focus-visible,
.van-auth-modal__btn:focus-visible,
#chat-message:focus-visible,
#chat-form button:focus-visible {
  outline: 2px solid var(--va-accent);
  outline-offset: 2px;
}

/* ============================================================
   Page wrapper
============================================================ */
.live-show-page {
  min-height: 100vh;
  color: var(--va-text);
  background:
    radial-gradient(circle at top, rgba(245, 178, 0, 0.11), transparent 55%),
    radial-gradient(circle at bottom, rgba(37, 99, 235, 0.12), var(--va-bg) 70%);
}

/* ============================================================
   HERO
============================================================ */
.live-show-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(15, 23, 42, 0.9);
}

/* Backdrop image set inline */
.live-show-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  filter: brightness(0.65);
  transition:
    transform 0.45s ease,
    filter 0.45s ease;
}

.live-show-hero:hover .live-show-backdrop {
  transform: scale(1.09);
  filter: brightness(0.75);
}

.live-show-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.08),
    rgba(15, 23, 42, 0.88) 55%,
    var(--va-bg) 100%
  );
}

/* Hero inner layout */
.live-show-hero-inner {
  position: relative;
  max-width: var(--va-max);
  margin: 0 auto;
  padding: 1.35rem 1rem 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.25rem;
}

/* ============================================================
   PLAYER
============================================================ */
.live-show-player-wrap {
  min-width: 0;
}

/* Aspect wrapper (16:9) */
.live-show-player-aspect {
  position: relative;
  border-radius: 1.1rem;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(2, 6, 23, 0.55);
  box-shadow: var(--va-shadow-2);
  aspect-ratio: 16 / 9;
}

/* Make iframe fill the aspect box */
.live-show-player-aspect iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Placeholder player */
.live-show-player-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0.65rem;
  padding: 1.25rem;
  text-align: center;
  color: var(--va-text);
  background:
    radial-gradient(circle at top, rgba(245, 178, 0, 0.12), transparent 55%),
    rgba(2, 6, 23, 0.55);
}

.live-show-player-placeholder-icon {
  width: 3.15rem;
  height: 3.15rem;
  border-radius: var(--va-radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--va-text-strong);
  font-size: 1.25rem;
  margin: 0 auto;
}

.live-show-player-placeholder p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--va-text);
  opacity: 0.95;
}

/* Status / viewers pills over player */
.live-show-status-pill,
.live-show-viewers-pill {
  position: absolute;
  bottom: 0.75rem;
  padding: 0.2rem 0.65rem;
  font-size: 0.78rem;
  border-radius: var(--va-radius-pill);
  backdrop-filter: blur(6px);
}

.live-show-status-pill {
  left: 0.75rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(248, 250, 252, 0.22);
  color: var(--va-text);
}

.live-show-status-pill--live {
  background: rgba(239, 68, 68, 0.14);
  border-color: rgba(239, 68, 68, 0.55);
  color: #fecaca;
}

.live-show-viewers-pill {
  right: 0.75rem;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(248, 250, 252, 0.22);
  color: var(--va-text);
}

/* ============================================================
   META (right column)
============================================================ */
.live-show-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
}

.live-show-label {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.75rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.22rem 0.7rem;
  border-radius: var(--va-radius-pill);
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(148, 163, 184, 0.45);
  color: var(--va-text);
}

.live-show-title {
  margin: 0.2rem 0 0;
  font-family:
    Poppins,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  font-size: 1.7rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--va-text-strong);
}

.live-show-tagline {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--va-text);
  max-width: 60ch;
}

/* Meta rows */
.live-show-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.85rem;
  color: #cbd5f5;
  opacity: 0.95;
}

.live-show-schedule-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.85rem;
  color: var(--va-text);
}

.live-show-schedule-label {
  font-weight: 800;
  color: var(--va-text-strong);
}

/* Channel row */
.live-show-channel-row {
  margin-top: 0.65rem;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.75rem 0.75rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.6);
}

.live-show-channel-avatar {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: var(--va-radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: var(--va-bg);
  background: radial-gradient(
    circle at top,
    var(--va-accent),
    rgba(31, 41, 55, 1) 65%
  );
  border: 2px solid rgba(248, 250, 252, 0.6);
}

.live-show-channel-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}

.live-show-channel-name {
  font-weight: 900;
  color: var(--va-text-strong);
  font-size: 0.9rem;
  line-height: 1.2;
}

.live-show-channel-sub {
  font-size: 0.78rem;
  color: var(--va-text-muted);
}

/* Follow button */
.live-show-follow-btn {
  border-radius: var(--va-radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.92);
  color: var(--va-text);
  font-size: 0.85rem;
  padding: 0.45rem 0.95rem;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

.live-show-follow-btn:hover {
  border-color: rgba(248, 250, 252, 0.9);
  transform: translateY(-1px);
}

.live-show-follow-btn.is-following {
  border-color: rgba(37, 99, 235, 0.65);
  background: rgba(37, 99, 235, 0.14);
  color: #bfdbfe;
}

/* Actions */
.live-show-actions-row {
  margin-top: 0.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

/* Button base */
.live-show-btn-primary,
.live-show-btn-secondary,
.live-show-btn-icon {
  border-radius: var(--va-radius-pill);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 850;
  padding: 0.55rem 1.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  white-space: nowrap;
  transition:
    transform 0.15s ease,
    filter 0.15s ease,
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.live-show-btn-primary {
  background: linear-gradient(135deg, var(--va-accent), var(--va-accent-2));
  color: var(--va-bg);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.65);
}

.live-show-btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.78);
}

.live-show-btn-secondary {
  background: rgba(15, 23, 42, 0.92);
  color: var(--va-text);
  border: 1px solid rgba(148, 163, 184, 0.6);
}

.live-show-btn-secondary:hover {
  border-color: rgba(248, 250, 252, 0.9);
  transform: translateY(-1px);
}

.live-show-btn-secondary.is-added {
  border-color: rgba(34, 197, 94, 0.6);
  background: rgba(34, 197, 94, 0.12);
  color: #bbf7d0;
}

.live-show-btn-icon {
  background: rgba(15, 23, 42, 0.72);
  color: var(--va-text);
  border: 1px dashed rgba(148, 163, 184, 0.72);
}

.live-show-btn-icon:hover {
  border-style: solid;
  transform: translateY(-1px);
}

/* Back link */
.live-show-section-link {
  color: var(--va-accent);
  text-decoration: none;
  font-size: 0.9rem;
}

.live-show-section-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   PAGE LAYOUT (main + sidebar)
============================================================ */
.live-show-layout {
  max-width: var(--va-max);
  margin: 0 auto;
  padding: 1.6rem 1rem 2.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.6rem;
}

.live-show-main {
  min-width: 0;
}

.live-show-sidebar {
  min-width: 0;
}

/* Shared section card */
.live-show-section {
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid rgba(15, 23, 42, 0.92);
  border-radius: 1.05rem;
  box-shadow: var(--va-shadow-1);
  padding: 1.05rem 1rem;
  margin-bottom: 1rem;
}

/* Sidebar section variant (same base, allows future tweaks) */
.live-show-sidebar-section {
  background: rgba(15, 23, 42, 0.98);
}

/* Section header row */
.live-show-section-header {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.live-show-section-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--va-text-strong);
}

.live-show-section-subtitle {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: var(--va-text-muted);
  line-height: 1.55;
}

/* About text */
.live-show-description {
  margin: 0.65rem 0 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--va-text);
}

/* ============================================================
   Rundown list
============================================================ */
.live-show-rundown-list {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.live-show-rundown-list > li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.8rem 0.85rem;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(2, 6, 23, 0.18);
}

.live-show-rundown-time {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  color: #cbd5f5;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(15, 23, 42, 0.75);
  padding: 0.25rem 0.55rem;
  border-radius: var(--va-radius-pill);
  white-space: nowrap;
}

.live-show-rundown-body strong {
  display: block;
  color: var(--va-text-strong);
  margin-bottom: 0.15rem;
}

.live-show-rundown-body p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--va-text);
  opacity: 0.95;
  line-height: 1.6;
}

/* ============================================================
   Chat block (override inline styling via stronger selectors)
   NOTE: markup uses #chat-log, #chat-form, #chat-message
============================================================ */
.live-chat {
  border: 1px solid rgba(148, 163, 184, 0.28) !important;
  border-radius: 1.05rem !important;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.6) !important;
}

/* Chat log */
#chat-log {
  height: 280px;
  overflow: auto;
  padding: 12px;
  background: rgba(2, 6, 23, 0.22) !important;
  color: var(--va-text);
}

/* Nice scrollbars */
#chat-log {
  scrollbar-width: thin;
}

#chat-log::-webkit-scrollbar {
  width: 8px;
}

#chat-log::-webkit-scrollbar-track {
  background: transparent;
}

#chat-log::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.35);
  border-radius: var(--va-radius-pill);
}

/* Chat form (uses inline display:flex; keep it) */
#chat-form input[type="text"],
#chat-message {
  color: var(--va-text) !important;
  background: rgba(15, 23, 42, 0.92) !important;
  border: 1px solid rgba(148, 163, 184, 0.45) !important;
  border-radius: 0.9rem !important;
}

#chat-form input[type="text"]::placeholder,
#chat-message::placeholder {
  color: rgba(156, 163, 175, 0.9);
}

#chat-form button {
  color: var(--va-text) !important;
  background: rgba(15, 23, 42, 0.92) !important;
  border: 1px solid rgba(148, 163, 184, 0.45) !important;
  border-radius: 0.9rem !important;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    border-color 0.15s ease;
}

#chat-form button:hover {
  border-color: rgba(248, 250, 252, 0.9) !important;
  transform: translateY(-1px);
}

/* Disabled chat input (inline background already set; reinforce) */
.live-chat input[disabled] {
  cursor: not-allowed;
  opacity: 0.85;
}

/* Links inside gated chat hint */
.live-chat a {
  color: var(--va-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   Sidebar facts
============================================================ */
.live-show-facts {
  margin: 0.85rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.live-show-fact-row {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 0.75rem;
  align-items: baseline;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.live-show-fact-row:first-child {
  border-top: none;
  padding-top: 0;
}

.live-show-fact-row dt {
  font-size: 0.8rem;
  font-weight: 900;
  color: var(--va-text-strong);
  opacity: 0.95;
}

.live-show-fact-row dd {
  margin: 0;
  font-size: 0.85rem;
  color: var(--va-text);
  opacity: 0.95;
}

/* Subscription CTA */
.live-show-subscription-text {
  margin: 0.65rem 0 0.85rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--va-text);
}

.live-show-subscription-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.55rem 1.05rem;
  border-radius: var(--va-radius-pill);
  text-decoration: none;
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--va-bg);
  background: linear-gradient(135deg, var(--va-accent), var(--va-accent-2));
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.6);
  transition:
    transform 0.15s ease,
    filter 0.15s ease,
    box-shadow 0.15s ease;
}

.live-show-subscription-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.75);
}

.live-show-subscription-note {
  margin: 0.75rem 0 0;
  font-size: 0.78rem;
  color: var(--va-text-muted);
  line-height: 1.55;
}

/* ============================================================
   Related section
============================================================ */
.live-show-related {
  max-width: var(--va-max);
  margin: 0 auto;
  padding: 0 1rem 2.6rem;
}

.live-show-related-grid {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

/* Related card */
.live-related-card {
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(15, 23, 42, 0.92);
  border-radius: 1.05rem;
  overflow: hidden;
  box-shadow: var(--va-shadow-2);
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease;
}

.live-related-card:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 178, 0, 0.35);
}

.live-related-thumb-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.live-related-thumb {
  position: relative;
  overflow: hidden;
  background: rgba(2, 6, 23, 0.6);
}

.live-related-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.live-related-card:hover .live-related-thumb img {
  transform: scale(1.04);
  filter: brightness(1.05);
}

.live-related-badge {
  position: absolute;
  left: 0.75rem;
  bottom: 0.75rem;
  padding: 0.18rem 0.6rem;
  font-size: 0.75rem;
  border-radius: var(--va-radius-pill);
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(248, 250, 252, 0.22);
  color: var(--va-text);
  backdrop-filter: blur(6px);
}

.live-related-body {
  padding: 0.85rem 0.95rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
  min-width: 0;
}

.live-related-title {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.live-related-title a {
  color: var(--va-text-strong);
  text-decoration: none;
}

.live-related-title a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.live-related-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  font-size: 0.82rem;
  color: #cbd5f5;
  opacity: 0.95;
}

/* ============================================================
   AUTH MODAL (Reusable — same pattern as /live index)
============================================================ */
.van-auth-modal {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: none;
}

.van-auth-modal.is-open {
  display: block;
}

.van-auth-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(6px);
}

.van-auth-modal__dialog {
  position: relative;
  z-index: 9999;
  width: min(92vw, 460px);
  margin: 10vh auto 0;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 1.25rem;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.75);
  padding: 1.2rem 1.1rem 1.05rem;
  color: var(--va-text);
}

.van-auth-modal__close {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--va-radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(2, 6, 23, 0.35);
  color: var(--va-text);
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.van-auth-modal__title {
  margin: 0.2rem 0 0.4rem;
  font-size: 1.1rem;
  font-weight: 950;
  color: var(--va-text-strong);
  letter-spacing: -0.02em;
}

.van-auth-modal__text {
  margin: 0;
  font-size: 0.9rem;
  color: var(--va-text);
  line-height: 1.6;
}

.van-auth-modal__actions {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.van-auth-modal__btn {
  border-radius: var(--va-radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.55);
  padding: 0.5rem 0.95rem;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    filter 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

.van-auth-modal__btn--primary {
  background: linear-gradient(135deg, var(--va-accent), var(--va-accent-2));
  border-color: transparent;
  color: var(--va-bg);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.55);
}

.van-auth-modal__btn--primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.van-auth-modal__btn--ghost {
  background: rgba(15, 23, 42, 0.9);
  color: var(--va-text);
}

.van-auth-modal__btn--ghost:hover {
  border-color: rgba(248, 250, 252, 0.9);
  transform: translateY(-1px);
}

.van-auth-modal__fineprint {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  color: var(--va-text-muted);
  line-height: 1.55;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
============================================================ */

/* Tiny phones */
@media (max-width: 360px) {
  .live-show-hero-inner {
    padding: 1.1rem 0.85rem 1.25rem;
  }

  .live-show-title {
    font-size: 1.5rem;
  }

  .live-show-fact-row {
    grid-template-columns: 92px minmax(0, 1fr);
  }
}

/* Tablets / large phones */
@media (min-width: 640px) {
  .live-show-hero-inner {
    padding: 1.75rem 1.25rem 1.75rem;
    gap: 1.35rem;
  }

  .live-show-title {
    font-size: 2.05rem;
  }

  .live-show-layout {
    padding-top: 1.85rem;
  }

  /* Related grid: 2 columns */
  .live-show-related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Laptops / desktops */
@media (min-width: 1024px) {
  /* Hero: 2 columns (player + meta) */
  .live-show-hero-inner {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    align-items: center;
  }

  .live-show-title {
    font-size: 2.35rem;
  }

  /* Page layout: main + sidebar */
  .live-show-layout {
    grid-template-columns: minmax(0, 1.85fr) minmax(280px, 1fr);
    align-items: start;
    gap: 1.9rem;
  }

  /* Related: 3 columns */
  .live-show-related-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Large desktops */
@media (min-width: 1280px) {
  .live-show-hero-inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .live-show-layout {
    padding-bottom: 2.6rem;
  }
}

/* Ultra-wide / big monitors */
@media (min-width: 1600px) {
  .live-show-layout {
    gap: 2.2rem;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .live-show-backdrop,
  .live-show-btn-primary,
  .live-show-btn-secondary,
  .live-show-btn-icon,
  .live-show-follow-btn,
  .live-related-card,
  .live-related-thumb img,
  .van-auth-modal__btn,
  #chat-form button {
    transition: none !important;
  }

  .live-show-hero:hover .live-show-backdrop,
  .live-show-btn-primary:hover,
  .live-show-btn-secondary:hover,
  .live-show-btn-icon:hover,
  .live-show-follow-btn:hover,
  .live-related-card:hover,
  .live-related-card:hover .live-related-thumb img,
  .van-auth-modal__btn:hover,
  #chat-form button:hover {
    transform: none !important;
  }
}
