/* ============================================
   FAITH VIDEO POPUP STYLES
   ============================================ */

.faith-video-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
  box-sizing: border-box;
}

.faith-video-popup-overlay.active {
  display: flex;
}

.faith-video-popup-container {
  position: relative;
  background-color: #09090b;
  border: 1px solid #4a4b53;
  border-radius: 20px;
  width: 1034px;
  max-width: 95%;
  max-height: 90vh;
  padding: 0;
  box-sizing: border-box;
  overflow-y: auto;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.faith-video-popup-header {
  position: relative;
  padding: 26px 41px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.faith-video-popup-close-btn {
  background-color: #191919;
  border: 1px solid #4a4b53;
  border-radius: 15px;
  padding: 0;
  width: 83.833px;
  height: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #8b8b8b;
  text-transform: capitalize;
  transition: all 0.3s ease;
}

.faith-video-popup-close-btn:hover {
  background-color: #252525;
  color: #fff;
}

.faith-video-popup-content {
  padding: 0 41px 20px;
}

.faith-video-popup-series {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #8b8b8b;
  line-height: 1.3;
  margin: 0 0 8px 0;
  letter-spacing: 2px;
}

.faith-video-popup-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 20px 0;
  letter-spacing: 2px;
}

.faith-video-popup-player {
  background-color: #151517;
  border: 1px solid #4a4b53;
  border-radius: 20px;
  width: 952px;
  max-width: 100%;
  height: 543px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.faith-video-popup-player-placeholder {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #8b8b8b;
  text-align: center;
  letter-spacing: 1.5px;
}

.faith-video-popup-description {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #8b8b8b;
  line-height: 1.3;
  margin: 0 0 8px 0;
  letter-spacing: 1.2px;
}

.faith-video-popup-devotional {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #8b8b8b;
  line-height: 1.3;
  margin: 0 0 20px 0;
  letter-spacing: 1.2px;
}

.faith-video-popup-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
}

.faith-video-popup-complete-btn {
  background-color: #351f04;
  border: none;
  border-radius: 15px;
  height: 30px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #c0751b;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 229px;
}

.faith-video-popup-complete-btn:hover {
  background-color: #4a2a05;
  color: #d88a2a;
}

.faith-video-popup-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #8b8b8b;
  text-align: right;
  letter-spacing: 1px;
  max-width: 300px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .faith-video-popup-container {
    width: 95%;
    max-width: 95%;
  }
  
  .faith-video-popup-player {
    width: 100%;
    height: auto;
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .faith-video-popup-container {
    width: 100%;
    max-width: 100%;
    border-radius: 0;
    max-height: 100vh;
  }
  
  .faith-video-popup-header {
    padding: 20px 20px 0;
  }
  
  .faith-video-popup-content {
    padding: 0 20px 20px;
  }
  
  .faith-video-popup-title {
    font-size: 18px;
  }
  
  .faith-video-popup-series {
    font-size: 16px;
  }
  
  .faith-video-popup-player {
    height: 300px;
  }
  
  .faith-video-popup-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .faith-video-popup-complete-btn {
    width: 100%;
    min-width: auto;
  }
  
  .faith-video-popup-note {
    text-align: left;
    max-width: 100%;
  }
}

