

  

  /* --- PLAYER STYLING --- */
  .audio-player-wrapper {
    margin-top: auto; /* Forces player to stay at bottom */
    padding-top: 15px;
    border-top: 1px solid #f5f5f5;
  }

  audio {
    width: 100%;
    height: 35px;
    border-radius: 5px;
  }





  /* --- VIDEO AREA --- */
  .video-container {
    border-radius: 15px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-bottom: 30px;
  }



  /* --- SIDEBAR RECENT --- */
  .sidebar-sermon-card {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none !important;
    transition: 0.3s;
  }

  .sidebar-sermon-card:hover { opacity: 0.8; }

  .sidebar-sermon-img {
    width: 100px;
    height: 65px;
    border-radius: 8px;
    object-fit: cover;
  }

  .sidebar-sermon-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3px;
    line-height: 1.3;
  }

  @media (max-width: 991px) {
    .sermon-detail-container { padding: 20px; margin-top: -40px; }
    iframe { height: 300px !important; }
  }



  /* Play Icon Overlay */
  .play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 94, 20, 0.9);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 3;
  }

  .card-custom:hover .play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }




  .btn-watch {
    margin-top: auto;
    color: #ff5e14;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    transition: margin-left 0.3s ease;
  }

  .sermon-card-custom:hover .btn-watch span {
    margin-left: 12px !important;
  }
