#hero {
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero-overlay {
  position: absolute;
  width: 100%; height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.288), rgba(0, 0, 0, 0.747));
  z-index: -2;
}

.hero-content { position: relative; z-index: 5; }
.hero-content h1 {
  font-size: 4.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 5px 20px rgba(0, 0, 0, .35);
  position: relative;
}

.hero-content h1::after {
  content: "";
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 500px; height: 200px;
  background: radial-gradient(rgba(247, 148, 0, 0), transparent);
  filter: blur(70px); 
  z-index: -1;
}

.hero-content p {
  font-size: 1.2rem;
  color: #f1f1f1;
  line-height: 1.8;
  max-width: 900px;
  margin: auto;
}

.hero-buttons {
  margin-top: 40px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
}

.btn-hero-primary {
  background: #fff; color: var(--primary); padding: 15px 35px; border-radius: 50px; font-weight: 600; transition: .4s;
}
.btn-hero-primary:hover { transform: translateY(-5px); background: var(--secondary); color: var(--primary); }

.btn-hero-secondary {
  border: 2px solid #fff; color: #fff; padding: 15px 35px; border-radius: 50px; font-weight: 600; transition: .4s;
}
.btn-hero-secondary:hover { background: #fff; color: var(--primary); transform: translateY(-5px); }

.floating-stats {
  position: absolute; bottom: 120px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 25px; padding: 25px 35px; border-radius: 25px;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, .25);
  z-index: 10; box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
  animation: floatingBox 5s ease-in-out infinite;
}

.stat-item { text-align: center; min-width: 120px; }
.stat-item h3 { color: #fff; font-size: 2rem; font-weight: 700; margin-bottom: 5px; }
.stat-item span { color: #f5f5f5; font-size: .95rem; }

@keyframes floatingBox {
  0% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-12px); }
  100% { transform: translateX(-50%) translateY(0); }
}

.wave-divider { position: absolute; bottom: -5px; left: 0; width: 100%; z-index: 2; }
.wave-divider svg { display: block; width: 100%; }

/* NEAR AGENDA TICKER BANNER */
.near-agenda-section { background: #ffffff; border-top: 1px solid #f0f4f8; border-bottom: 1px solid #f0f4f8; overflow: hidden; }
.near-agenda-wrapper { background: #f8fafc; border-radius: 50px; margin: 0 15px; overflow: hidden; box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02); border: 1px solid #e2e8f0; }
.near-agenda-label { background: linear-gradient(135deg, #0f4c81, #1d6db5); white-space: nowrap; border-top-left-radius: 50px; border-bottom-left-radius: 50px; box-shadow: 4px 0 15px rgba(15, 76, 129, 0.2); z-index: 2; }
.near-agenda-label h5 { font-size: 0.95rem; letter-spacing: 0.5px; }
.near-agenda-ticker { overflow: hidden; width: 100%; z-index: 1; display: flex; align-items: center; }
.near-ticker-track { display: flex; gap: 60px; padding-left: 30px; animation: nearTickerAnimation 25s linear infinite; }
.near-agenda-ticker:hover .near-ticker-track { animation-play-state: paused; }
.near-ticker-item { display: flex; align-items: center; gap: 12px; white-space: nowrap; font-size: 0.95rem; }
.near-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.near-dot.bg-blue { background-color: #0066cc; }
.near-dot.bg-red { background-color: #e53935; }
.near-date { background: #e2e8f0; color: #475569; padding: 3px 12px; border-radius: 30px; font-size: 0.85rem; font-weight: 600; }
.dynamic-bounce { animation: nearBounce 2s infinite; }

@keyframes nearTickerAnimation { 0% { transform: translate3d(0, 0, 0); } 100% { transform: translate3d(-50%, 0, 0); } }
@keyframes nearBounce { 0%, 20%, 50%, 80%, 100% { transform: translateY(0); } 40% { transform: translateY(-4px); } 60% { transform: translateY(-2px); } }

/* WELCOME MODAL */
.welcome-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    display: flex; justify-content: center; align-items: center;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); 
    z-index: 99999; animation: fadeIn .5s ease;
}
.welcome-content { background:rgb(255, 255, 255); width:90%; max-width:500px; padding:40px; border-radius:25px; text-align:center; box-shadow: 0 20px 50px rgba(0,0,0,.25); }
.welcome-content img { width:120px; margin-bottom:20px; }
.welcome-content h2 { font-size:2rem; font-weight:700; color:#0F4C81; margin-bottom:15px; }
.welcome-content p { font-size:1rem; line-height:1.8; color:#000000; margin-bottom:25px; }
#closeModal { background:#0F4C81; color:#fff; border:none; padding:14px 35px; border-radius:50px; font-size:1rem; font-weight:600; cursor:pointer; transition:.3s; }
#closeModal:hover { background:#FFD43B; color:#000; transform:translateY(-3px); }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

@media (max-width: 768px) {
    /* Tambahkan ini agar teks hero mengecil di HP */
    .hero-content h1 {
        font-size: 2.2rem; /* Ukuran pas untuk layar HP */
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero-content p {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    /* Memastikan kata SIX B tidak pecah terpisah */
    .hero-content h1 span {
        white-space: nowrap; 
    }

    /* Kode Anda yang sudah ada sebelumnya */
    .near-agenda-wrapper { flex-direction: column; align-items: stretch; border-radius: 16px; margin: 0 10px; }
    .near-agenda-label { border-radius: 16px 16px 0 0; justify-content: center; }
    .near-ticker-track { padding: 15px 0; }
}