* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #050505;
  color: #eaeaea;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: rgba(5,5,5,0.95);
  border-bottom: 1px solid rgba(252,219,126,0.25);
  box-shadow: 0 0 15px rgba(252,219,126,0.08);
}

.header nav a {
  color: #bbb;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.header nav a:hover{
  color:#FCDB7E;
  text-shadow: 0 0 6px rgba(252,219,126,0.5);
}

.logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* HERO */
.hero {
  text-align: center;
  padding: 70px 20px;
  background: linear-gradient(to bottom, #0a0a0a, #000);
}

.hero h1 {
  font-size: 32px;
  background: linear-gradient(90deg,#c9a94f,#FCDB7E,#c9a94f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 18px rgba(252,219,126,0.15);
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

/* CARD (DARK LUXURY) */
.prediksi-card {
  background: #0b0b0b;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid rgba(252,219,126,0.15);
  box-shadow: 
    0 0 15px rgba(0,0,0,0.9),
    0 0 10px rgba(252,219,126,0.05);
  transition: 0.3s;
}

.prediksi-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 0 25px rgba(252,219,126,0.2),
    0 0 40px rgba(0,0,0,1);
}

.prediksi-card h2 {
  background: linear-gradient(90deg,#c9a94f,#FCDB7E,#c9a94f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.prediksi-card small {
  color: #888;
}

.prediksi-card strong {
  color: #FCDB7E;
}

/* BUTTON (LOW GLOW) */
.prediksi-card button {
  margin-top: 15px;
  width: 100%;
  padding: 11px;
  background: linear-gradient(135deg,#c9a94f,#FCDB7E);
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  color:#000;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(252,219,126,0.15);
}

.prediksi-card button:hover {
  background: linear-gradient(135deg,#FCDB7E,#fff2c2);
  box-shadow: 0 0 20px rgba(252,219,126,0.4);
}

/* TITLE */
.title {
  text-align: center;
  font-weight: bold;
  font-size: 28px;
  margin: 30px 0;
  background: linear-gradient(90deg,#c9a94f,#FCDB7E,#c9a94f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TABLE */
.table-container {
  background: #0b0b0b;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(252,219,126,0.1);
}

thead th {
  color: #FCDB7E;
}

tbody tr:hover {
  background: rgba(252,219,126,0.03);
}

/* SEARCH */
.search-box {
  background:#000;
  border: 1px solid rgba(252,219,126,0.2);
  color:#fff;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 20px;
  background: #000;
  border-top: 1px solid rgba(252,219,126,0.15);
  color: #777;
}

/* MOBILE */
@media (max-width: 768px) {
  .header {
    flex-direction: column;
  }

  .header nav {
    margin-top: 10px;
  }

  .hero h1 {
    font-size: 22px;
  }

  .title {
    font-size: 22px;
  }

  table {
    font-size: 14px;
  }
}