/* ===== Watch Live Page ===== */
.watch-page {
  background: #0a0a0a;
}

.watch-main {
  padding: 120px 0 80px;
}

.watch-player {
  margin-bottom: 60px;
}

/* Stream platform tabs */
.watch-stream-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}
.watch-stream-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.6);
  font-family: inherit;
  font-weight: 600;
  font-size: .85rem;
  cursor: pointer;
  transition: all .2s;
}
.watch-stream-tab:hover { background: rgba(255,255,255,.08); color: #fff; }
.watch-stream-tab.active { background: var(--accent); color: #fff; border-color: var(--accent); }
.watch-stream-tab svg { flex-shrink: 0; }

/* Embed container */
.watch-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.watch-embed__offline {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(10,10,10,.95);
  color: #fff;
  z-index: 2;
  padding: 2rem;
}
.watch-embed__offline h3 {
  margin: 12px 0 4px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
}
.watch-embed__offline p {
  color: rgba(255,255,255,.5);
  font-size: .85rem;
  margin: 0;
}

.watch-player__frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow:
    0 30px 80px rgba(0,0,0,.6),
    0 0 0 1px rgba(255,255,255,.06);
}
.watch-player__frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.85);
}

.watch-player__overlay {
  position: absolute;
  top: 24px;
  left: 24px;
  display: flex;
  gap: 14px;
  align-items: center;
  z-index: 2;
}

.watch-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(220, 38, 38, .95);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  backdrop-filter: blur(10px);
}
.watch-live-badge .live-dot {
  background: #fff;
  box-shadow: 0 0 0 0 rgba(255,255,255,.7);
}

.watch-viewers {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,.5);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .78rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.1);
}
.watch-viewers .material-symbols-rounded { font-size: 1.05rem; }

.watch-player__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all .3s var(--ease-out);
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.watch-player__play .material-symbols-rounded {
  font-size: 3rem;
  color: #0a0a0a;
}
.watch-player__play:hover {
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--accent);
}
.watch-player__play.is-playing .material-symbols-rounded::before {
  content: "pause";
}

.watch-player__controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(0deg, rgba(0,0,0,.85), transparent);
  z-index: 2;
}

.control-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease;
}
.control-btn:hover { background: rgba(255,255,255,.2); }
.control-btn .material-symbols-rounded { font-size: 1.2rem; }

.watch-progress {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,.18);
  border-radius: 2px;
  overflow: hidden;
}
.watch-progress__bar {
  height: 100%;
  width: 35%;
  background: var(--accent);
  border-radius: 2px;
  transition: width .25s ease;
  box-shadow: 0 0 12px var(--accent);
}

.watch-now {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
  margin-top: 32px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.watch-now__label {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent);
  margin-bottom: 10px;
  display: block;
}
.watch-now__title h1 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 10px;
}
.watch-now__title p {
  color: rgba(255,255,255,.7);
  font-size: .95rem;
  max-width: 620px;
  line-height: 1.6;
}
.watch-now__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.watch-now__actions .btn {
  white-space: nowrap;
}

.btn--ghost {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
}
.btn--ghost:hover {
  background: rgba(255,255,255,.12);
}

/* Channels */
.watch-channels { padding: 60px 0 40px; }
.watch-channels h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: #fff;
  margin-bottom: 30px;
}
.watch-channels h2 .accent {
  font-style: italic;
  color: var(--accent);
}
.watch-channels__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 22px;
}

.channel-card {
  display: block;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  overflow: hidden;
  transition: all .3s var(--ease-out);
}
.channel-card:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-4px);
  border-color: rgba(251,146,60,.35);
}
.channel-card.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 18px 40px rgba(251,146,60,.15);
}
.channel-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.channel-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.channel-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #dc2626;
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: 1px;
}
.channel-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 16px 18px 4px;
}
.channel-card p {
  font-size: .82rem;
  color: rgba(255,255,255,.6);
  margin: 0 18px 18px;
}

.watch-player__frame img {
  transition: opacity .35s ease;
}

/* ===== On-Demand Archive ===== */
.watch-ondemand {
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 40px;
}
.watch-ondemand__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.watch-ondemand__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: #fff;
  margin: 0 0 6px;
}
.watch-ondemand__head h2 .accent {
  font-style: italic;
  color: var(--accent);
}
.watch-ondemand__head p {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  margin: 0;
}
.watch-ondemand__tabs {
  display: flex;
  gap: 6px;
  background: rgba(255,255,255,.04);
  padding: 5px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.06);
}
.watch-ondemand__tabs button {
  background: transparent;
  border: 0;
  padding: 9px 18px;
  border-radius: 8px;
  color: rgba(255,255,255,.6);
  font-weight: 600;
  font-size: .78rem;
  cursor: pointer;
  transition: all .2s;
  font-family: inherit;
}
.watch-ondemand__tabs button:hover { color: #fff; }
.watch-ondemand__tabs button.active {
  background: var(--accent);
  color: #fff;
}

.watch-ondemand__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.od-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  overflow: hidden;
  transition: all .25s var(--ease-out);
  display: block;
  cursor: pointer;
}
.od-card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.07);
  border-color: rgba(251,146,60,.35);
}
.od-card__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.od-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.od-card:hover .od-card__thumb img { transform: scale(1.06); }
.od-card__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.6), transparent 50%);
}
.od-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.8);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(251, 146, 60, .95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all .25s ease;
  z-index: 2;
}
.od-card:hover .od-card__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.od-card__play .material-symbols-rounded { color: #fff; font-size: 1.8rem; }
.od-card__duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,.8);
  color: #fff;
  font-size: .72rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 6px;
  z-index: 2;
}
.od-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin: 16px 18px 6px;
  line-height: 1.35;
}
.od-card p {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin: 0 18px 12px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.od-card__meta {
  display: flex;
  gap: 14px;
  padding: 0 18px 16px;
}
.od-card__meta span {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-transform: capitalize;
}
.od-card__meta .material-symbols-rounded { font-size: 14px; }

/* ===== Schedule ===== */
.watch-schedule {
  padding: 60px 0 40px;
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 40px;
}
.watch-schedule__head {
  margin-bottom: 24px;
}
.watch-schedule__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 500;
  color: #fff;
  margin: 0 0 6px;
}
.watch-schedule__head h2 .accent {
  font-style: italic;
  color: var(--accent);
}
.watch-schedule__head p {
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  margin: 0;
}
.watch-schedule__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
  overflow: hidden;
}
.watch-schedule__item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background .2s;
}
.watch-schedule__item:last-child { border-bottom: 0; }
.watch-schedule__item:hover { background: rgba(255,255,255,.03); }
.watch-schedule__item--now {
  background: rgba(251, 146, 60, .08);
  border-left: 3px solid var(--accent);
}
.watch-schedule__item--now:hover { background: rgba(251, 146, 60, .12); }
.watch-schedule__item--next { background: rgba(255,255,255,.02); }
.watch-schedule__time {
  font-family: 'Inter', monospace;
  font-variant-numeric: tabular-nums;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  min-width: 60px;
}
.watch-schedule__info h4 {
  font-size: .95rem;
  color: #fff;
  margin: 0 0 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}
.watch-schedule__info p {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  margin: 0;
}
.watch-schedule__tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .65rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  letter-spacing: 1px;
}
.watch-schedule__tag--live {
  background: #e63946;
  color: #fff;
}
.watch-schedule__tag .live-dot {
  width: 6px;
  height: 6px;
  background: #fff;
}

@media (max-width: 768px) {
  .watch-main { padding: 90px 0 60px; }
  .watch-now { flex-direction: column; }
  .watch-now__actions { width: 100%; }
  .watch-now__actions .btn { flex: 1; justify-content: center; }
  .watch-player__play { width: 64px; height: 64px; }
  .watch-player__play .material-symbols-rounded { font-size: 2rem; }
  .watch-ondemand__head { flex-direction: column; align-items: stretch; }
  .watch-ondemand__tabs { overflow-x: auto; justify-content: flex-start; }
  .watch-schedule__item { gap: 16px; padding: 14px 18px; }
  .watch-schedule__time { font-size: 1rem; min-width: 52px; }
}
