
:root{
  --bg:#0b1020;
  --card:#11162a;
  --text:#e5e7eb;
  --muted:#9ca3af;
  --primary:#4f7cff;
  --accent:#22c55e;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Ubuntu;
  background:linear-gradient(180deg,#0b1020,#070b18);
  color:var(--text);
  line-height:1.7;
}

.container{
  max-width:960px;
  margin:auto;
  padding:24px;
}

header{
  padding:20px 0;
}

nav a{
  color:var(--muted);
  margin-right:14px;
  text-decoration:none;
  font-size:14px;
}
nav a:hover{color:#fff}

h1,h2,h3{
  color:#fff;
  line-height:1.3;
}

.card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:14px;
  padding:22px;
  margin:24px 0;
}

.btn{
  display:inline-block;
  padding:14px 22px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--primary),#6ea8ff);
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

footer{
  margin-top:60px;
  padding:32px 0;
  border-top:1px solid rgba(255,255,255,.1);
  color:var(--muted);
  font-size:14px;
}
/* Footer navigation */
.footer-nav{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:8px;
}

/* Footer links */
.footer-nav a{
  color: rgba(255,255,255,.75);
  text-decoration:none;
  position:relative;
}

/* Matikan ikon/prefix yang mungkin dibuat oleh CSS global */
footer a::before,
.footer-nav a::before{
  content: none !important;
}

/* Footer note */
.footer-note{
  margin:0;
  text-align:center;
  color: var(--muted);
  font-size: 13px;
}
/* Matikan karakter/ikon otomatis di footer */
footer::before, footer::after,
footer p::before, footer p::after,
footer .footer-note::before, footer .footer-note::after{
  content: none !important;
  display: none !important;
}
