/* ========================================
   ARCHE — Livestream Page Styles
   ======================================== */

/* ---- HERO ---- */
.ls-hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.ls-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 50%, rgba(255,0,0,0.05), transparent 60%),
    radial-gradient(ellipse 60% 80% at 90% 30%, rgba(201,169,110,0.06), transparent 60%);
}

.ls-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ---- TIMES ---- */
.ls-times {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ls-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  width: fit-content;
}

.ls-time-badge svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ---- EMBED ---- */
.ls-embed-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ls-live-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.ls-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4444;
  animation: ls-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes ls-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.ls-embed-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5);
}

.ls-embed-container iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.ls-embed-container .youtube-embed-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border: none;
  border-radius: 0;
}

.ls-embed-note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  text-align: center;
  line-height: 1.6;
}

/* ---- PLAYLIST ---- */
.ls-playlist-wrap {
  max-width: 840px;
  margin: 0 auto;
}

.ls-playlist {
  border-radius: 20px;
  box-shadow: 0 16px 64px rgba(0,0,0,0.1);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .ls-hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .ls-hero {
    padding: 100px 0 60px;
  }
}

@media (max-width: 768px) {
  .ls-hero {
    padding: 80px 0 48px;
  }
}
