* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.agegate-body {
  background: #050505;
  height: 100vh;
}

/* Overlay */
.agegate-overlay {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #111, #000);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Box */
.agegate-box {
  background: #111;
  padding: 40px;
  max-width: 420px;
  width: 90%;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 0 40px rgba(0,0,0,.8);
}

/* Judul */
.agegate-box h1 {
  color: #f5c542; /* EMAS */
  margin-bottom: 15px;
}

/* Deskripsi */
.agegate-box p {
  color: #ddd;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Tombol */
.agegate-buttons button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
}

/* Tombol Masuk */
#enterBtn {
  background: linear-gradient(135deg, #f5c542, #d4a017);
  color: #111;
  margin-bottom: 12px;
}

#enterBtn:hover {
  background: linear-gradient(135deg, #ffd966, #c99700);
}

/* Tombol Keluar */
#exitBtn {
  background: #3a3a3a;
  color: #ccc;
}

#exitBtn:hover {
  background: #4a4a4a;
}
