body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to right, #1e293b, #0f172a); /* Gradient gelap */
  color: white;
  min-height: 100vh;
}

.prediksi-deskripsi-section h3 {
  color: #f74a4a; /* = text-gray-800 */
  font-weight: 700;
  text-align: center;
}

.prediksi-deskripsi-section h2 {
  color: #fbff00; /* = text-gray-800 */
  font-weight: 700;
  text-align: center;
}

.prediksi-deskripsi-section p {
  color: #ffffff; /* = text-gray-700, lebih gelap dari gray-600 */
  font-size: 1rem;
  line-height: 1.75;
  text-align: justify;
}

.prediksi-deskripsi-section strong {
  color: #0051ff; /* darken bolded text */
}

.prediksi-deskripsi-section a {
  color: #dc2626; /* merah */
  text-decoration: inline-block;
}

.prediksi-deskripsi-section a:hover {
  color: #991b1b; /* hover merah tua */
}

/* Atasi teks yang keluar dari kotak di layar kecil */
@media (max-width: 640px) {
  .grid a {
    padding: 1rem !important; /* Perkecil padding */
    gap: 0.75rem !important;
  }

  .grid a img {
    flex-shrink: 0;
    width: 2.5rem; /* 40px */
    height: 2.5rem;
  }

  .grid a div h3 {
    font-size: 0.875rem !important; /* text-sm */
    line-height: 1.25rem;
    white-space: normal !important;
    word-break: break-word !important;
  }

  .grid a div p {
    font-size: 0.75rem !important; /* text-xs */
    line-height: 1rem;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

.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;
    }

    /* Styling untuk Notifikasi Togel Selanjutnya */
    .next-togel-card {
      border: 2px solid rgba(255, 255, 255, 0.2);
      background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(59, 130, 246, 0.1));
      transition: all 0.3s ease;
    }

    .next-togel-card:hover {
      border-color: rgba(34, 197, 94, 0.4);
      transform: translateY(-2px);
    }

    .status-indicator {
      width: 12px;
      height: 12px;
      background: #22c55e;
      border-radius: 50%;
      animation: pulse-green 2s infinite;
      box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
    }

    @keyframes pulse-green {
      0%, 100% { 
        opacity: 1;
        transform: scale(1);
      }
      50% { 
        opacity: 0.7;
        transform: scale(1.1);
      }
    }

    .countdown-display {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0.5rem;
      margin-top: 1rem;
    }

    .time-unit {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      padding: 0.5rem 0.75rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-width: 60px;
    }

    .time-unit span {
      font-size: 1.25rem;
      font-weight: bold;
      color: #fbbf24;
      line-height: 1;
    }

    .time-unit small {
      font-size: 0.75rem;
      color: #d1d5db;
      margin-top: 2px;
    }

    .time-separator {
      font-size: 1.5rem;
      font-weight: bold;
      color: #ffffff;
      animation: blink 1s infinite;
    }

    @keyframes blink {
      0%, 50% { opacity: 1; }
      51%, 100% { opacity: 0.3; }
    }

    /* Responsive untuk mobile */
    @media (max-width: 640px) {
      .time-unit {
        min-width: 50px;
        padding: 0.375rem 0.5rem;
      }
      
      .time-unit span {
        font-size: 1rem;
      }
      
      .time-unit small {
        font-size: 0.625rem;
      }
      
      .countdown-display {
        gap: 0.25rem;
      }
    }