.hero-title h1 a {
    font-size: 40px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    text-decoration: none;
}

.hero-title h4 a {
    text-align: center !important;
    color: #DB163C !important;
    text-decoration: none !important;
}

.popup-overlay,
.verify-form {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 200ms ease-in-out;
}

.popup-overlay.show,
.verify-form.show {
  visibility: visible;
  opacity: 1;
}

.popup-overlay,
.verify-form {
  padding: 0 15px;
}

/* CSS Kustom Minimal untuk Section CTA */

/* Styling khusus warna tombol Odysee */
.btn-odysee {
  padding: 18px 45px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  
  /* Warna: Gradasi Biru Langit ke Biru Tua Odysee */
  background: linear-gradient(135deg, #0ea5e9 0%, #1e3a8a 100%);
  color: #ffffff;
  
  /* Shape */
  border: none;
  border-radius: 50px;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  
  /* Menjalankan Animasi */
  animation: odysee-glow 1.8s infinite;
}

.btn-odysee:hover {
  background: #1e3a8a;
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 15px 30px rgba(30, 58, 138, 0.4);
    animation: none; /* Berhenti berdenyut saat kursor di atasnya */
}

@keyframes odysee-glow {
  0% {
      /* Bayangan awal: Kuning Pudar Odysee dengan opasitas rendah */
      box-shadow: 0 0 0 0 rgba(253, 224, 71, 0.6); 
  }
  70% {
      /* Lingkaran cahaya melebar keluar */
      box-shadow: 0 0 0 20px rgba(253, 224, 71, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(253, 224, 71, 0);
  }
}

/* Penyesuaian khusus untuk Mobile (Max-width biasanya 768px untuk tablet ke bawah) */
@media (max-width: 768px) {
  .cta-odysee {
    /* Menggeser fokus gambar dan menambahkan gradient gelap agar teks putih terbaca */
    background-position: 70% center !important;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3)), url('../img/footer_odysee.webp') !important;
    min-height: 500px!important;
  }
  
  .cta-odysee h2 {
    font-size: 1.8rem !important; /* Mengecilkan ukuran judul sedikit di HP */
  }

  .cta-odysee h4 {
    font-size: 1.1rem !important; /* Mengecilkan ukuran judul sedikit di HP */
  }
}

/* Styling Perbaikan untuk Modal Pengumuman */
.announcement-modal-body {
  background-image: url('../img/announcement-bg.webp'); 
  background-size: 100% 100%; /* Memaksa gambar menutupi seluruh area tanpa sisa */
  background-position: center;
  background-repeat: no-repeat;
  
  /* Dorong teks ke kanan (50% dari kiri adalah area foto orang) */
  padding: 60px 4% 40px 37% !important; 
  color: white;
  min-height: 480px; 
  border-radius: 15px;
}

/* Judul Kuning */
.text-announcement-title {
  color: #FFD700; 
  font-weight: 1000;
  font-size: 2.2rem;
  line-height: 1.1;
  margin-bottom: 25px;
}

/* Teks Putih */
.text-announcement-desc {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 5px;
}

/* Teks Italic Kecil */
.text-announcement-small {
  font-size: 0.7rem;
  font-style: italic;
  opacity: 0.9;
}

/* Tombol Teal */
.btn-announcement-action {
  background-color: #4BD9C6 !important;
  color: #1A237E !important;
  font-weight: bold;
  border-radius: 10px;
  padding: 10px 25px;
  border: none;
  margin-top: -5px;
}

/* Fix untuk Mobile agar teks tidak terpotong */
@media (max-width: 768px) {
  .announcement-modal-body {
      padding: 40px 20px !important;
      background-image: linear-gradient(rgba(26, 35, 126, 0.8), rgba(26, 35, 126, 0.8)), url('../img/announcement-bg.webp');
      min-height: auto;
  }
  .text-announcement-title { font-size: 1.6rem; }
}