/* CSS Variables & Core System */
:root {
  --bg-color: #141414; /* Netflix pitch dark */
  --panel-bg: rgba(24, 24, 24, 0.85); /* Netflix-style grey card backgrounds */
  --panel-border: rgba(255, 255, 255, 0.1);
  --text-primary: #FFFFFF;
  --text-secondary: #E5E5E5; /* Netflix second-level light grey */
  --text-muted: #808080; /* Netflix dark grey text */
  --accent-color: #E50914; /* Netflix signature red */
  --accent-glow: rgba(229, 9, 20, 0.45);
  --card-hover: rgba(255, 255, 255, 0.08);
  --safe-area-bottom: env(safe-area-inset-bottom, 0px);
}

/* Reset and Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-primary);
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ambient Background Glow (Subtle bottom red spotlight, style of Netflix cinema screens) */
.glow-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background: radial-gradient(circle at 50% 120%, rgba(229, 9, 20, 0.08) 0%, transparent 60%);
}

/* App Container Layout */
.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-bottom: calc(120px + var(--safe-area-bottom));
}

/* Header styling - Netflix translucent style that goes black on scroll */
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 4%;
  background: linear-gradient(to bottom, rgba(20, 20, 20, 0.95) 0%, rgba(20, 20, 20, 0) 100%);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding-top: calc(16px + env(safe-area-inset-top, 0px));
  transition: background-color 0.3s ease;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-logo {
  height: 28px;
  width: auto;
  display: block;
}

/* Netflix-like Logo Typography */
.app-header h1 {
  font-size: 25px;
  font-weight: 900;
  letter-spacing: -1.2px;
  color: var(--accent-color);
  text-transform: uppercase;
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.8);
  font-family: 'Outfit', sans-serif;
}

/* Selector de simulación (Netflix Profile style dropdown) */
.geo-simulator select {
  font-family: inherit;
  background: rgba(0, 0, 0, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-primary);
  padding: 6px 12px;
  border-radius: 4px; /* Netflix-style squared corners */
  font-size: 13px;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.geo-simulator select:hover {
  border-color: rgba(255, 255, 255, 0.4);
}

.geo-simulator select:focus {
  border-color: var(--text-primary);
}

/* Main Content Area */
.main-content {
  padding: 0 4%;
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
}

/* Sections */
.radio-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.section-title-group {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.section-title-group h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: var(--text-primary);
}

.location-badge, .sub-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px; /* Netflix-style sharper corners */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.location-badge {
  background-color: rgba(229, 9, 20, 0.15);
  color: var(--accent-color);
  border: 1px solid rgba(229, 9, 20, 0.3);
  box-shadow: 0 0 8px rgba(229, 9, 20, 0.1);
}

.sub-badge {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Radios Grid -> Horizontal Carousel */
.radios-grid {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding: 12px 4px 20px; /* Top/bottom padding for zoom hover space */
  scrollbar-width: none; /* Hide scrollbar Firefox */
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}

.radios-grid::-webkit-scrollbar {
  display: none; /* Hide scrollbar Safari/Chrome */
}

/* Radio Card - Netflix poster/landscape format (16:9 ratio) */
.radio-card {
  flex: 0 0 240px; /* Fixed width for horizontal carousel */
  height: 135px; /* Perfect 16:9 ratio for 240px width */
  padding: 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid transparent; /* Red border on active/hover */
  border-radius: 4px; /* Netflix standard minor round corners */
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), border-color 0.3s ease;
  overflow: hidden;
  position: relative;
  background-color: #1a1a1a;
  scroll-snap-align: start;
}

/* Overlay gradient inside card for high contrast readability */
.radio-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(20, 20, 20, 0.95) 0%, rgba(20, 20, 20, 0.4) 60%, rgba(20, 20, 20, 0.15) 100%);
  z-index: 1;
  transition: background 0.3s ease;
}

.radio-card:hover {
  transform: scale(1.08); /* Zoom out effect like Netflix poster card */
  z-index: 5;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.8);
}

.radio-card:hover::before {
  background: linear-gradient(to top, rgba(20, 20, 20, 0.98) 0%, rgba(20, 20, 20, 0.5) 60%, rgba(20, 20, 20, 0.2) 100%);
}

.radio-card.active {
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(229, 9, 20, 0.3);
}

/* Details sitting on top of cover */
.radio-details {
  display: flex;
  flex-direction: column;
  gap: 1px;
  z-index: 2;
  pointer-events: none;
}

.radio-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  letter-spacing: -0.2px;
}

.radio-freq {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-color);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Actions */
.card-actions {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

/* Favorite Button */
.btn-fav {
  background: rgba(20, 20, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-secondary);
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-fav svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-fav:hover {
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.btn-fav.active {
  color: var(--accent-color);
  background-color: rgba(229, 9, 20, 0.12);
  border-color: rgba(229, 9, 20, 0.4);
}

.btn-fav.active svg {
  fill: var(--accent-color);
  stroke: var(--accent-color);
  transform: scale(1.1);
}

/* Billboard (Hero Banner) - Netflix Style */
.billboard-container {
  position: relative;
  width: 100%;
  height: 56vw; /* Landscape movie ratio */
  min-height: 350px;
  max-height: 500px;
  background-color: #000;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0 4% calc(20px + env(safe-area-inset-bottom, 0px));
}

.billboard-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: background-image 0.8s ease-in-out;
  z-index: 0;
}

/* Netflix gradient cover over the billboard background */
.billboard-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(75deg, rgba(20, 20, 20, 0.95) 0%, rgba(20, 20, 20, 0.8) 25%, rgba(20, 20, 20, 0) 65%),
              linear-gradient(to bottom, rgba(20, 20, 20, 0) 60%, rgba(20, 20, 20, 0.8) 85%, var(--bg-color) 100%);
  z-index: 1;
}

.billboard-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeUpIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  padding-top: calc(40px + env(safe-area-inset-top, 0px));
}

@keyframes fadeUpIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.billboard-tag {
  font-size: 11px;
  font-weight: 800;
  color: var(--accent-color);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.billboard-title {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-primary);
  letter-spacing: -1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.billboard-show-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background-color: rgba(229, 9, 20, 0.25);
  border-left: 3px solid var(--accent-color);
  padding: 6px 12px;
  border-radius: 0 4px 4px 0;
  margin-top: 4px;
  width: fit-content;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  transition: all 0.3s ease;
  animation: fadeUpIn 0.5s ease-in-out;
}

.billboard-show-info.hidden {
  display: none !important;
}

.billboard-description {
  font-size: 14px;
  color: #d2d2d2;
  line-height: 1.4;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.billboard-buttons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

/* Netflix white-solid & grey-glass buttons styling */
.btn-billboard {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-billboard svg {
  width: 16px;
  height: 16px;
}

.btn-billboard.btn-play {
  background-color: var(--text-primary);
  color: #000000;
}

.btn-billboard.btn-play:hover:not(:disabled) {
  background-color: rgba(255, 255, 255, 0.75);
}

.btn-billboard.btn-play:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-billboard.btn-info {
  background-color: rgba(109, 109, 110, 0.7);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-billboard.btn-info:hover {
  background-color: rgba(109, 109, 110, 0.4);
}

/* GPS Prompt Screen */
.gps-prompt {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  gap: 12px;
}

.prompt-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 46, 84, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  margin-bottom: 6px;
}

.gps-prompt h3 {
  font-size: 18px;
  font-weight: 600;
}

.gps-prompt p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.4;
  max-width: 320px;
}

.btn-primary {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.hidden {
  display: none !important;
}

/* Floating Mini Player (iOS native dynamic island style) */
.mini-player-wrapper {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px 20px calc(16px + var(--safe-area-bottom));
  z-index: 100;
  pointer-events: none;
}

.mini-player-container {
  pointer-events: auto;
  max-width: 650px;
  margin: 0 auto;
  background: rgba(18, 18, 24, 0.85);
  backdrop-filter: blur(30px) saturate(180%);
  -webkit-backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
  border-radius: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  gap: 16px;
  overflow: hidden; /* Clips the blurred background brand */
}

.player-blur-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(4px) saturate(130%) brightness(0.22);
  opacity: 0;
  z-index: 0;
  transition: background-image 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
  pointer-events: none;
}

/* Ensure contents sit neatly above the blurred artwork */
.player-station-info,
.vu-meter-container,
.player-controls {
  position: relative;
  z-index: 1;
}

.mini-player-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 26px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

@keyframes slideUp {
  from {
    transform: translateY(120px) scale(0.95);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.player-station-info {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1;
}

.player-metadata {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.player-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.2px;
}

.player-frequency {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.player-show-text {
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 260px;
}


/* 5-BAND FREQUENCY EQUALIZER SYSTEM */
.vu-meter-container {
  display: flex;
  gap: 3.5px;
  height: 48px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 5px 8px;
  border-radius: 10px;
  align-items: flex-end;
  flex-shrink: 0;
}

.vu-channel {
  display: flex;
  flex-direction: column;
  gap: 1.5px;
  justify-content: flex-end;
  height: 100%;
}

.vu-seg {
  width: 6.5px;
  height: 2.2px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0.5px;
  transition: background-color 0.04s ease, box-shadow 0.04s ease;
}

/* Color mapping for active spectrum segments */
/* Green - Levels 0 to 5 */
.vu-seg[data-lvl="0"].active,
.vu-seg[data-lvl="1"].active,
.vu-seg[data-lvl="2"].active,
.vu-seg[data-lvl="3"].active,
.vu-seg[data-lvl="4"].active,
.vu-seg[data-lvl="5"].active {
  background-color: #00FF66;
  box-shadow: 0 0 6px rgba(0, 255, 102, 0.7);
}

/* Yellow - Levels 6 to 7 */
.vu-seg[data-lvl="6"].active,
.vu-seg[data-lvl="7"].active {
  background-color: #FFCC00;
  box-shadow: 0 0 6px rgba(255, 204, 0, 0.7);
}

/* Red - Levels 8 to 9 */
.vu-seg[data-lvl="8"].active,
.vu-seg[data-lvl="9"].active {
  background-color: var(--accent-color);
  box-shadow: 0 0 6px var(--accent-glow);
}

/* Player Action Controls */
.player-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.btn-control {
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.play-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--text-primary);
  color: var(--bg-color);
  box-shadow: 0 4px 10px rgba(255,255,255,0.15);
}

.play-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 14px rgba(255,255,255,0.25);
}

.play-btn:active {
  transform: scale(0.96);
}

.play-btn svg {
  width: 22px;
  height: 22px;
}

.airplay-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--text-secondary);
  background-color: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.05);
}

.airplay-btn:hover {
  color: var(--text-primary);
  background-color: rgba(255, 255, 255, 0.12);
}

.airplay-btn svg {
  width: 18px;
  height: 18px;
}

/* SR Only Accessibility helper */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Empty State Styling */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 24px;
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  color: var(--text-secondary);
  font-size: 14px;
}

/* Responsive adjustments */
@media(max-width: 480px) {
  .app-header {
    padding: 12px 16px;
  }
  .app-header h1 {
    font-size: 21px;
  }
  .geo-simulator select {
    font-size: 12px;
    padding: 5px 10px;
  }
  .billboard-container {
    height: 70vw;
    min-height: 280px;
    padding: 0 16px 16px;
  }
  .billboard-content {
    gap: 8px;
    max-width: 100%;
  }
  .billboard-title {
    font-size: 26px;
  }
  .billboard-description {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }
  .btn-billboard {
    font-size: 12px;
    padding: 6px 14px;
  }
  .main-content {
    padding: 0 16px;
    gap: 24px;
  }
  .radios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 8px 2px 16px;
    overflow-x: visible;
    scroll-snap-type: none;
  }
  .radio-card {
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    padding: 10px;
    border-radius: 3px;
  }
  .radio-name {
    font-size: 13px;
  }
  .radio-freq {
    font-size: 9px;
  }
  .btn-fav {
    width: 26px;
    height: 26px;
    top: 6px;
    right: 6px;
  }
  .btn-fav svg {
    width: 12px;
    height: 12px;
  }
  .mini-player-wrapper {
    padding: 10px 10px calc(10px + var(--safe-area-bottom));
  }
  .mini-player-container {
    padding: 10px 12px;
    border-radius: 12px;
    gap: 12px;
  }
  .vu-meter-container {
    padding: 3px 5px;
    height: 40px;
    gap: 2.5px;
  }
  .vu-seg {
    width: 5.5px;
    height: 1.8px;
  }
}

/* Netflix-style Details Modal */
.info-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 650px;
  background-color: #181818;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
  animation: modalFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

@keyframes modalFadeIn {
  from {
    transform: scale(0.92) translateY(20px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.modal-hero {
  position: relative;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: #000;
}

.modal-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #181818 0%, rgba(24, 24, 24, 0.5) 60%, rgba(24, 24, 24, 0) 100%);
}

.modal-hero-content {
  position: absolute;
  bottom: 20px;
  left: 24px;
  z-index: 2;
}

.modal-hero-content h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 2px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
}

.modal-hero-content p {
  font-size: 13px;
  color: var(--accent-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.modal-body {
  padding: 24px;
  overflow-y: auto;
  flex: 1;
}

.modal-details-grid {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr;
  gap: 24px;
}

@media(max-width: 600px) {
  .modal-details-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.current-show-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(229, 9, 20, 0.08);
  border: 1px solid rgba(229, 9, 20, 0.25);
  padding: 8px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
  font-size: 13px;
}

.live-pulse {
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 0 var(--accent-color);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.7);
  }
  70% {
    box-shadow: 0 0 0 6px rgba(229, 9, 20, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(229, 9, 20, 0);
  }
}

.show-schedule-section h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-secondary);
}

.schedule-tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 4px;
  margin-bottom: 14px;
}

.tab-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}

.tab-btn:hover {
  color: var(--text-primary);
}

.tab-btn.active {
  color: var(--text-primary);
}

.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 240px;
  overflow-y: auto;
  padding-right: 4px;
}

/* Custom scrollbar for schedule list */
.schedule-list::-webkit-scrollbar {
  width: 4px;
}

.schedule-list::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
}

.schedule-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 4px;
  font-size: 12px;
  border-left: 3px solid transparent;
}

.schedule-item.active {
  background: rgba(229, 9, 20, 0.08);
  border-left-color: var(--accent-color);
}

.schedule-time {
  font-weight: 700;
  color: var(--accent-color);
}

.schedule-show {
  color: var(--text-primary);
  font-weight: 600;
}

.schedule-host {
  color: var(--text-muted);
  font-size: 11px;
}

.modal-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 12px;
  color: var(--text-secondary);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  padding-left: 16px;
}

@media(max-width: 600px) {
  .modal-sidebar {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 16px;
  }
}

.modal-sidebar p strong {
  color: var(--text-muted);
  display: block;
  margin-bottom: 2px;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.5px;
}

.modal-sidebar a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.modal-sidebar a:hover {
  text-decoration: underline;
}

/* Billboard Carousel Styles */
.billboard-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  border: none;
  color: #fff;
  font-size: 38px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: all 0.3s ease;
  opacity: 0; /* Hidden until hover */
  pointer-events: auto;
}

.billboard-container:hover .billboard-arrow {
  opacity: 1;
}

.billboard-arrow:hover {
  background: rgba(229, 9, 20, 0.85);
  scale: 1.1;
}

.arrow-prev {
  left: 20px;
}

.arrow-next {
  right: 20px;
}

.billboard-dots {
  position: absolute;
  bottom: 20px;
  right: 4%;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.billboard-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.billboard-dot:hover {
  background: rgba(255, 255, 255, 0.75);
}

.billboard-dot.active {
  background: var(--accent-color);
  width: 24px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .billboard-arrow {
    opacity: 0.6;
    width: 40px;
    height: 40px;
    font-size: 26px;
  }
  .arrow-prev {
    left: 10px;
  }
  .arrow-next {
    right: 10px;
  }
}

