/* ========================================
   GLOBAL STYLES & RESET
======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors from Figma */
  --primary-red: #e03136;
  --primary-blue: #2d3e66;
  --gradient-red-start: #a91d3a;
  --gradient-red-end: #6b1128;
  --dark-bg: #1a1d2e;
  --darker-bg: #13151f;
  --card-bg: #252837;
  --purple: #5b4b9d;
  --text-white: #ffffff;
  --text-gray: #b0b0b0;
  --text-dark-gray: #7a7a7a;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--darker-bg);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.6;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

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

button {
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
}

/* ========================================
   NAVIGATION BAR
======================================== */
.navbar {
  background: var(--dark-bg);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}

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

.logo-srupt {
  color: var(--text-white);
}

.logo-radio {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-white);
  margin-top: -2px;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu a {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-red);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-bar {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 25px;
  overflow: hidden;
  padding: 8px 15px;
}

.search-bar input {
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-white);
  font-size: 14px;
  width: 180px;
}

.search-bar input::placeholder {
  color: var(--text-gray);
}

.search-bar button {
  background: transparent;
  border: none;
  color: var(--text-white);
  padding: 0 8px;
  font-size: 14px;
}

.btn-login {
  background: transparent;
  border: none;
  color: var(--text-white);
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}

.btn-login:hover {
  color: var(--primary-red);
}

/* ========================================
   AUDIO PLAYER BAR
======================================== */
.audio-player {
  background: linear-gradient(
    90deg,
    var(--primary-red) 0%,
    rgba(224, 49, 54, 0.85) 100%
  );
  padding: 12px 0;
  box-shadow: 0 4px 15px rgba(224, 49, 54, 0.3);
}

.player-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.player-left {
  flex: 0 0 auto;
}

.now-playing {
  display: flex;
  align-items: center;
  gap: 12px;
}

.now-playing img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.now-playing-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.live-badge {
  color: var(--text-white);
  font-weight: 700;
  font-size: 13px;
}

.show-name {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 500;
}

.player-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 600px;
}

.controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.control-btn {
  background: transparent;
  border: none;
  color: var(--text-white);
  font-size: 16px;
  padding: 8px;
  transition: transform 0.2s ease, opacity 0.3s ease;
}

.control-btn:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.play-btn {
  width: 36px;
  height: 36px;
  border: 2px solid var(--text-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-container {
  width: 100%;
}

.progress-bar {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: var(--text-white);
  border-radius: 2px;
}

.player-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 15px;
}

.volume-bar {
  width: 80px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
}

.volume-level {
  height: 100%;
  background: var(--text-white);
  border-radius: 2px;
}

.btn-live-stream,
.btn-queue {
  background: rgba(0, 0, 0, 0.3);
  border: none;
  color: var(--text-white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.3s ease;
}

.btn-live-stream:hover,
.btn-queue:hover {
  background: rgba(0, 0, 0, 0.5);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
  background: linear-gradient(
    135deg,
    var(--gradient-red-start) 0%,
    var(--gradient-red-end) 100%
  );
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-left {
  flex: 1;
  max-width: 600px;
}

.hero-logo {
  margin-bottom: 25px;
}

.hero-logo-text {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-logo-radio {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0.15em;
  margin-top: -5px;
}

.hero-status {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.live-tag {
  background: var(--primary-red);
  color: var(--text-white);
  padding: 6px 20px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
}

.time-slot {
  color: var(--text-white);
  font-weight: 500;
  font-size: 16px;
}

.hero-title {
  font-size: 72px;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 35px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.play-button {
  background: transparent;
  border: 3px solid var(--text-white);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

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

.btn-alexa {
  background: transparent;
  border: 2px solid var(--text-white);
  color: var(--text-white);
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-alexa:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-right {
  flex-shrink: 0;
}

.host-image {
  height: 450px;
  width: auto;
  object-fit: cover;
  filter: grayscale(100%);
}
/* ========================================
   UP NEXT SECTION
======================================== */
.up-next {
  padding: 60px 0;
  background: var(--darker-bg);
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-red);
  margin-bottom: 40px;
}

.carousel-wrapper {
  position: relative;
}

.up-next-carousel,
.previous-stream-carousel {
  display: flex;
  overflow: hidden;
  scroll-behavior: smooth;
}

.carousel-slide {
  min-width: 100%;
  transition: transform 0.5s ease;
}

/* UP NEXT GRID - Big Left + Small Right (2x2) */
.up-next-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 25px;
  align-items: start;
}

/* PREVIOUS STREAM GRID - Small Left (2x2) + Big Right */
.previous-stream-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
  align-items: start;
}

/* Small Cards Grid (2x2) */
.small-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}

/* Featured Big Card */
.show-card.featured {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.show-card.featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(224, 49, 54, 0.4);
}

.show-card.featured.purple:hover {
  box-shadow: 0 10px 30px rgba(91, 75, 157, 0.4);
}

/* Small Cards */
.show-card.small {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.show-card.small:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Card Images */
.card-image {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.show-card.featured .card-image {
  height: 450px;
}

.show-card.small .card-image {
  height: 180px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

/* Card Overlays */
.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(224, 49, 54, 0.2) 0%,
    rgba(224, 49, 54, 0.9) 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 40px 20px;
}

.card-overlay.purple {
  background: linear-gradient(
    180deg,
    rgba(91, 75, 157, 0.2) 0%,
    rgba(91, 75, 157, 0.9) 100%
  );
}

.overlay-text {
  font-size: 42px;
  font-weight: 900;
  color: var(--text-white);
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.1;
}

/* Card Info */
.card-info {
  padding: 20px;
  background: var(--card-bg);
}

.show-card.small .card-info {
  padding: 15px;
}

.card-info h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.show-card.small .card-info h3 {
  font-size: 15px;
}

.card-info p {
  font-size: 14px;
  color: var(--text-gray);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.show-card.small .card-info p {
  font-size: 12px;
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--text-white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 18px;
}

.carousel-nav:hover {
  background: rgba(0, 0, 0, 0.85);
  border-color: var(--text-white);
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: -25px;
}

.carousel-nav.next {
  right: -25px;
}

/* ========================================
   PREVIOUS STREAM SECTION
======================================== */
.previous-stream {
  padding: 60px 0;
  background: var(--darker-bg);
}

/* ========================================
   FLAGSHIP PROGRAMS SECTION
======================================== */
.flagship-programs,
.specialist-programs {
  padding: 60px 0;
  background: var(--darker-bg);
}

.programs-grid {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px 0;
}

.programs-grid::-webkit-scrollbar {
  display: none;
}

.program-card {
  flex: 0 0 420px;
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.program-image {
  width: 100%;
  height: 480px;
  position: relative;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.program-footer {
  background: var(--primary-red);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.play-btn-small {
  background: rgba(255, 255, 255, 0.25);
  border: none;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.play-btn-small:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.15);
}

.program-info h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 5px;
  line-height: 1.2;
}

.program-info p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1400px) {
  .container {
    padding: 0 35px;
  }
}

@media (max-width: 1200px) {
  .up-next-grid,
  .previous-stream-grid {
    grid-template-columns: 1fr 1.5fr;
    gap: 20px;
  }

  .previous-stream-grid {
    grid-template-columns: 1.5fr 1fr;
  }

  .show-card.featured .card-image {
    height: 380px;
  }

  .small-cards-grid {
    gap: 15px;
  }

  .overlay-text {
    font-size: 36px;
  }

  .program-card {
    flex: 0 0 380px;
  }

  .program-image {
    height: 420px;
  }
}

@media (max-width: 992px) {
  .up-next-grid,
  .previous-stream-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .small-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .show-card.featured .card-image {
    height: 350px;
  }

  .show-card.small .card-image {
    height: 220px;
  }

  .program-card {
    flex: 0 0 340px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .small-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .show-card.small .card-image {
    height: 250px;
  }

  .overlay-text {
    font-size: 32px;
  }

  .carousel-nav {
    display: none;
  }

  .program-card {
    flex: 0 0 300px;
  }

  .program-image {
    height: 360px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 20px;
  }

  .up-next,
  .previous-stream,
  .flagship-programs,
  .specialist-programs {
    padding: 40px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .show-card.featured .card-image {
    height: 280px;
  }

  .show-card.small .card-image {
    height: 200px;
  }

  .overlay-text {
    font-size: 28px;
  }

  .card-info h3 {
    font-size: 16px;
  }

  .show-card.small .card-info h3 {
    font-size: 14px;
  }

  .program-card {
    flex: 0 0 260px;
  }

  .program-image {
    height: 320px;
  }

  .program-footer {
    padding: 18px 20px;
  }

  .program-info h3 {
    font-size: 18px;
  }

  .program-info p {
    font-size: 13px;
  }
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.show-card,
.program-card {
  animation: slideIn 0.5s ease-out;
}

/* Smooth Transitions */
.carousel-slide {
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   FLAGSHIP PROGRAMS & SPECIALIST PROGRAMS
======================================== */
.flagship-programs,
.specialist-programs {
  padding: 60px 0;
  background: var(--darker-bg);
}

.programs-grid {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.programs-grid::-webkit-scrollbar {
  display: none;
}

.program-card {
  flex: 0 0 420px;
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.program-image {
  width: 100%;
  height: 450px;
  position: relative;
  overflow: hidden;
}

.program-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.program-footer {
  background: var(--primary-red);
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.play-btn-small {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.play-btn-small:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.1);
}

.program-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.program-info p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 1200px) {
  .container {
    padding: 0 30px;
  }

  .hero-content {
    padding: 0 60px;
  }

  .hero-title {
    font-size: 60px;
  }

  .host-image {
    height: 380px;
  }
}

@media (max-width: 992px) {
  .nav-menu {
    gap: 25px;
  }

  .nav-menu a {
    font-size: 14px;
  }

  .hero-content {
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-title {
    font-size: 50px;
  }

  .hero-right {
    margin-top: 30px;
  }

  .host-image {
    height: 320px;
  }

  .player-content {
    flex-wrap: wrap;
    justify-content: center;
  }

  .player-center {
    order: 3;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-content {
    flex-direction: column;
    gap: 20px;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-logo-text {
    font-size: 38px;
  }

  .hero-logo-radio {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .show-card {
    flex: 0 0 240px;
  }

  .program-card {
    flex: 0 0 320px;
  }

  .program-image {
    height: 350px;
  }

  .carousel-nav {
    display: none;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 20px;
  }

  .hero-content {
    padding: 0 20px;
  }

  .hero-title {
    font-size: 32px;
  }

  .audio-player {
    padding: 10px 0;
  }

  .player-content {
    gap: 15px;
  }

  .now-playing img {
    width: 40px;
    height: 40px;
  }

  .btn-live-stream,
  .btn-queue {
    font-size: 11px;
    padding: 6px 12px;
  }

  .show-card,
  .program-card {
    flex: 0 0 200px;
  }

  .program-image {
    height: 280px;
  }
}

/* ========================================
   ANIMATIONS
======================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.show-card,
.program-card {
  animation: fadeIn 0.5s ease-out;
}

/* Smooth hover effects */
.show-card,
.program-card,
.control-btn,
.play-button,
.btn-alexa,
.btn-live-stream,
.btn-queue,
.carousel-nav {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   LOCAL BUSINESS HIGHLIGHTS SECTION
======================================== */
.local-business-highlights {
  padding: 60px 0;
  background: var(--darker-bg);
}

/* ========================================
   HOW TO LISTEN SECTION
======================================== */
.how-to-listen {
  padding: 80px 0;
  background: #3a3a3a;
}

.listen-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.listen-card {
  background: var(--primary-red);
  border-radius: 12px;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.listen-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(224, 49, 54, 0.4);
}

.listen-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.listen-icon svg {
  width: 100%;
  height: 100%;
}

.listen-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  margin: 0;
}

/* ========================================
   NEWSLETTER SECTION
======================================== */
.newsletter-section {
  background: var(--primary-red);
  padding: 60px 0;
}

.newsletter-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.newsletter-text {
  flex: 1;
}

.newsletter-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 10px;
}

.newsletter-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.newsletter-form {
  flex: 1;
  display: flex;
  gap: 15px;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 25px;
  border-radius: 50px;
  border: none;
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  outline: none;
}

.btn-subscribe {
  background: var(--darker-bg);
  color: var(--text-white);
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-subscribe:hover {
  background: var(--dark-bg);
  transform: scale(1.05);
}

/* ========================================
   FOOTER SECTION
======================================== */
.footer {
  background: var(--dark-bg);
  padding: 60px 0 30px;
  color: var(--text-white);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  padding-right: 20px;
}

.footer-logo {
  margin-bottom: 15px;
}

.footer-logo .logo-text {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
}

.footer-logo .logo-radio {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-top: -3px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--text-gray);
  margin-bottom: 20px;
}

.app-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.app-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 10px 18px;
  text-decoration: none;
  color: var(--text-white);
  transition: all 0.3s ease;
}

.app-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateX(5px);
}

.app-btn i {
  font-size: 28px;
}

.app-btn div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.app-text-small {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1;
}

.app-text-large {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
}

/* Footer Columns */
.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  color: var(--text-gray);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--primary-red);
}

/* Social Icons */
.social-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.social-icon {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-gray);
  font-size: 14px;
  margin: 0;
}

/* ========================================
   RESPONSIVE DESIGN - How to Listen & Footer
======================================== */
@media (max-width: 1200px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr 1.5fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 992px) {
  .listen-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .newsletter-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .how-to-listen {
    padding: 60px 0;
  }

  .listen-options {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .listen-card {
    padding: 30px 15px;
  }

  .listen-icon {
    width: 60px;
    height: 60px;
  }

  .listen-card h3 {
    font-size: 16px;
  }

  .newsletter-section {
    padding: 50px 0;
  }

  .newsletter-text h2 {
    font-size: 28px;
  }

  .newsletter-text p {
    font-size: 14px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    width: 100%;
  }

  .footer {
    padding: 50px 0 25px;
  }

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

  .social-icons {
    grid-template-columns: repeat(5, 1fr);
    max-width: 300px;
  }
}

@media (max-width: 576px) {
  .how-to-listen {
    padding: 50px 0;
  }

  .listen-options {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .listen-card {
    padding: 25px 15px;
  }

  .newsletter-section {
    padding: 40px 0;
  }

  .newsletter-text h2 {
    font-size: 24px;
  }

  .newsletter-form input {
    padding: 12px 20px;
    font-size: 14px;
  }

  .btn-subscribe {
    padding: 12px 30px;
    font-size: 14px;
  }

  .footer {
    padding: 40px 0 20px;
  }

  .footer-logo .logo-text {
    font-size: 28px;
  }

  .footer-logo .logo-radio {
    font-size: 18px;
  }

  .app-buttons {
    gap: 10px;
  }

  .app-btn {
    padding: 8px 15px;
  }

  .app-btn i {
    font-size: 24px;
  }

  .app-text-small {
    font-size: 10px;
  }

  .app-text-large {
    font-size: 14px;
  }

  .footer-col h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .footer-col ul li {
    margin-bottom: 10px;
  }

  .footer-col ul li a {
    font-size: 14px;
  }

  .social-icons {
    grid-template-columns: repeat(5, 1fr);
    max-width: 250px;
    gap: 8px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .footer-bottom {
    padding-top: 25px;
  }

  .footer-bottom p {
    font-size: 12px;
  }
}

/* ========================================
   EXTRA SMALL DEVICES
======================================== */
@media (max-width: 375px) {
  .listen-options {
    gap: 12px;
  }

  .listen-card {
    padding: 20px 10px;
  }

  .listen-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .listen-card h3 {
    font-size: 14px;
  }

  .newsletter-text h2 {
    font-size: 20px;
  }

  .social-icons {
    grid-template-columns: repeat(5, 1fr);
    max-width: 220px;
    gap: 6px;
  }

  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/* ========================================
   UTILITY CLASSES
======================================== */
.text-center {
  text-align: center;
}

.mt-1 {
  margin-top: 10px;
}
.mt-2 {
  margin-top: 20px;
}
.mt-3 {
  margin-top: 30px;
}
.mt-4 {
  margin-top: 40px;
}

.mb-1 {
  margin-bottom: 10px;
}
.mb-2 {
  margin-bottom: 20px;
}
.mb-3 {
  margin-bottom: 30px;
}
.mb-4 {
  margin-bottom: 40px;
}

.pt-1 {
  padding-top: 10px;
}
.pt-2 {
  padding-top: 20px;
}
.pt-3 {
  padding-top: 30px;
}
.pt-4 {
  padding-top: 40px;
}

.pb-1 {
  padding-bottom: 10px;
}
.pb-2 {
  padding-bottom: 20px;
}
.pb-3 {
  padding-bottom: 30px;
}
.pb-4 {
  padding-bottom: 40px;
}

/* ========================================
   SMOOTH ANIMATIONS
======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.listen-card,
.newsletter-section,
.footer-col {
  animation: fadeInUp 0.6s ease-out;
}

/* ========================================
   PRINT STYLES
======================================== */
@media print {
  .navbar,
  .audio-player,
  .carousel-nav,
  .newsletter-section,
  .social-icons {
    display: none;
  }

  body {
    background: white;
    color: black;
  }

  .footer {
    border-top: 1px solid #000;
  }
}

/* ========================================
   END OF STYLESHEET
======================================== */
:root {
  --dr-red: #e03136;
  --dr-blue: #2d3e66;
  --bg-dark: #11161d;
  --card-dark: #171d26;
  --text-light: #f5f5f5;
  --text-muted: #a0a5b1;
}

body {
  background: #000;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--text-light);
}

.up-next {
  background: var(--bg-dark);
  padding: 32px 40px;
  overflow: hidden;
}

.up-next-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.up-next-header h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.up-next-nav {
  display: flex;
  gap: 8px;
}

.nav-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #2b313d;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.nav-btn:hover {
  background: #202735;
  border-color: #4b5263;
  transform: translateY(-1px);
}

/* Track */

.up-next-track-wrapper {
  position: relative;
  overflow: hidden;
}

.up-next-track {
  display: flex;
  gap: 24px;
  transition: transform 0.35s ease;
  will-change: transform;
}

/* Cards */

.show-card {
  background: var(--card-dark);
  border-radius: 8px;
  min-width: 210px;
  max-width: 210px;
  padding: 8px;
  box-sizing: border-box;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
  border: 2px solid transparent;
}

.show-card--large {
  min-width: 260px;
  max-width: 260px;
}

.show-card.is-active {
  border-color: var(--dr-red);
  box-shadow: 0 0 0 1px rgba(224, 49, 54, 0.5);
}

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

.show-cover {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}

.show-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.show-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.show-title {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.show-time {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.time-icon {
  font-size: 12px;
}

/* Responsive */

@media (max-width: 768px) {
  .up-next {
    padding: 24px 16px;
  }

  .up-next-track {
    gap: 16px;
  }

  .show-card,
  .show-card--large {
    min-width: 180px;
    max-width: 180px;
  }
}
