:root{
  --bg-main:#0b0e13;
  --bg-card:#11151c;
  --primary:#f5c26b;
  --text:#e5e7eb;
  --muted:#9ca3af;
  --radius:12px;
}

/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:var(--bg-main);
  color:var(--text);
}

.container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* ================= HEADER ================= */
.site-header{
  border-bottom:1px solid rgba(255,255,255,.05);
  background:#0b0e13;
}

.header-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  height:72px;
}

.logo img{height:52px}

.login-form{
  display:flex;
  gap:8px;
}

.login-form input{
  background:#0b0e13;
  border:1px solid rgba(255,255,255,.15);
  color:#fff;
  padding:8px 10px;
  border-radius:6px;
}

.btn-login{
  background:var(--primary);
  border:none;
  padding:8px 18px;
  border-radius:6px;
  font-weight:600;
  cursor:pointer;
}

.btn-register{
  color:#fff;
  text-decoration:none;
  padding:8px 14px;
}

/* ================= NAV ================= */
.main-nav{background:#0f141c}
.nav-inner{display:flex;justify-content:center}

.main-nav a{
  padding:14px 22px;
  color:var(--muted);
  text-decoration:none;
}

.main-nav a.active{color:var(--primary)}

/* ================= HERO SLIDER ================= */
.hero{
  width:100%;
  position:relative;
  overflow:hidden;
  background:#000;
  max-height:420px;
}

.hero-slider{
  display:flex;
  width:100%;
  height:100%;
  transition:transform .6s ease-in-out;
}

.hero-slide{min-width:100%}

.hero-slide img{
  width:100%;
  height:auto;
  display:block;
}

/* DOT */
.hero-dots{
  position:absolute;
  bottom:14px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
  z-index:10;
}

.hero-dots span{
  width:8px;
  height:8px;
  border-radius:50%;
  background:rgba(255,255,255,.35);
  cursor:pointer;
  transition:.12s ease;
}

.hero-dots span.active{
  width:20px;
  background:var(--primary);
  border-radius:6px;
}

/* MOBILE HERO */
@media(max-width:768px){
  .hero{max-height:220px}
}

/* ================= CONTENT WRAPPER ================= */
.content-wrapper{
  max-width:1200px;
  margin:0 auto;
  padding:0 20px 50px;
}

/* ================= RESULT TOGEL FIX ================= */

.result-section{
  margin-top:26px;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.result-header{
  width:100%;
  max-width:1000px;
}

.result-header h2{
  font-size:18px;
  font-weight:600;
}

/* GRID AUTO RAPi */
.result-wrapper{
  width:100%;
  max-width:1000px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
  gap:18px;
  margin-top:18px;
}

/* CARD */
.result-card{
  background:linear-gradient(145deg,#1a1f2a,#0b0e13);
  border-radius:14px;
  padding:16px;
  text-align:center;
  transition:.25s ease;
}

.result-card:hover{
  transform:translateY(-3px);
  box-shadow:0 8px 20px rgba(0,0,0,.35);
}

/* PASARAN */
.result-market{
  font-size:12px;
  color:var(--muted);
  margin-bottom:10px;
  text-transform:uppercase;
}

/* NUMBER */
.result-number{
  display:flex;
  justify-content:center;
  gap:6px;
  margin-bottom:8px;
}

.result-number span{
  width:34px;
  height:42px;
  background:#0b0e13;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  font-weight:700;
  color:var(--primary);
}

/* DATE */
.result-date{
  font-size:11px;
  color:#6b7280;
}

/* ================= CONTENT HUB ================= */
.content-hub{
  margin-top:36px;
}

.hub-2col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.card{
  background:var(--bg-card);
  padding:24px;
  border-radius:var(--radius);
}

/* ================= BANK ================= */
.bank-grid{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.bank{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:8px;
  background:#1b1e26;
  font-size:13px;
}

.bank i{
  width:8px;
  height:8px;
  border-radius:50%;
}

.bank.online i{background:#2ed573}
.bank.offline{opacity:.4}

/* ================= NEWS ================= */
.news-list{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.news-list li{
  display:flex;
  justify-content:space-between;
  color:var(--muted);
}

/* ================= FOOTER ================= */
.site-footer{
  margin-top:50px;
  padding:20px 0;
  border-top:1px solid rgba(255,255,255,.06);
  background:#0b0e13;
  color:#777;
  font-size:13px;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.site-footer a{
  color:#ff5a5a;
  text-decoration:none;
}

.site-footer a:hover{text-decoration:underline}

/* MOBILE */
@media(max-width:600px){
  .hub-2col{grid-template-columns:1fr}
  .footer-inner{flex-direction:column;gap:8px}
}