/* Neo-Broadcast Design System - Simplified */
:root {
  --bg-deep: #0a0612;
  --bg-mid: #1a0f2e;
  --bg-light: #2d1b4e;

  --accent-primary: #ff4b1f;
  --accent-secondary: #1fddff;

  --glass-surface: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-highlight: rgba(255, 255, 255, 0.2);

  --text-primary: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);

  --font-main: 'Plus Jakarta Sans', sans-serif;

  --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-deep);
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

/* Enhanced Ambient Background */
.ambient-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(184, 107, 255, 0.15), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(0, 217, 255, 0.12), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.08), transparent 50%),
    linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-mid) 50%, var(--bg-light) 100%);
  background-size: 100% 100%, 100% 100%, 100% 100%, 400% 400%;
  animation: gradientShift 20s ease infinite;
  z-index: -2;
}

#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.4;
}

@keyframes gradientShift {

  0%,
  100% {
    background-position: 0% 0%, 0% 0%, 0% 0%, 0% 50%;
  }

  50% {
    background-position: 0% 0%, 0% 0%, 0% 0%, 100% 50%;
  }
}

/* Header */
.hero-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 6vh 1rem 4vh;
  text-align: center;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.1));
}

.schedule-pill {
  background: var(--glass-surface);
  border: 1px solid var(--glass-border);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Controls */
.controls {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.segmented-control {
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  padding: 4px;
  border-radius: 100px;
  display: flex;
  gap: 4px;
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
}

.segment-btn {
  position: relative;
  background: transparent;
  border: none;
  color: var(--text-muted);
  padding: 12px 32px;
  border-radius: 100px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  z-index: 2;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.segment-btn.active {
  color: #fff;
}

.segment-pill {
  position: absolute;
  top: 4px;
  bottom: 4px;
  border-radius: 100px;
  background: var(--glass-highlight);
  z-index: 1;
  transition: all 0.4s var(--ease-elastic);
}

/* Cinema Container */
.cinema-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  background: #000;
  border-radius: 24px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 0 1px var(--glass-border);
  overflow: hidden;
  position: relative;
}

.cinema-container::before {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  z-index: 10;
}

.video-responsive {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.video-responsive iframe,
.video-responsive #twitch-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.stream-content {
  display: none;
}

.stream-content.active {
  display: block;
  animation: fadeIn 0.6s ease;
}

/* Footer */
.minimal-footer {
  padding: 4rem 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: auto;
}

.social-dock {
  display: inline-flex;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  border: 1px solid var(--glass-border);
}

.dock-item {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.dock-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .schedule-pill {
    font-size: 0.85rem;
    padding: 8px 20px;
  }

  .segment-btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }

  .cinema-container {
    width: 95%;
  }
}