<style>
.episode-hero-section {
  background: linear-gradient(135deg, #00416E 0%, #003557 100%);
  padding: 120px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.episode-hero-section {
  background: linear-gradient(135deg, #00416E 0%, #003557 100%);
  padding: 120px 0 80px 0;
  position: relative;
}

.episode-hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.episode-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* Breadcrumb */
.episode-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.875rem;
}

.episode-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.episode-breadcrumb a:hover {
  color: white;
}

.episode-breadcrumb span:last-child {
  color: white;
  font-weight: 600;
}

.episode-breadcrumb > span:not(:last-child) {
  color: rgba(255, 255, 255, 0.4);
}

/* Hero Content */
.episode-hero-content {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}

.episode-hero-artwork {
  width: 320px;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
  backdrop-filter: blur(10px);
}

.episode-hero-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.episode-hero-artwork-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
}

/* Episode Info */
.episode-hero-badges {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.episode-badge-new,
.episode-badge-category {
  padding: 6px 14px;
  border-radius: 20px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.episode-badge-new {
  background: #E31E24;
  color: white;
}

.episode-badge-category {
  background: rgba(255, 255, 255, 0.15);
  color: white;
  backdrop-filter: blur(10px);
}

.episode-hero-title {
  font-family: Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px 0;
  color: white;
}

.episode-hero-host {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 24px 0;
}

.episode-hero-host strong {
  color: white;
  font-weight: 600;
}

.episode-hero-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.episode-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

.episode-meta-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}

/* Actions */
.episode-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.episode-play-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #b31b38;
  color: white;
  border: none;
  border-radius: 50px;
  font-family: 'Raleway';
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(227, 30, 36, 0.4);
}

.episode-play-btn:hover {
  background: #bf160a;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(227, 30, 36, 0.5);
}

.episode-action-btn {
  width: 48px;
  height: 48px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.episode-action-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
  .episode-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .episode-hero-left {
    display: flex;
    justify-content: center;
  }
  
  .episode-hero-artwork {
    width: 280px;
    height: 280px;
  }
  
  .episode-hero-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .episode-hero-section {
    padding: 80px 0 60px 0;
  }
  
  .episode-hero-container {
    padding: 0 24px;
  }
  
  .episode-hero-artwork {
    width: 240px;
    height: 240px;
  }
  
  .episode-hero-title {
    font-size: 2rem;
  }
  
  .episode-hero-actions {
    flex-wrap: wrap;
  }
  
  .episode-play-btn {
    width: 100%;
    justify-content: center;
  }
}
</style>