/* ==========================================================================
   ARABIA LIVE TV (arabialivetv.com) - STARZPLAY CINEMA DESIGN SYSTEM
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700;800;900&family=Outfit:wght@400;600;800;900&display=swap');

:root {
  /* STARZPLAY Theme Colors */
  --bg-main: #06080e;
  --bg-surface: #0e121e;
  --bg-card: rgba(18, 25, 42, 0.85);
  --bg-card-hover: rgba(30, 42, 70, 0.95);
  --bg-glass: rgba(8, 11, 20, 0.85);
  --border-glass: rgba(255, 255, 255, 0.08);
  
  --primary: #ff5200;       /* STARZPLAY Signature Orange */
  --primary-hover: #ff6e26;
  --primary-glow: rgba(255, 82, 0, 0.45);
  --secondary: #00b0ff;     /* Electric Blue Accent */
  --gold: #ffd700;          /* Gold Accent */
  --danger: #ff1744;         /* Live Crimson */
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dark: #06080e;

  --shadow-main: 0 20px 40px -15px rgba(0, 0, 0, 0.95);
  --shadow-orange: 0 0 30px rgba(255, 82, 0, 0.35);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
  font-family: 'Cairo', 'Outfit', sans-serif;
  background-color: var(--bg-main);
  background-image: 
    radial-gradient(circle at 10% 0%, rgba(255, 82, 0, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 100%, rgba(0, 176, 255, 0.08) 0%, transparent 40%);
  background-attachment: fixed;
  color: var(--text-main);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 82, 0, 0.4);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ==================== 400PX TOP FULL-WIDTH BANNER ==================== */
.top-stars-header {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-bottom: 2px solid var(--border-glass);
  box-shadow: 0 12px 45px rgba(0, 0, 0, 0.95);
  z-index: 100;
  display: flex;
  align-items: flex-start;
  padding-top: 24px;
}

.stars-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('./banner.png');
  background-size: cover;
  background-position: center 35%;
  filter: brightness(0.95) contrast(1.1);
  transform: scale(1.01);
  transition: transform 8s ease;
}
.top-stars-header:hover .stars-banner-bg {
  transform: scale(1.04);
}

.stars-banner-overlay {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(180deg, rgba(6, 8, 14, 0.8) 0%, rgba(6, 8, 14, 0.15) 50%, rgba(6, 8, 14, 0.9) 100%),
    linear-gradient(90deg, rgba(6, 8, 14, 0.6) 0%, transparent 50%, rgba(6, 8, 14, 0.6) 100%);
}

.stars-banner-content {
  position: relative;
  z-index: 10;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.banner-brand-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ULTRA CRYSTAL TRANSPARENT SITE LOGO CONTAINER TO SHOW BANNER PHOTO */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.04); /* ULTRA TRANSPARENT */
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}
.brand-logo:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary);
  box-shadow: 0 10px 35px rgba(255, 82, 0, 0.4);
}
.logo-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 82, 0, 0.15);
  border: 1.5px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  box-shadow: var(--shadow-orange);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.brand-logo:hover .logo-icon {
  transform: rotate(10deg) scale(1.08);
  background: var(--primary);
  color: #000;
}
.brand-text h1 {
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.9);
}
.brand-text span {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 1px;
  display: block;
  margin-top: -4px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
}

/* ==================== SUB-NAV NAVIGATION BAR BELOW BANNER ==================== */
.sub-nav-bar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--bg-glass);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid var(--border-glass);
  padding: 14px 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.85);
}
.sub-nav-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.search-box {
  flex: 1;
  max-width: 550px;
  position: relative;
}
.search-box input {
  width: 100%;
  padding: 12px 48px 12px 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  border-radius: 50px;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.94rem;
  transition: var(--transition);
}
.search-box input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(255, 82, 0, 0.4);
}
.search-box i {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-icon {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.88rem;
  transition: var(--transition);
  text-decoration: none;
}
.btn-icon:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--primary);
  color: var(--primary);
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ff9100);
  color: #000;
  font-weight: 900;
  border: none;
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 82, 0, 0.6);
  color: #000;
}
.btn-sports-hub {
  background: linear-gradient(135deg, var(--gold), #ffab00);
  color: #000;
  font-weight: 900;
  border: none;
}

@media (max-width: 900px) {
  .sub-nav-container {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .search-box {
    max-width: 100%;
  }
  .nav-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ==================== TICKER MARQUEE ==================== */
.news-ticker-bar {
  background: #04050a;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  font-size: 0.85rem;
  height: 38px;
  overflow: hidden;
}
.ticker-title {
  background: var(--primary);
  color: #000;
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
  font-weight: 800;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 2px 0 15px rgba(255, 82, 0, 0.5);
  z-index: 5;
}
.ticker-content {
  display: flex;
  gap: 50px;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  padding-right: 20px;
  color: var(--text-muted);
}
.ticker-content span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ticker-content strong {
  color: var(--primary);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==================== HERO SECTION & PLAYER ==================== */
.hero-section {
  max-width: 1600px;
  margin: 28px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2.7fr 1fr;
  gap: 28px;
}

@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
  }
}

.player-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-main);
  position: relative;
  backdrop-filter: blur(20px);
}
.player-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background: #000;
}
.player-wrapper iframe,
.player-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Mobile Tap Overlay */
.mobile-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 14, 0.88);
  backdrop-filter: blur(12px);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
  text-align: center;
  padding: 20px;
}
.tap-play-btn {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, var(--primary), #ff9100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: #000;
  box-shadow: var(--shadow-orange);
  animation: pulse-orange 2s infinite;
}
.mobile-play-overlay span {
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
}

@keyframes pulse-orange {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 82, 0, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 25px rgba(255, 82, 0, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 82, 0, 0); }
}

.player-overlay-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: rgba(255, 23, 68, 0.95);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  box-shadow: 0 0 20px rgba(255, 23, 68, 0.6);
}
.pulse-dot {
  width: 9px;
  height: 9px;
  background: #fff;
  border-radius: 50%;
}

.player-details {
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: linear-gradient(180deg, rgba(14, 18, 30, 0.9), rgba(6, 8, 14, 0.98));
}
.player-channel-info {
  display: flex;
  align-items: center;
  gap: 18px;
}
.player-channel-logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
  box-shadow: var(--shadow-orange);
  background: #fff;
}
.player-channel-title h2 {
  font-size: 1.3rem;
  font-weight: 900;
}
.player-channel-title p {
  font-size: 0.84rem;
  color: var(--text-muted);
}
.player-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.badge-quality {
  background: rgba(255, 82, 0, 0.15);
  color: var(--primary);
  border: 1px solid var(--primary-glow);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 800;
}
.viewers-badge {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
}

/* ==================== STARZPLAY MATCH CENTER SIDEBAR ==================== */
.match-center-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 560px;
  backdrop-filter: blur(20px);
}
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-glass);
}
.card-header h3 {
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
}
.live-dot-badge {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--danger);
  background: rgba(255, 23, 68, 0.15);
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(255, 23, 68, 0.3);
}

.matches-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  padding-left: 4px;
}
.match-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  transition: var(--transition);
  cursor: pointer;
}
.match-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary);
  transform: translateX(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}
.match-league {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.match-status-tag {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 6px;
}
.status-live {
  background: rgba(255, 23, 68, 0.2);
  color: var(--danger);
  border: 1px solid rgba(255, 23, 68, 0.4);
}
.status-upcoming {
  background: rgba(0, 176, 255, 0.2);
  color: var(--secondary);
  border: 1px solid rgba(0, 176, 255, 0.4);
}

.match-teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 800;
  font-size: 0.94rem;
}
.match-score {
  background: var(--bg-main);
  padding: 3px 12px;
  border-radius: 8px;
  color: var(--primary);
  font-weight: 900;
  border: 1px solid var(--border-glass);
}
.match-channel {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ==================== STARZPLAY CONTENT RAILS & SLIDER ARROWS ==================== */
.main-container {
  max-width: 1600px;
  margin: 0 auto 60px;
  padding: 0 24px;
}

.categories-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  overflow-x: auto;
  padding: 12px 0 26px;
}
.category-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  padding: 12px 28px;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  transition: var(--transition);
}
.category-btn:hover {
  background: var(--bg-card-hover);
  color: var(--text-main);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}
.category-btn.active {
  background: linear-gradient(135deg, var(--primary), #ff9100);
  color: #000;
  border: none;
  box-shadow: var(--shadow-orange);
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 32px 0 20px;
}
.section-title h2 {
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.3px;
}
.section-title h2::before {
  content: '';
  width: 5px;
  height: 24px;
  background: var(--primary);
  border-radius: 4px;
  box-shadow: var(--shadow-orange);
}

/* SLIDER ARROWS */
.slider-container {
  position: relative;
  display: flex;
  align-items: center;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1.5px solid var(--primary);
  color: var(--primary);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  transition: var(--transition);
}
.slider-arrow:hover {
  background: var(--primary);
  color: #000;
  box-shadow: var(--shadow-orange);
  transform: translateY(-50%) scale(1.15);
}
.arrow-right {
  right: -18px;
}
.arrow-left {
  left: -18px;
}

@media (max-width: 768px) {
  .arrow-right { right: -6px; }
  .arrow-left { left: -6px; }
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  padding: 10px 4px 20px;
  width: 100%;
}
.channels-grid::-webkit-scrollbar {
  display: none;
}

.channel-card {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: var(--transition);
  cursor: pointer;
  backdrop-filter: blur(15px);
}
.channel-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--primary);
  transform: translateY(-10px) scale(1.04);
  box-shadow: var(--shadow-orange);
}
.channel-card.active-playing {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(255, 82, 0, 0.45);
}

.channel-logo-wrapper {
  position: relative;
  width: 92px;
  height: 92px;
  margin-bottom: 14px;
  background: #fff;
  border-radius: 50%;
  padding: 4px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}
.channel-logo-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
}
.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 82, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #000;
  opacity: 0;
  transition: var(--transition);
}
.channel-card:hover .play-overlay {
  opacity: 1;
}

.channel-name {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.channel-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* REALTIME SPORTS NEWS HUB SECTION */
.sports-hub-section {
  background: linear-gradient(135deg, rgba(255, 82, 0, 0.05), rgba(14, 18, 30, 0.8));
  border: 1px solid var(--primary-glow);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin: 44px 0;
  backdrop-filter: blur(20px);
}
.sports-news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 22px;
}
.sports-news-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.sports-news-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-orange);
}
.news-img-wrapper {
  position: relative;
  width: 100%;
  height: 180px;
}
.news-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: #000;
  font-weight: 900;
  font-size: 0.78rem;
  padding: 4px 12px;
  border-radius: 6px;
}
.news-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.news-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.45;
}
.news-summary {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  flex: 1;
}
.news-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 12px;
}

/* ==================== LIVE MATCH STREAM MODAL ==================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 6, 11, 0.92);
  backdrop-filter: blur(25px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.modal-backdrop.active {
  opacity: 1;
  pointer-events: all;
}
.match-modal {
  background: var(--bg-card);
  border: 1px solid var(--primary-glow);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 960px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
}
.modal-header {
  padding: 20px 28px;
  border-bottom: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(14, 18, 30, 0.98);
}
.modal-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.6rem;
  cursor: pointer;
  transition: var(--transition);
}
.modal-close-btn:hover {
  color: var(--primary);
  transform: rotate(90deg);
}

/* ==================== LIVE RADIO BAR ==================== */
.radio-section {
  background: linear-gradient(135deg, rgba(14, 18, 30, 0.95), rgba(6, 8, 14, 0.98));
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 30px;
  margin: 44px 0;
  backdrop-filter: blur(20px);
}
.radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.radio-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: var(--transition);
}
.radio-card:hover, .radio-card.playing {
  background: rgba(255, 82, 0, 0.15);
  border-color: var(--primary);
  transform: translateX(-5px);
}
.radio-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), #ff9100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #000;
  box-shadow: var(--shadow-orange);
}
.radio-info h4 {
  font-size: 1.05rem;
  font-weight: 800;
}
.radio-info p {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Floating Audio Player Sticky Bar */
.audio-player-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-glass);
  backdrop-filter: blur(25px);
  border-top: 1px solid var(--primary-glow);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 99;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.9);
}
.audio-player-bar.active {
  transform: translateY(0);
}

/* ==================== FOOTER ==================== */
.footer {
  background: #030408;
  border-top: 1px solid var(--border-glass);
  padding: 50px 24px 24px;
  text-align: center;
  margin-top: 70px;
}
.footer-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-links {
  display: flex;
  gap: 28px;
  list-style: none;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 700;
}
.footer-links a:hover {
  color: var(--primary);
}
.copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 24px;
  width: 100%;
}
