/* ============================================================
   PODCASTS PAGE STYLES - WOW DESIGN
   ============================================================ */

.podcasts-hero {
  background: linear-gradient(135deg, #0a2540 0%, #1a4a76 100%);
  color: white;
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.podcasts-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.podcasts-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  background: linear-gradient(to left, #fff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.podcasts-subtitle {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== MAIN LAYOUT ===== */
.podcasts-main {
  padding: 60px 0 100px;
  background-color: #f8fafc;
}

.podcasts-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ===== VIDEO PLAYER WRAPPER ===== */
.video-player-container {
  background: #ffffff;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(14, 58, 95, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: sticky;
  top: 100px;
}

.video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
}

#main-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-info {
  margin-top: 24px;
  padding: 0 10px;
}

.video-info-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #0e3a5f;
  margin-bottom: 12px;
}

.video-info-desc {
  color: #475569;
  font-size: 1.1rem;
  line-height: 1.6;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 20px;
  background: rgba(24, 119, 242, 0.1);
  color: #1877f2;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.share-btn:hover {
  background: #1877f2;
  color: #fff;
}

.share-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* ===== PLAYLIST ===== */
.playlist-container {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(14, 58, 95, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.playlist-header {
  font-size: 1.4rem;
  font-weight: 800;
  color: #0e3a5f;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.playlist-header::before {
  content: '';
  display: block;
  width: 4px;
  height: 24px;
  background: #d4af37;
  border-radius: 4px;
}

.playlist {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.playlist-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.playlist-item:hover {
  background: #ffffff;
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 8px 20px rgba(14, 58, 95, 0.06);
  transform: translateY(-2px);
}

.playlist-item.active {
  background: linear-gradient(135deg, #0e3a5f 0%, #1a4a76 100%);
  color: white;
  box-shadow: 0 10px 20px rgba(14, 58, 95, 0.2);
}

.playlist-item.active .item-title {
  color: white;
}

.playlist-item.active .item-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #ffd700;
}

.item-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(14, 58, 95, 0.1);
  color: #0e3a5f;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.item-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  margin-left: -2px; /* Visual center for play icon */
}

.item-content {
  flex: 1;
}

.item-title {
  font-weight: 700;
  font-size: 1.1rem;
  color: #0e3a5f;
  margin-bottom: 4px;
  transition: color 0.3s ease;
}

.item-duration {
  font-size: 0.9rem;
  color: #64748b;
}

.playlist-item.active .item-duration {
  color: #cbd5e1;
}

/* Responsive */
@media (max-width: 992px) {
  .podcasts-grid {
    grid-template-columns: 1fr;
  }
  
  .video-player-container {
    position: static;
  }
}

@media (max-width: 768px) {
  .podcasts-hero {
    padding: 120px 0 40px;
  }
  
  .podcasts-title {
    font-size: 2.2rem;
  }
  
  .video-info-title {
    font-size: 1.4rem;
  }
}


/* ===== PARTICLES (MOVING ELEMENTS) ===== */
.podcasts-main { position: relative; overflow: hidden; }
.particles { position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.particle { position: absolute; background: radial-gradient(circle, rgba(212,175,55,0.4) 0%, transparent 70%); border-radius: 50%; opacity: 0; animation: floatUp 8s infinite ease-in; }
.particle:nth-child(1) { width: 150px; height: 150px; left: 10%; bottom: -150px; animation-duration: 12s; animation-delay: 0s; }
.particle:nth-child(2) { width: 80px; height: 80px; left: 30%; bottom: -80px; animation-duration: 9s; animation-delay: 2s; }
.particle:nth-child(3) { width: 200px; height: 200px; left: 60%; bottom: -200px; animation-duration: 15s; animation-delay: 4s; }
.particle:nth-child(4) { width: 120px; height: 120px; left: 80%; bottom: -120px; animation-duration: 11s; animation-delay: 1s; }
.particle:nth-child(5) { width: 90px; height: 90px; left: 50%; bottom: -90px; animation-duration: 10s; animation-delay: 3s; }

@keyframes floatUp {
  0% { transform: translateY(0) scale(0.8); opacity: 0; }
  20% { opacity: 0.6; }
  80% { opacity: 0.6; }
  100% { transform: translateY(-800px) scale(1.2); opacity: 0; }
}

/* ===== WOW CHATBOT ===== */
.wow-chatbot {
  position: fixed;
  bottom: 15px;
  right: 10px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 15px;
}

@media (max-width: 768px) {
  .wow-chatbot { bottom: 10px; right: 10px; }
}

.chatbot-bubble {
  background: white;
  color: #0e3a5f;
  padding: 15px 20px;
  border-radius: 20px 20px 0 20px;
  box-shadow: 0 10px 25px rgba(14, 58, 95, 0.15);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 250px;
  text-align: right;
  border: 1px solid rgba(212,175,55,0.3);
  animation: bounceIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  transform-origin: bottom right;
  opacity: 0;
  animation-delay: 2s; /* Show after 2s */
}

.chatbot-avatar {
  position: relative;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border: 2px solid #0e3a5f;
  transition: transform 0.3s ease;
}

.chatbot-avatar:hover {
  transform: scale(1.1);
}

.chatbot-avatar img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.pulse-ring {
  position: absolute;
  top: -5px; left: -5px; right: -5px; bottom: -5px;
  border-radius: 50%;
  border: 2px solid #ffd700;
  animation: pulse 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  pointer-events: none;
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

@keyframes bounceIn {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
