/* =========================================
LAYAR 3: MODAL DETAIL VIDEO (image_3.png)
========================================= */
.modal-sentinel .modal-content {
  background-color: var(--bg-panel);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  border-radius: 12px;
}

.modal-sentinel .modal-header {
  border: none;
  padding-bottom: 0;
}

.modal-sentinel .modal-body {
  padding: 15px;
}

/* Live Stream Video Player */
.video-player-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
}

.video-player-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.live-stream-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(220, 53, 69, 0.85);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.timestamp-overlay {
  position: absolute;
  bottom: 5px;
  left: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
}

/* Info Stat Grid (Signal & Encryption) */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.stat-box {
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px;
}

.stat-box label {
  font-size: 0.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
}

.stat-box h5 {
  font-weight: 700;
  margin: 0;
}

/* View Google Maps Button */
.btn-gmaps-full {
  background-color: var(--accent-blue);
  color: white;
  width: 100%;
  border-radius: 8px;
  padding: 12px;
  font-weight: 600;
  text-decoration: none;
  display: block;
  text-align: center;
}
/* Glassmorphism Effect untuk Modal */
.modal-sentinel-about .modal-content {
  background: rgba(3, 21, 37, 0.85);
  /* Navy transparan */
  backdrop-filter: blur(15px);
  /* Efek blur kaca */
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(13, 110, 253, 0.3);
  /* Border biru tipis */
  color: white;
  border-radius: 20px;
}

.modal-sentinel-about .modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 25px;
}

.modal-sentinel-about .modal-body {
  padding: 30px 25px;
}

/* Icon Container dengan Glow */
.about-icon-circle {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle,
      rgba(13, 110, 253, 0.2) 0%,
      rgba(0, 12, 24, 0) 70%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 1px solid rgba(13, 110, 253, 0.4);
  box-shadow: 0 0 20px rgba(13, 110, 253, 0.2);
}

.about-version-tag {
  background: rgba(13, 110, 253, 0.15);
  color: var(--accent-blue);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 15px;
}

.feature-list {
  text-align: left;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 15px;
  margin-top: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.feature-item i {
  color: var(--accent-blue);
  margin-right: 10px;
}

