/**
 * CECCM - Live Streaming Page Styles
 *
 * Modern glassmorphic design for live streaming page.
 * Uses design tokens from design-tokens.css and components from components.css.
 *
 * @version 1.0.0
 * @date 2026-02-18
 */

/* ============================================
   PAGE HERO SECTION
   ============================================ */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-16) 0;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.page-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float-orb 15s ease-in-out infinite;
}

.page-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.3) 0%,
    transparent 70%
  );
  top: -200px;
  left: -200px;
}

.page-orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.3) 0%,
    transparent 70%
  );
  bottom: -100px;
  right: -100px;
  animation-delay: -5s;
}

@keyframes float-orb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.05);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.95);
  }
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.page-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: var(--space-6);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: livePulse 1.5s infinite;
}

.page-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: var(--space-4);
}

.page-subtitle {
  font-size: var(--text-xl);
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   GLASS CARD
   ============================================ */
.glass-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.glass-card:hover {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border-color: rgba(6, 182, 212, 0.3);
}

/* ============================================
   SECTION HEADER CENTER
   ============================================ */
.section-header-center {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-label {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #06b6d4;
  margin-bottom: var(--space-4);
}

.section-header-center h2 {
  color: #ffffff;
  margin: 0;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* ============================================
   LIVE NOW SECTION
   ============================================ */
.live-now-section {
  padding: var(--space-12) 0;
}

.live-player-card {
  overflow: hidden;
}

/* Live Badge */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-full);
  color: #ef4444;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-6);
}

.live-pulse {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: livePulse 1.5s infinite;
}

@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

/* ============================================
   VIDEO PLAYER MODERN
   ============================================ */
.video-player-modern {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000000;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  margin-bottom: var(--space-6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.video-player-modern iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* RTMP Player Interface - Modern User-Friendly Design */
.rtmp-player-interface {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-8);
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.05),
    rgba(139, 92, 246, 0.05)
  );
  min-height: 400px;
}

/* Animated Visual */
.rtmp-visual {
  position: relative;
  margin-bottom: var(--space-6);
}

.rtmp-waves {
  position: absolute;
  inset: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.rtmp-waves span {
  width: 4px;
  height: 30px;
  background: linear-gradient(180deg, #06b6d4, #8b5cf6);
  border-radius: var(--radius-full);
  animation: wave-animation 1.2s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes wave-animation {
  0%,
  100% {
    transform: scaleY(0.5);
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1.5);
    opacity: 0.8;
  }
}

.rtmp-icon-container {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
  border-radius: 50%;
  box-shadow:
    0 0 60px rgba(6, 182, 212, 0.4),
    0 0 100px rgba(139, 92, 246, 0.2);
  position: relative;
  z-index: 1;
}

.rtmp-icon-container i {
  font-size: 2.5rem;
  color: #0a0e1a;
}

/* Info Section */
.rtmp-info {
  text-align: center;
  margin-bottom: var(--space-6);
}

.rtmp-info h3 {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  color: #ffffff;
  margin-bottom: var(--space-2);
}

.rtmp-description {
  color: #94a3b8;
  font-size: var(--text-base);
  max-width: 500px;
}

/* URL Container */
.rtmp-url-container {
  width: 100%;
  max-width: 600px;
  margin-bottom: var(--space-6);
}

.rtmp-url-container label {
  display: block;
  font-size: var(--text-sm);
  color: #94a3b8;
  margin-bottom: var(--space-2);
}

.rtmp-url-input-group {
  display: flex;
  gap: var(--space-2);
}

.rtmp-url-input-group input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: #06b6d4;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  outline: none;
  transition: all var(--transition-base);
}

.rtmp-url-input-group input:focus {
  outline: none;
}

.rtmp-url-input-group input:focus-visible {
  outline: var(--focus-ring-width, 3px) solid
    var(--focus-color-primary, #06b6d4);
  outline-offset: var(--focus-ring-offset, 3px);
  border-color: var(--focus-color-primary, #06b6d4);
  box-shadow: var(--focus-ring-shadow, 0 0 0 6px rgba(6, 182, 212, 0.25));
}

.btn-copy-url {
  padding: var(--space-3) var(--space-4);
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
  border: none;
  border-radius: var(--radius-lg);
  color: #0a0e1a;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-copy-url:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

.copy-feedback {
  display: block;
  margin-top: var(--space-2);
  font-size: var(--text-sm);
  color: #22c55e;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.copy-feedback.visible {
  opacity: 1;
}

.copy-feedback.error {
  color: #ef4444;
}

/* Options Grid */
.rtmp-options {
  width: 100%;
  max-width: 600px;
  margin-bottom: var(--space-6);
}

.rtmp-options h4 {
  font-size: var(--text-sm);
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  margin-bottom: var(--space-3);
  text-align: center;
}

.rtmp-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.rtmp-option-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition-base);
}

.rtmp-option-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(6, 182, 212, 0.3);
  transform: translateY(-2px);
}

.option-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-2);
}

.option-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.option-icon i {
  font-size: 1.5rem;
  color: #06b6d4;
}

.rtmp-option-btn span {
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-1);
}

.rtmp-option-btn small {
  font-size: var(--text-xs);
  color: #64748b;
}

/* Instructions */
.rtmp-instructions {
  width: 100%;
  max-width: 500px;
  padding: var(--space-4);
  background: rgba(6, 182, 212, 0.05);
  border: 1px solid rgba(6, 182, 212, 0.1);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
}

.rtmp-instructions h4 {
  font-size: var(--text-sm);
  color: #06b6d4;
  margin-bottom: var(--space-3);
}

.rtmp-instructions h4 i {
  margin-right: var(--space-2);
}

.rtmp-instructions ol {
  margin: 0;
  padding-left: var(--space-5);
  color: #94a3b8;
  font-size: var(--text-sm);
}

.rtmp-instructions li {
  margin-bottom: var(--space-2);
}

.rtmp-instructions li strong {
  color: #f8fafc;
}

/* Help Section */
.rtmp-help {
  width: 100%;
  max-width: 500px;
}

.rtmp-help details {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.rtmp-help summary {
  padding: var(--space-3) var(--space-4);
  cursor: pointer;
  color: #94a3b8;
  font-size: var(--text-sm);
  transition: all var(--transition-base);
}

.rtmp-help summary:hover {
  color: #06b6d4;
  background: rgba(6, 182, 212, 0.05);
}

.rtmp-help summary i {
  margin-right: var(--space-2);
}

.help-content {
  padding: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.help-content ol {
  margin: 0 0 var(--space-3) 0;
  padding-left: var(--space-5);
  color: #94a3b8;
  font-size: var(--text-sm);
}

.help-content li {
  margin-bottom: var(--space-2);
}

.download-link a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
  border-radius: var(--radius-full);
  color: #0a0e1a;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  text-decoration: none;
  transition: all var(--transition-base);
}

.download-link a:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

/* Fallback Interface */
.stream-fallback {
  text-align: center;
  padding: var(--space-8);
}

.fallback-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 50%;
}

.fallback-icon i {
  font-size: 2rem;
  color: #ef4444;
}

.stream-fallback h3 {
  color: #ffffff;
  margin-bottom: var(--space-2);
}

.stream-fallback p {
  color: #94a3b8;
  margin-bottom: var(--space-4);
}

.stream-url-display code {
  display: block;
  margin-top: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: rgba(0, 0, 0, 0.3);
  border-radius: var(--radius-md);
  color: #06b6d4;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  word-break: break-all;
}

/* Player Error */
.player-error {
  text-align: center;
  padding: var(--space-8);
}

.error-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 68, 68, 0.1);
  border-radius: 50%;
}

.error-icon i {
  font-size: 1.5rem;
  color: #ef4444;
}

.player-error p {
  color: #94a3b8;
  margin-bottom: var(--space-4);
}

/* Command Modal */
.command-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-max);
  backdrop-filter: blur(10px);
}

.command-modal-content {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(30, 41, 59, 0.95),
    rgba(15, 23, 42, 0.95)
  );
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  max-width: 600px;
  width: 90%;
}

.command-modal-content h3 {
  color: #ffffff;
  margin-bottom: var(--space-2);
}

.command-modal-content h3 i {
  margin-right: var(--space-2);
  color: #06b6d4;
}

.command-modal-content p {
  color: #94a3b8;
  margin-bottom: var(--space-4);
}

.command-box {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3);
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
}

.command-box code {
  flex: 1;
  color: #06b6d4;
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  word-break: break-all;
}

.btn-copy-command {
  padding: var(--space-2) var(--space-3);
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
  border: none;
  border-radius: var(--radius-md);
  color: #0a0e1a;
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-copy-command:hover {
  transform: scale(1.05);
}

.btn-close-modal {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #94a3b8;
  font-size: 1.25rem;
  cursor: pointer;
  transition: all var(--transition-base);
}

.btn-close-modal:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

/* Player Launch Toast */
.player-launch-toast {
  position: fixed;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-6);
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.9),
    rgba(139, 92, 246, 0.9)
  );
  border-radius: var(--radius-full);
  color: #0a0e1a;
  font-weight: var(--font-weight-semibold);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: toast-slide-in 0.3s ease-out;
  z-index: 10000;
}

@keyframes toast-slide-in {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* Player Loading State */
.player-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 300px;
  background: linear-gradient(
    135deg,
    rgba(6, 182, 212, 0.05),
    rgba(139, 92, 246, 0.05)
  );
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-top-color: #06b6d4;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: var(--space-4);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.player-loading p {
  color: #94a3b8;
  font-size: var(--text-sm);
}

/* Video.js Custom Theme */
.video-js {
  font-family: var(--font-body);
}

.video-js .vjs-big-play-button {
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
  border: none;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 2.5rem;
  transition: all var(--transition-base);
}

.video-js .vjs-big-play-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(6, 182, 212, 0.5);
}

.video-js .vjs-control-bar {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.8));
  height: 50px;
}

.video-js .vjs-play-progress,
.video-js .vjs-volume-level {
  background: linear-gradient(90deg, #06b6d4, #8b5cf6);
}

.video-js .vjs-slider:focus {
  box-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.video-js .vjs-load-progress {
  background: rgba(255, 255, 255, 0.2);
}

.video-js .vjs-control:hover {
  color: #06b6d4;
}

.video-js .vjs-time-control {
  font-family: var(--font-mono);
}

.video-js .vjs-live-display {
  color: #ef4444;
  font-weight: var(--font-weight-bold);
}

.video-js .vjs-live-display::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  margin-right: var(--space-2);
  animation: livePulse 1.5s infinite;
}

/* ============================================
   STREAM DETAILS
   ============================================ */
.stream-details {
  padding: 0 var(--space-2);
}

.stream-viewers {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: rgba(6, 182, 212, 0.1);
  border-radius: var(--radius-full);
  color: #06b6d4;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-4);
}

.stream-details h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
  color: #ffffff;
}

.stream-details > p {
  color: #94a3b8;
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

.stream-meta-modern {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  font-size: var(--text-sm);
  color: #94a3b8;
}

.stream-meta-modern span {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.stream-meta-modern i {
  color: #06b6d4;
  font-size: var(--text-base);
}

/* ============================================
   NO LIVE SECTION
   ============================================ */
.no-live-section {
  padding: var(--space-12) 0;
}

.no-live-card {
  text-align: center;
  padding: var(--space-16) var(--space-8);
  max-width: 500px;
  margin: 0 auto;
}

.no-live-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto var(--space-6);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.no-live-icon i {
  font-size: 3rem;
  color: #94a3b8;
}

.no-live-card h2 {
  font-size: var(--text-2xl);
  margin-bottom: var(--space-2);
  color: #ffffff;
}

.no-live-card p {
  color: #94a3b8;
  font-size: var(--text-base);
  margin-bottom: var(--space-8);
}

.no-live-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-4);
  flex-wrap: wrap;
}

/* ============================================
   UPCOMING STREAMS
   ============================================ */
.upcoming-streams-section {
  padding: var(--space-16) 0;
}

.no-upcoming {
  text-align: center;
  padding: var(--space-12) var(--space-8);
  color: #94a3b8;
}

.no-upcoming i {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
  display: block;
  color: #64748b;
}

.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-6);
}

/* Stream Card Modern */
.stream-card-modern {
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.stream-card-modern:hover {
  transform: translateY(-8px);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.04) 100%
  );
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(6, 182, 212, 0.15);
}

.stream-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--space-6) var(--space-6) 0;
}

.stream-date-badge {
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #06b6d4, #8b5cf6);
  border-radius: var(--radius-lg);
}

.stream-day {
  font-size: var(--text-2xl);
  font-weight: var(--font-weight-bold);
  color: #0a0e1a;
  line-height: var(--leading-none);
}

.stream-month {
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  color: #0a0e1a;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.stream-access-badge {
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.stream-access-badge.public {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.stream-access-badge.members_only {
  background: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.stream-card-body {
  padding: var(--space-4) var(--space-6);
}

.stream-card-body h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
  color: #ffffff;
  font-weight: var(--font-weight-semibold);
}

.stream-card-body p {
  color: #94a3b8;
  font-size: var(--text-sm);
  margin-bottom: var(--space-4);
  line-height: var(--leading-relaxed);
}

.stream-card-footer {
  padding: 0 var(--space-6) var(--space-6);
}

/* Stream Schedule Modern */
.stream-schedule-modern {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.schedule-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: #94a3b8;
}

.schedule-item i {
  color: #06b6d4;
  font-size: var(--text-base);
}

/* Countdown Mini */
.countdown-mini {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  padding: var(--space-3);
  background: rgba(6, 182, 212, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(6, 182, 212, 0.2);
}

.countdown-label {
  font-size: var(--text-xs);
  color: #64748b;
}

.countdown-time {
  font-size: var(--text-base);
  font-weight: var(--font-weight-semibold);
  color: #06b6d4;
  font-family: var(--font-mono);
}

/* Access Required */
.access-required {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3);
  background: rgba(139, 92, 246, 0.1);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 92, 246, 0.2);
  font-size: var(--text-sm);
  color: #a78bfa;
}

.access-required i {
  font-size: var(--text-base);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 768px) {
  .live-now-section {
    padding: var(--space-8) 0;
  }

  .video-player-modern {
    aspect-ratio: 16 / 9;
  }

  .live-badge {
    width: 100%;
    justify-content: center;
  }

  .stream-meta-modern {
    flex-direction: column;
    gap: var(--space-3);
  }

  .no-live-card {
    padding: var(--space-12) var(--space-4);
  }

  .no-live-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .no-live-actions .btn {
    width: 100%;
  }

  .upcoming-streams-section {
    padding: var(--space-10) 0;
  }

  .upcoming-grid {
    grid-template-columns: 1fr;
  }

  .stream-card-header {
    flex-direction: column;
    gap: var(--space-4);
  }

  .stream-date-badge {
    width: 60px;
    height: 60px;
  }

  .stream-day {
    font-size: var(--text-xl);
  }
}

@media (max-width: 480px) {
  .rtmp-player-interface {
    padding: var(--space-4);
  }

  .rtmp-icon-container {
    width: 80px;
    height: 80px;
  }

  .rtmp-icon-container i {
    font-size: var(--text-2xl);
  }

  .rtmp-info h3 {
    font-size: var(--text-xl);
  }

  .rtmp-description {
    font-size: var(--text-sm);
  }

  .rtmp-options-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2);
  }

  .rtmp-option-btn {
    flex-direction: row;
    justify-content: flex-start;
    gap: var(--space-3);
    padding: var(--space-3);
  }

  .option-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
  }

  .rtmp-instructions {
    padding: var(--space-3);
  }

  .rtmp-instructions ol,
  .help-content ol {
    padding-left: var(--space-4);
  }

  .command-modal-content {
    padding: var(--space-4);
  }

  .command-box {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-copy-command {
    margin-top: var(--space-2);
  }

  .player-launch-toast {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
  }
}
