/* ═══════════════════════════════════════════════
   AVVENTORADIO PAGE STYLES
   ════════════════════════════════════════════════ */

.page-avventoradio .header {
  background: var(--dark);
  padding: 10px 0;
}

/* Radio Header */
.radio-header {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, #0a1e3c 0%, var(--primary-dark) 50%, #0a1e3c 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.radio-header::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(18,120,202,0.12) 0%, transparent 70%);
  border-radius: 50%;
  top: -150px;
  right: -150px;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.1); }
}

.radio-header .page-title {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 16px;
}

.radio-header .page-subtitle {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  font-weight: 300;
}

.radio-header-icon {
  position: relative;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: rgba(255,255,255,0.9);
}

.radio-pulse-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(18,120,202,0.4);
  border-radius: 50%;
  animation: pulse-ring 2s ease-out infinite;
}

.radio-pulse-ring::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 1px solid rgba(18,120,202,0.2);
  border-radius: 50%;
  animation: pulse-ring 2s ease-out 0.5s infinite;
}

@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ═══════════════════════════════════════════════
   LIVE PLAYER
   ════════════════════════════════════════════════ */
.live-player-section {
  background: var(--off-white);
  padding: 80px 0 60px;
}

.live-player-card {
  max-width: 700px;
  margin: 0 auto;
  background: var(--dark);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

.live-player-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><circle cx="30" cy="30" r="0.5" fill="rgba(255,255,255,0.03)"/></svg>');
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239,68,68,0.15);
  color: #ef4444;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.player-visual {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}

.player-art {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary), #4fc3f7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
  animation: radio-glow 3s ease-in-out infinite;
}

@keyframes radio-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(18,120,202,0.3); }
  50% { box-shadow: 0 0 50px rgba(18,120,202,0.6); }
}

.player-info h2 {
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.now-playing {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.player-controls {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

.radio-play-btn-lg {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--primary), #4fc3f7);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  flex-shrink: 0;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.radio-play-btn-lg:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px var(--primary-glow);
}

.player-volume {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
}

.player-volume input[type="range"] {
  width: 100px;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  outline: none;
}

.player-volume input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
}

.player-volume input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: none;
}

.listen-now-label {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.supported-browsers {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
}

/* ═══════════════════════════════════════════════
   STATION QUICK LINKS
   ════════════════════════════════════════════════ */
.station-links-section {
  background: var(--white);
  padding: 60px 0;
}

.station-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.station-link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  transition: all var(--transition);
}

.station-link-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  background: var(--white);
}

.sl-icon {
  width: 48px;
  height: 48px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.station-link-card:hover .sl-icon {
  background: var(--primary);
  color: var(--white);
}

.sl-spreaker { background: #fff3e0; color: #f57c00; }
.station-link-card:hover .sl-spreaker { background: #f57c00; color: var(--white); }
.sl-mixcloud { background: #e8eaf6; color: #5c6bc0; }
.station-link-card:hover .sl-mixcloud { background: #5c6bc0; color: var(--white); }
.sl-podcast { background: #fce4ec; color: #e91e63; }
.station-link-card:hover .sl-podcast { background: #e91e63; color: var(--white); }

.station-link-card span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-800);
}

/* ═══════════════════════════════════════════════
   PODCASTS
   ════════════════════════════════════════════════ */
.podcasts-section {
  background: var(--off-white);
}

.podcasts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.podcast-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-100);
  transition: all var(--transition);
}

.podcast-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.podcast-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
}

.podcast-play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: var(--white);
}

.podcast-card:hover .podcast-play-overlay {
  opacity: 1;
}

.podcast-info {
  padding: 24px;
}

.podcast-info h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.podcast-info p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.podcast-meta {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

/* Podcast card as link element */
a.podcast-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Loading state */
.podcasts-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-400);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--gray-100);
  border-top-color: var(--primary);
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Podcasts footer */
.podcasts-footer {
  text-align: center;
  margin-top: 40px;
}

.btn-browse-all {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 32px;
  font-size: 0.9rem;
}

.btn-browse-all:hover {
  background: var(--primary);
  color: var(--white);
}

/* Fallback state */
.podcasts-fallback {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-400);
}

.podcasts-fallback svg {
  margin-bottom: 16px;
  opacity: 0.4;
}

.podcasts-fallback p {
  margin-bottom: 20px;
  color: var(--gray-600);
}

/* ═══════════════════════════════════════════════
   HOW TO GET AVVENTORADIO
   ════════════════════════════════════════════════ */
.get-radio-section {
  background: var(--white);
}

.get-radio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.get-option {
  background: var(--off-white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  text-align: center;
  transition: all var(--transition);
}

.get-option:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.get-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all var(--transition);
}

.get-option:hover .get-icon {
  transform: scale(1.1);
  background: var(--primary);
  color: var(--white);
}

.get-icon-green { background: #e8f5e9; color: #43a047; }
.get-option:hover .get-icon-green { background: #43a047; color: var(--white); }
.get-icon-blue { background: #e3f2fd; color: #1976d2; }
.get-option:hover .get-icon-blue { background: #1976d2; color: var(--white); }
.get-icon-purple { background: #ede7f6; color: #7e57c2; }
.get-option:hover .get-icon-purple { background: #7e57c2; color: var(--white); }

.get-option h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}

.get-option p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.get-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.get-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════
   WANT TO TALK TO US
   ════════════════════════════════════════════════ */
.talk-section {
  background: var(--off-white);
  padding-bottom: 60px;
}

.talk-card {
  max-width: 700px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.talk-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.talk-content {
  position: relative;
  z-index: 1;
}

.talk-content h2 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 32px;
}

.talk-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 36px;
}

.talk-option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 12px 24px;
  border-radius: 50px;
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .live-player-card {
    padding: 36px 24px;
  }

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

  .player-art {
    width: 90px;
    height: 90px;
  }

  .station-links-grid {
    grid-template-columns: 1fr;
  }

  .talk-card {
    padding: 48px 24px;
  }

  .talk-content h2 {
    font-size: 1.6rem;
  }

  .talk-option {
    font-size: 0.8rem;
    padding: 10px 18px;
  }
}
