/* ===================== */
/* ?? BODY */
/* ===================== */
body {
  padding: 10px;
  background: #000000;
  color: #e5e5e5;
  font-family: 'Segoe UI', sans-serif;
}

/* ===================== */
/* ?? CONTAINER / KOTAK */
/* ===================== */
.kotak {
  max-width: 800px;
  min-height: 700px;
  background: linear-gradient(145deg, #0a0a0a, #050505);
  border-radius: 16px;
  border: 1px solid rgba(255,215,0,0.15);
  box-shadow: 0 0 40px rgba(0,0,0,0.9);
  padding: 20px;
}

/* ===================== */
/* ?? BUTTON EXCLUSIVE */
/* ===================== */
.tombol {
  font-family: 'Segoe UI', sans-serif;
  margin: 20px;
  padding: 10px 20px;
  background: linear-gradient(90deg, #d4af37, #f5d06f);
  font-size: 1rem;
  color: #000;
  font-weight: bold;
  border-radius: 30px;
  border: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover tombol */
.tombol:hover {
  background: linear-gradient(90deg, #f5d06f, #d4af37);
  box-shadow: 0 0 15px rgba(255,215,0,0.6);
  transform: scale(1.05);
}

/* ===================== */
/* ? JUDUL */
/* ===================== */
.judulbesar, h4 {
  color: #f5d06f;
  text-shadow: 0 0 10px rgba(255,215,0,0.4);
  letter-spacing: 1px;
}

/* ===================== */
/* ?? PARAGRAF */
/* ===================== */
p {
  padding: 10px;
  font-weight: 500;
  color: #cfcfcf;
  line-height: 1.7;
}

/* ===================== */
/* ?? BANK / FLEX */
/* ===================== */
.bank {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ===================== */
/* ? LINK GLOW */
/* ===================== */
a {
  color: #f5d06f;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #ffffff;
  text-shadow: 
    0 0 5px #ffd700,
    0 0 10px #ffd700,
    0 0 20px rgba(255,215,0,0.8);
}