/* ==========================================================================
   STYLE KHUSUS LIGHTBOX POP-UP WINDOWS (ABOUT & CONTACT) - ANTI BENTROK
   ========================================================================== */

/* CONTAINER UTAMA POP-UP (Latar Belakang Gelap Blur) */
.ytms-lightbox {
  display: none; 
  position: fixed !important; 
  top: 0 !important; 
  left: 0 !important; 
  width: 100vw !important; 
  height: 100vh !important;
  background-color: rgba(0, 0, 0, 0.85) !important; 
  
  /* Efek Kaca Blur Mewah */
  backdrop-filter: blur(15px) !important; 
  -webkit-backdrop-filter: blur(15px) !important;
  
  justify-content: center !important; 
  align-items: center !important; 
  
  /* Kasta tertinggi di atas player bar */
  z-index: 9999999999 !important; 
}

/* KOTAK KONTEN DI TENGAH (BOX WINDOWS) */
.lightbox-content {
  background-color: #161616 !important; 
  border: 1px solid rgba(255, 255, 255, 0.1) !important; 
  width: 90% !important; 
  max-width: 500px !important;
  padding: 30px !important; 
  border-radius: 16px !important; 
  text-align: left !important; 
  box-shadow: 0 10px 40px rgba(0,0,0,0.6) !important;
  position: relative !important; 
  max-height: 80vh !important; 
  overflow-y: auto !important;
  
  /* Efek Animasi Membal Pas Muncul */
  animation: popInLightbox 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards !important;
}

/* KEYFRAMES ANIMASI POP-IN */
@keyframes popInLightbox { 
  from { transform: scale(0.8); opacity: 0; } 
  to { transform: scale(1); opacity: 1; } 
}

/* TOMBOL SILANG PENUTUP (✕) */
.close-lightbox { 
  position: absolute !important; 
  top: 15px !important; 
  right: 20px !important; 
  background: none !important; 
  border: none !important; 
  color: #888888 !important; 
  font-size: 22px !important; 
  cursor: pointer !important; 
  transition: color 0.2s ease !important; 
  z-index: 10 !important; 
}
.close-lightbox:hover { 
  color: #ffffff !important; 
}

/* GAYA TEKS JUDUL DI DALAM LIGHTBOX */
.lightbox-content h3 { 
  font-size: 24px !important; 
  margin-bottom: 20px !important; 
  color: #ff0000 !important; /* Warna Merah Khas YouTube */
  font-weight: 800 !important; 
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important; 
  padding-bottom: 10px !important; 
}

/* GAYA ISI TEKS/ARTIKEL DARI WORDPRESS */
.ytms-wp-text p { 
  color: #cccccc !important; 
  font-size: 14px !important; 
  line-height: 1.6 !important; 
  margin-bottom: 15px !important; 
  text-align: left !important; 
}
.ytms-wp-text h1, 
.ytms-wp-text h2, 
.ytms-wp-text h3 { 
  color: #ffffff !important; 
  margin-bottom: 10px !important; 
  margin-top: 15px !important; 
}

/* Kustomisasi Scrollbar di dalam Box jika teks kepanjangan */
.lightbox-content::-webkit-scrollbar {
  width: 6px;
}
.lightbox-content::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

/* ==========================================================================
   RESPONSIF LAYAR HP UNTUK LIGHTBOX
   ========================================================================== */
@media screen and (max-width: 768px) {
  .lightbox-content {
    padding: 20px !important;
    width: 95% !important;
  }
  .lightbox-content h3 {
    font-size: 20px !important;
  }
}
