@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.animate-marquee {
  animation: marquee 30s linear infinite;
}

body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to right, #1e293b, #0f172a); /* Gradient gelap */
  color: white;
  min-height: 100vh;
}

/* Kalau kamu pakai background image, bisa pakai ini: */
/*
body {
  background: url('../img/bg-prediksi.jpg') no-repeat center center;
  background-size: cover;
  color: white;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: -1;
}
*/


.glow-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.glow-card:hover {
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
  transform: translateY(-2px);
}

footer {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

header {
  backdrop-filter: blur(6px);
}

.seo-section {
  color: #ffffff;
}

.seo-head h1 {
  color: #ffee00; /* Soft indigo (tailwind indigo-300) */
}

.seo-head p {
  color: #ffffff; /* Soft indigo (tailwind indigo-300) */
}

.seo-section h2 {
  color: #ffee00; /* Soft indigo (tailwind indigo-300) */
}

.seo-section h3 {
  color: #ffee00; /* Soft indigo (tailwind indigo-300) */
}

.seo-section p {
  color: #f0f0f0;
  line-height: 1.7;
}

.seo-section li {
  color: #f0f0f0;
  line-height: 1.7;
}

.seo-section strong {
  color: #f87171; /* Merah - red-400 */
  font-weight: bold;
}

/* Ukuran gambar prediksi-hk responsif */
#gambar-prediksi {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Untuk layar tablet ke atas (>= 768px) */
@media (min-width: 768px) {
  #gambar-prediksi {
    max-width: 600px;
  }
}

/* Untuk layar desktop besar (>= 1024px) */
@media (min-width: 1024px) {
  #gambar-prediksi {
    max-width: 800px;
  }
}

#menu-dropdown {
  max-height: 60vh; /* Batas maksimal tinggi dropdown */
  overflow-y: auto; /* Scroll bila melebihi batas tinggi */
  scrollbar-width: thin; /* Firefox */
  transition: max-height 0.3s ease;
}

/* Untuk tampil lebih elegan di Chrome */
#menu-dropdown::-webkit-scrollbar {
  width: 6px;
}
#menu-dropdown::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.shadow text-center li {
  color: #dc2626; /* merah */
  text-decoration: inline-block;
}

.glass-card {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    }
    .glass-card:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-2px);
      box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.5);
    }
    body {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      min-height: 100vh;
    }