/* ===== CSS Variables ===== */
:root {
  --bg-dark: #0d0d1a;
  --bg-card: #1a1a2e;
  --bg-card-hover: #252542;
  --accent-primary: hsl(16, 100%, 60%);
  --accent-primary-hover: #da542f;
  --accent-primary-active: #e14b12;
  --accent-secondary: #f85a1f;
  --accent-tertiary: #9c27b0;

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.5);
  --border-color: rgba(255, 255, 255, 0.1);
  /* --gradient-pink: linear-gradient(135deg, #e91e63, #9c27b0); */
  --gradient-pink: linear-gradient(135deg, #ff5c21, #ff8d47);
  --gradient-overlay: linear-gradient(to bottom, transparent, rgba(13, 13, 26, 0.9));
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.3);
  /* --shadow-glow: 0 0 30px rgba(233, 30, 99, 0.3); */
  --shadow-glow: 0 0 30px rgba(0, 194, 255, 0.35);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
  --main-player-compact-height: clamp(190px, 15vw, 240px);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.d-none {
  display: none !important;
  visibility: hidden !important;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 13, 26, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 12px 20px;
}

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

.logo-text {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.logo-accent {
  color: var(--accent-primary);
}

.logo-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--accent-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-live {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--accent-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-live:hover {
  /* background: #c2185b; */
  background: var(--accent-primary-hover);
  box-shadow: var(--shadow-glow);
}

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

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

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg, rgba(13, 13, 26, 0.9), rgba(156, 39, 176, 0.3)); */
  background: linear-gradient(135deg, rgba(13, 13, 26, 0.9), rgba(0, 124, 240, 0.25));
}

.hero-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 40px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: var(--radius-sm);
  width: fit-content;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
  overflow-wrap: anywhere;
  word-break: normal;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  overflow-wrap: anywhere;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.meta-item svg {
  color: var(--accent-primary);
}

.btn-play-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--gradient-pink);
  color: white;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
  width: fit-content;
}

.btn-play-hero:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-play-hero svg {
  transition: var(--transition);
}

.btn-play-hero:hover svg {
  transform: scale(1.1);
}

/* Hero Sidebar */
.hero-sidebar {
  display: flex;
  align-items: center;
  width: 380px;
  min-width: 380px;
  max-width: 380px;
  position: relative;
  align-self: start;
  z-index: 20;
}

.hero-sidebar.is-sticky {
  position: fixed;
  top: 84px;
  z-index: 1020;
}

.sidebar-card {
  background: rgba(26, 26, 46, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
  position: relative;
}

.sidebar-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
}

.sidebar-header h3 {
  font-size: 1.05rem;
  margin-top: 6px;
  overflow-wrap: anywhere;
}

.sidebar-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.sidebar-content {
  padding: 24px 20px;
  text-align: center;
}

.hero-player-image {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}

.hero-player-image .player-mic-icon {
  opacity: 0.8;
}

.hero-player-image .decoration-1 {
  width: 90px;
  height: 90px;
}

.hero-player-image .decoration-2 {
  width: 60px;
  height: 60px;
}

.hero-player-image .decoration-3 {
  width: 40px;
  height: 40px;
}

.sidebar-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
}

.sidebar-content p {
  font-size: 0.85rem;
  color: var(--accent-secondary);
  overflow-wrap: anywhere;
  margin-bottom: 20px;
}

.sidebar-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.hero-player-image .sidebar-controls {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  z-index: 3;
}

.control-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card-hover);
  border-radius: 50%;
  color: var(--text-primary);
  transition: var(--transition);
}

.control-btn.control-btn-main#sidebarPlay {
  background: var(--gradient-pink) !important;
}
.hero-player-image .control-btn {
  background: rgba(26, 19, 13, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.control-btn:hover {
  background: var(--accent-primary);
}

.control-btn-main {
  width: 56px;
  height: 56px;
  background: var(--accent-primary);
}

.sidebar-social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 20px;
  border-top: 1px solid var(--border-color);
}

.sidebar-social .waveform {
  flex: 1;
  min-width: 120px;
  height: 24px;
  padding: 0;
}

.sidebar-social .volume-control {
  width: auto;
  order: initial;
}

.sidebar-social .volume-slider {
  width: 72px;
}

.sidebar-card:fullscreen,
.sidebar-card:-webkit-full-screen,
.big-player:fullscreen,
.big-player:-webkit-full-screen {
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  margin: 0;
  border-radius: 0;
}

.sidebar-card:fullscreen,
.sidebar-card:-webkit-full-screen {
  display: flex;
  flex-direction: column;
  background: var(--bg-dark);
}

.sidebar-card:fullscreen .sidebar-content,
.sidebar-card:-webkit-full-screen .sidebar-content {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.sidebar-card:fullscreen .hero-player-image,
.sidebar-card:-webkit-full-screen .hero-player-image {
  flex: 1;
  min-height: 0;
  margin-bottom: 16px;
}

.sidebar-card:fullscreen .hero-player-image .sidebar-controls,
.sidebar-card:-webkit-full-screen .hero-player-image .sidebar-controls {
  bottom: 20px;
}

.sidebar-card:fullscreen .sidebar-social,
.sidebar-card:-webkit-full-screen .sidebar-social {
  flex-wrap: wrap;
}

.sidebar-card:fullscreen .waveform,
.sidebar-card:-webkit-full-screen .waveform,
.big-player:fullscreen .waveform,
.big-player:-webkit-full-screen .waveform {
  display: flex;
}

.big-player:fullscreen,
.big-player:-webkit-full-screen {
  display: flex;
  flex-direction: column;
  background: var(--bg-dark);
}

.big-player:fullscreen .player-image-container,
.big-player:-webkit-full-screen .player-image-container {
  flex: 1;
  min-height: 0;
}

.big-player:fullscreen .player-controls-bar,
.big-player:-webkit-full-screen .player-controls-bar {
  flex-wrap: wrap;
}

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card-hover);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent-primary);
  color: white;
}

/* ===== Featured Shows ===== */
.featured-shows {
  padding: 40px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.section-header {
  margin-bottom: 24px;
}

.section-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.shows-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-primary) var(--bg-dark);
}

.shows-slider::-webkit-scrollbar {
  height: 6px;
}

.shows-slider::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

.shows-slider::-webkit-scrollbar-thumb {
  background: var(--accent-primary);
  border-radius: 3px;
}

.show-card {
  flex-shrink: 0;
  width: 200px;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.show-card:hover {
  transform: translateY(-4px);
}

.show-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.show-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  background: var(--gradient-overlay);
}

.show-info h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.show-info p {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.slider-info {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.slider-arrow {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-primary);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.slider-arrow:hover {
  /* background: #c2185b; */
  background: var(--accent-primary-hover);
}

/* ===== Main Player Section ===== */
.main-player-section {
  display: none;
  padding: 80px 0;
}

.player-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 30px;
}

/* Big Player */
.big-player {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  height: var(--main-player-compact-height);
  display: flex;
  flex-direction: column;
}

.player-image-container {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.player-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(1.2);
}

.player-overlay-gradient {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg, rgba(156, 39, 176, 0.6), rgba(233, 30, 99, 0.4)); */
  background: linear-gradient(135deg, rgba(0, 194, 255, 0.6), rgba(0, 124, 240, 0.4));
  /* rgba(0, 124, 240, 0.55), rgba(0, 194, 255, 0.35) */
  mix-blend-mode: overlay;
}

.player-mic-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  opacity: 0.9;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

.player-decorations {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.decoration {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
}

.decoration-1 {
  width: 120px;
  height: 120px;
  background: var(--accent-primary);
  top: 20%;
  left: 10%;
}

.decoration-2 {
  width: 80px;
  height: 80px;
  background: var(--accent-secondary);
  bottom: 30%;
  right: 15%;
}

.decoration-3 {
  width: 60px;
  height: 60px;
  background: white;
  top: 60%;
  left: 20%;
}

/* Player Controls Bar */
.player-controls-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 16px;
  background: var(--bg-card-hover);
}

.play-btn-main {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-primary);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
  flex-shrink: 0;
}

.play-btn-main:hover {
  /* background: #c2185b; */
  background: var(--accent-primary-hover);
  transform: scale(1.05);
}

.track-info {
  flex: 1;
  min-width: 0;
}

.track-title {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.track-artist {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.live-badge {
  display: inline-flex;
  padding: 2px 8px;
  background: var(--accent-primary);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 28px;
  padding: 0 10px;
}

.waveform span {
  width: 4px;
  background: var(--accent-primary);
  border-radius: 2px;
  animation: wave 1s ease-in-out infinite;
}

.waveform span:nth-child(1) {
  height: 20px;
  animation-delay: 0s;
}
.waveform span:nth-child(2) {
  height: 35px;
  animation-delay: 0.1s;
}
.waveform span:nth-child(3) {
  height: 25px;
  animation-delay: 0.2s;
}
.waveform span:nth-child(4) {
  height: 40px;
  animation-delay: 0.3s;
}
.waveform span:nth-child(5) {
  height: 30px;
  animation-delay: 0.4s;
}
.waveform span:nth-child(6) {
  height: 20px;
  animation-delay: 0.5s;
}
.waveform span:nth-child(7) {
  height: 35px;
  animation-delay: 0.6s;
}
.waveform span:nth-child(8) {
  height: 25px;
  animation-delay: 0.7s;
}
.waveform span:nth-child(9) {
  height: 40px;
  animation-delay: 0.8s;
}
.waveform span:nth-child(10) {
  height: 30px;
  animation-delay: 0.9s;
}
.waveform span:nth-child(11) {
  height: 22px;
  animation-delay: 0.15s;
}
.waveform span:nth-child(12) {
  height: 38px;
  animation-delay: 0.25s;
}
.waveform span:nth-child(13) {
  height: 28px;
  animation-delay: 0.35s;
}
.waveform span:nth-child(14) {
  height: 42px;
  animation-delay: 0.45s;
}
.waveform span:nth-child(15) {
  height: 32px;
  animation-delay: 0.55s;
}
.waveform span:nth-child(16) {
  height: 18px;
  animation-delay: 0.65s;
}
.waveform span:nth-child(17) {
  height: 33px;
  animation-delay: 0.75s;
}
.waveform span:nth-child(18) {
  height: 27px;
  animation-delay: 0.85s;
}
.waveform span:nth-child(19) {
  height: 36px;
  animation-delay: 0.95s;
}
.waveform span:nth-child(20) {
  height: 24px;
  animation-delay: 0.05s;
}

@keyframes wave {
  0%,
  100% {
    transform: scaleY(0.5);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.waveform.paused span {
  animation-play-state: paused;
}

.player-thumb {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.player-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 8px;
}

.volume-btn {
  color: var(--text-secondary);
  transition: var(--transition);
}

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

.volume-slider {
  width: 80px;
  height: 4px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--border-color);
  border-radius: 2px;
  cursor: pointer;
}

.volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  background: var(--accent-primary);
  border-radius: 50%;
  cursor: pointer;
}

.volume-slider::-moz-range-thumb {
  width: 12px;
  height: 12px;
  background: var(--accent-primary);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.expand-btn {
  color: var(--text-secondary);
  padding: 8px;
  transition: var(--transition);
}

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

/* Schedule Panel */
.schedule-panel {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: var(--main-player-compact-height);
}

.schedule-header {
  padding: 20px;
  border-bottom: 1px solid var(--border-color);
}

.schedule-tag {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.schedule-header h3 {
  font-size: 1.2rem;
  margin-top: 4px;
}

.schedule-list {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  max-height: none;
}

.schedule-item {
  display: flex;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-color);
  cursor: pointer;
  transition: var(--transition);
}

.schedule-item:hover,
.schedule-item.active {
  background: var(--bg-card-hover);
}

.schedule-item.active {
  border-left: 3px solid var(--accent-primary);
}

.schedule-time {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 50px;
}

.schedule-time .time {
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-primary);
}

.schedule-time .period {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.schedule-info h4 {
  font-size: 0.9rem;
  font-weight: 600;
}

.schedule-info p {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.schedule-footer {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  background: var(--bg-card-hover);
  border-top: 1px solid var(--border-color);
}

.schedule-day,
.schedule-week {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.schedule-promo {
  position: relative;
  height: 140px;
  overflow: hidden;
}

.promo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

.promo-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.promo-content h4 {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.promo-content p {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* ===== Radios Grid Section ===== */
.radios-grid-section {
  padding: 80px 0;
  background: var(--bg-dark);
}

.section-header.centered {
  text-align: center;
  margin-bottom: 48px;
}

.section-header.centered h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.header-line {
  width: 60px;
  height: 4px;
  background: var(--gradient-pink);
  margin: 0 auto 16px;
  border-radius: 2px;
}

.section-header.centered p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

.radios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.radio-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.radio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.card-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition:
    filter 0.35s ease,
    transform 0.35s ease;
}

.radio-card:hover .card-image img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.card-overlay {
  position: absolute;
  inset: 0;
  opacity: 1;
  transition: var(--transition);
}

.radio-card:hover .card-overlay {
  opacity: 0;
}

.card-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-primary);
  border-radius: 50%;
  color: white;
  opacity: 0;
  transition: var(--transition);
}

.radio-card:hover .card-play-btn {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.card-play-btn:hover {
  /* background: #c2185b; */
  background: var(--accent-primary-hover);
}

.card-content {
  padding: 20px;
  position: relative;
}

.card-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.card-content p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  min-height: 40px;
}

.btn-listen {
  display: block;
  width: 100%;
  padding: 12px 24px;
  background: var(--bg-card-hover);
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.btn-listen:hover {
  background: var(--accent-primary);
}

.card-tag {
  display: none !important;
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

/* ===== TuneIn Banner ===== */
.tunein-banner {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card-hover));
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.banner-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.tunein-logo {
  display: inline-flex;
  margin-bottom: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 800;
}

.tunein-logo .tune {
  padding: 8px 16px;
  background: var(--bg-dark);
  color: white;
}

.tunein-logo .in {
  padding: 8px 16px;
  background: var(--accent-secondary);
  color: var(--bg-dark);
}

.banner-content h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.banner-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== Footer ===== */
.footer {
  padding: 60px 0 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.contact-item:hover {
  color: var(--accent-primary);
}

.contact-item svg {
  color: var(--accent-primary);
}

.footer-nav h4,
.footer-social h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.footer-nav nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-nav a:hover {
  color: var(--accent-primary);
}

.social-links {
  display: flex;
  gap: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-bottom-nav {
  display: flex;
  gap: 24px;
}

.footer-bottom-nav a {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-bottom-nav a:hover {
  color: var(--accent-primary);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .main-player-section {
    display: block;
    padding: 80px 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-sidebar {
    display: none;
  }

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

  .big-player {
    height: auto;
  }

  .player-image-container {
    aspect-ratio: 16/10;
    flex: none;
  }

  .player-controls-bar {
    padding: 16px 20px;
  }

  .play-btn-main {
    width: 56px;
    height: 56px;
  }

  .waveform {
    height: 40px;
    padding: 0 16px;
  }

  .player-thumb {
    width: 48px;
    height: 48px;
  }

  .schedule-panel {
    height: auto;
    max-height: 400px;
  }

  .schedule-list {
    max-height: 280px;
  }

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

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-card);
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
  }

  .nav.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .player-controls-bar {
    flex-wrap: wrap;
    gap: 12px;
  }

  .waveform {
    display: none;
  }

  .volume-control {
    width: 100%;
    order: 10;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-bottom-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .radios-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

@media (max-width: 480px) {
  .hero-meta {
    flex-direction: column;
    gap: 12px;
  }

  .btn-play-hero {
    width: 50%;
    justify-content: center;
    padding: 6px 5px;
  }

  .section-header.centered h2 {
    font-size: 1.8rem;
  }

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

  #btnLiveIndicator, 
  div.player-thumb,
  #trackArtist span.live-badge
  {
    display: none;
  }
}
