/* =========================
   RESET
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* =========================
   BODY
========================= */
body{
  background: radial-gradient(circle at top,#1a0000,#000);
  color:#eaeaea;
  font-family:Arial,sans-serif;
  line-height:1.6;
}

/* =========================
   CONTAINER
========================= */
.container{
  max-width:900px;
  margin:auto;
  padding:90px 20px 20px;
}

/* =========================
   HEADER PREMIUM
========================= */
.header{
  position:fixed;
  top:0;
  width:100%;
  z-index:999;
  backdrop-filter:blur(12px);
  background:rgba(0,0,0,0.6);
  border-bottom:1px solid rgba(255,0,0,0.2);
}

.header-inner{
  max-width:900px;
  margin:auto;
  padding:12px 20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* =========================
   LOGO
========================= */
.logo-area{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo{
  width:180px;
  border-radius:6px;
  box-shadow:0 0 10px darkorange;
}

.brand{
  font-weight:bold;
  color:darkorange;
  text-shadow:0 0 5px darkorange;
}

/* =========================
   MENU ULTRA PREMIUM
========================= */
.menu{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding:4px;
}

.menu::-webkit-scrollbar{
  display:none;
}

.menu a{
  position:relative;
  flex:0 0 auto;
  padding:8px 16px;
  border-radius:999px;
  text-decoration:none;
  font-size:13px;
  font-weight:500;
  letter-spacing:0.3px;
  color:rgba(255,255,255,0.75);
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  backdrop-filter:blur(10px);
  transition:all 0.25s ease;
}

.menu a:hover{
  color:#fff;
  background:rgba(255,255,255,0.12);
  border-color:rgba(255,255,255,0.25);
}

.menu a::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:6px;
  width:0%;
  height:2px;
  background:linear-gradient(90deg,transparent,#fff,transparent);
  transform:translateX(-50%);
  transition:0.3s;
}

.menu a:hover::after{
  width:60%;
}

.menu a.active{
  color:#000;
  background:#ffffff;
  box-shadow:
    0 4px 20px rgba(255,255,255,0.25),
    inset 0 0 0 1px rgba(255,255,255,0.5);
}

.menu a.active::after{
  width:70%;
  background:#000;
}

.menu a:active{
  transform:scale(0.96);
}

/* =========================
   TEXT & TYPOGRAPHY
========================= */
p{margin:15px 0}

h1{
  text-align:center;
  color:darkorange;
  text-shadow:0 0 10px darkorange;
}

h2{
  margin-top:30px;
  border-left:4px solid darkorange;
  padding-left:10px;
}

h3{
  margin-top:20px;
  color:#ffd700;
}

/* =========================
   IMAGE
========================= */
img{
  max-width:100%;
  border-radius:10px;
  margin:15px 0;
}

/* =========================
   TABLE
========================= */
table{
  width:100%;
  border-collapse:collapse;
  margin-top:15px;
}

th{
  background:darkorange;
  color:#fff;
}

td,th{
  border:1px solid #222;
  padding:8px;
  text-align:center;
}

/* =========================
   FAQ
========================= */
.faq-item{
  border-bottom:1px solid #222;
}

.faq-question{
  cursor:pointer;
  padding:14px;
  background:#111;
  border-left:4px solid darkorange;
  position:relative;
  font-weight:bold;
}

.faq-question::after{
  content:"+";
  position:absolute;
  right:15px;
}

.faq-question.active{
  background:darkorange;
}

.faq-question.active::after{
  content:"-";
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:0.3s;
  background:#0a0a0a;
  padding:0 14px;
}

.faq-answer p{
  margin:10px 0;
}

/* =========================
   FOOTER
========================= */
footer{
  text-align:center;
  margin-top:30px;
  color:#888;
}

/* =========================
   INTERNAL LINK (PASARAN TOGEL STYLE)
========================= */

/* default internal link */
a{
  color:#ffd700; /* emas */
  text-decoration:none;
  transition:0.25s ease;
}

/* hover: merah glow */
a:hover{
  color:#ff3b3b;
  text-shadow:0 0 8px rgba(255,59,59,0.7);
}

/* visited link */
a:visited{
  color:#caa400;
}

/* underline style di konten */
.container a{
  border-bottom:1px dashed rgba(255,215,0,0.4);
}

.container a:hover{
  border-bottom:1px solid #ff3b3b;
}

/* =========================
   SAFE OVERRIDE MENU LINK
========================= */
.menu a{
  border-bottom:none !important;
  text-shadow:none !important;
}