/* ============================================================
   stream.css — BROADCAST STATION PAGE
   Linked from stream.html after style.css
============================================================ */

/* ── Platform Cards (copied from index.css so stream.html is self-contained) ── */
.platformCard {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(0,0,0,0.5);
  border: 1px solid #440066;
  border-left: 4px solid #7a00aa;
  padding: 20px;
  margin-bottom: 18px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.platformCard:hover {
  border-color: #cc00ff;
  box-shadow: 0 0 18px rgba(180,0,255,0.3);
  background: rgba(60,0,80,0.4);
}
.platformCard .platformIcon  { font-size: 40px; min-width: 50px; text-align: center; }
.platformCard .platformInfo h3 { color: #d4c8ff; font-size: 15px; margin-bottom: 6px; letter-spacing: 1px; }
.platformCard .platformInfo p  { font-size: 12px; margin: 0; color: #9988bb; }
.platformCard .platformArrow   { margin-left: auto; color: #7a00aa; font-size: 18px; }

/* ── Live indicator ── */
.liveDot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4444;
  margin-right: 6px;
  animation: livePulse 1.5s infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,68,68,0.6); }
  50%       { opacity: 0.4; box-shadow: 0 0 0 4px rgba(255,68,68,0); }
}
.liveLabel {
  font-size: 11px;
  color: #ff7766;
  letter-spacing: 1px;
}

/* ── LIVE FEED embed panel ── */
.liveFeedPanel {
  background: rgba(0,0,0,0.7);
  border: 1px solid #5500aa;
  overflow: hidden;
  margin-bottom: 24px;
}

.liveFeedHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 14px;
  background: rgba(40,0,70,0.8);
  border-bottom: 1px solid #440066;
  font-size: 10px;
  letter-spacing: 2px;
}

.liveFeedHeaderLeft {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d4c8ff;
}

.liveFeedHeaderRight {
  color: #443366;
  font-size: 10px;
  letter-spacing: 1.5px;
  animation: blink 2s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

.liveFeedFooter {
  padding: 6px 14px;
  background: rgba(20,0,40,0.6);
  border-top: 1px solid #330044;
  font-size: 9px;
  color: #443366;
  letter-spacing: 1.5px;
  text-align: right;
}

/* ── 16:9 YouTube responsive wrapper ── */
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Broadcast schedule HUD ── */
.broadcastPanel {
  background: rgba(0,0,0,0.65);
  border: 1px solid #440066;
  overflow: hidden;
  margin-bottom: 24px;
}

.broadcastPanelHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 14px;
  background: rgba(50,0,80,0.7);
  border-bottom: 1px solid #440066;
  font-size: 10px;
  letter-spacing: 2px;
  color: #9977cc;
}

.broadcastPanelTitle {
  color: #d4c8ff;
  letter-spacing: 2.5px;
}

.broadcastPanelBadge {
  font-size: 9px;
  color: #5544aa;
  letter-spacing: 1px;
}

/* schedule table */
.scheduleTable {
  width: 100%;
  border-collapse: collapse;
}

.scheduleTable thead tr {
  background: rgba(30,0,50,0.6);
  border-bottom: 1px solid #330044;
}

.scheduleTable th {
  font-size: 9px;
  color: #5544aa;
  letter-spacing: 2px;
  text-align: left;
  padding: 8px 14px;
  font-weight: normal;
  text-transform: uppercase;
}

.scheduleTable td {
  padding: 11px 14px;
  font-size: 11px;
  border-bottom: 1px solid #1e0030;
  color: #9988bb;
  vertical-align: middle;
}

.scheduleTable tr:last-child td {
  border-bottom: none;
}

.scheduleTable tr:hover td {
  background: rgba(80,0,120,0.15);
  color: #c4b8e8;
}

.schedDay {
  color: #cc99ff;
  letter-spacing: 1px;
  font-size: 12px;
  min-width: 100px;
}

.schedTime {
  color: #7766aa;
  letter-spacing: 1px;
  font-size: 11px;
  min-width: 90px;
}

.schedContent {
  color: #b8adcc;
}

.schedStatus {
  text-align: right;
}

.schedBadge {
  display: inline-block;
  font-size: 9px;
  padding: 2px 8px;
  letter-spacing: 1px;
  border: 1px solid;
}

.schedBadge--tbd {
  color: #5544aa;
  border-color: #330044;
  background: rgba(30,0,50,0.5);
}

.schedBadge--live {
  color: #ff7766;
  border-color: #aa3300;
  background: rgba(80,20,0,0.5);
  animation: livePulse 2s infinite;
}

.schedBadge--active {
  color: #33ff88;
  border-color: #006633;
  background: rgba(0,40,20,0.5);
}

/* ── "WHAT I STREAM" category cards ── */
.streamCategoryGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 14px 0;
}

.streamCategoryCard {
  background: rgba(0,0,0,0.6);
  border: 1px solid #440066;
  border-top: 3px solid #7a00aa;
  padding: 20px 16px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}

.streamCategoryCard::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(120,0,180,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.streamCategoryCard:hover {
  border-color: #9900cc;
  border-top-color: #ff66ff;
  box-shadow: 0 0 18px rgba(160,0,255,0.25);
  background: rgba(40,0,60,0.5);
}

.streamCatIcon {
  font-size: 32px;
  display: block;
  margin-bottom: 12px;
}

.streamCatTitle {
  font-size: 12px;
  color: #d4c8ff;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.streamCatDesc {
  font-size: 11px;
  color: #7766aa;
  line-height: 1.65;
}

.streamCatTags {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
}

.streamCatTag {
  font-size: 9px;
  padding: 2px 7px;
  border: 1px solid #330044;
  color: #5544aa;
  background: rgba(30,0,50,0.5);
  letter-spacing: 0.5px;
}

/* ── LATEST UPLOAD card ── */
.latestUploadCard {
  background: rgba(0,0,0,0.55);
  border: 1px solid #440066;
  border-left: 4px solid #7a00aa;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 18px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
  color: inherit;
}

.latestUploadCard:hover {
  border-color: #cc00ff;
  box-shadow: 0 0 18px rgba(180,0,255,0.3);
  background: rgba(40,0,60,0.4);
}

.uploadThumb {
  width: 120px;
  height: 68px;
  min-width: 120px;
  background: rgba(20,0,40,0.8);
  border: 1px solid #330044;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  color: #5544aa;
  font-size: 10px;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.uploadThumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(80,0,120,0.06) 3px,
    rgba(80,0,120,0.06) 4px
  );
  pointer-events: none;
}

.uploadThumbIcon {
  font-size: 24px;
  opacity: 0.5;
}

.uploadInfo {
  flex: 1;
}

.uploadLabel {
  font-size: 9px;
  color: #5544aa;
  letter-spacing: 2px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.uploadTitle {
  font-size: 14px;
  color: #d4c8ff;
  letter-spacing: 1px;
  margin-bottom: 6px;
}

.uploadMeta {
  font-size: 11px;
  color: #7766aa;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.uploadCta {
  display: inline-block;
  font-size: 11px;
  padding: 5px 14px;
  border: 1px solid #7a00aa;
  color: #cc99ff;
  letter-spacing: 1.5px;
  background: rgba(60,0,100,0.4);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.uploadCta:hover {
  background: rgba(120,0,180,0.5);
  color: #ffffff;
  box-shadow: 0 0 10px rgba(180,0,255,0.4);
}

/* ── Intro text ── */
.streamIntro {
  font-size: 13px;
  color: #9988bb;
  line-height: 1.85;
  margin-bottom: 20px;
  padding: 14px 18px;
  background: rgba(0,0,0,0.3);
  border-left: 3px solid #440066;
}

/* ── Section label strip ── */
.sectionLabel {
  font-size: 10px;
  color: #5544aa;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sectionLabel::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, #330044, transparent);
}

.scheduleNote        { font-size: 11px; color: #443366; letter-spacing: 1px; margin-top: -10px; margin-bottom: 20px; }
.uploadNoPreviewLabel { font-size: 9px; letter-spacing: 1px; color: #443366; }
