:root{
  --bg-main:#0b0b0b;
  --bg-soft:#141414;
  --bg-card:rgba(255,255,255,0.04);
  --gold:#d4af37;
  --gold-soft:#e6c76a;
  --text:#ffffff;
  --text-muted:#cfcfcf;
  --border:rgba(255,255,255,0.10);
  --shadow: 0 25px 60px rgba(0,0,0,.55);
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: "Segoe UI", system-ui, -apple-system, Arial, sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background: radial-gradient(circle at top, #1a1a1a 0%, var(--bg-main) 60%);
  color:var(--text);
  line-height:1.8;
}

a{
  color:inherit;
}

.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 20px;
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:100;
  backdrop-filter:blur(14px);
  background:rgba(15,15,15,.85);
  border-bottom:1px solid var(--border);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:14px 0;
}

.brand{
  font-size:1.9rem;
  font-weight:900;
  letter-spacing:.5px;
  color:var(--gold);
  text-shadow:0 0 18px rgba(212,175,55,.35);
}

.nav-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
}

.cta{
  background:linear-gradient(135deg,var(--gold),var(--gold-soft));
  color:#000;
  padding:12px 22px;
  border-radius:10px;
  font-weight:800;
  text-decoration:none;
  box-shadow:0 10px 30px rgba(212,175,55,.28);
  transition:transform .25s, box-shadow .25s;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.cta:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 45px rgba(212,175,55,.42);
}

/* Hero */
.hero{
  padding:78px 0 50px;
  text-align:center;
  background: linear-gradient(to bottom, rgba(212,175,55,.10), transparent 70%);
}

.hero h1{
  font-size:2.8rem;
  font-weight:900;
  color:var(--gold);
  text-transform:uppercase;
  margin-bottom:16px;
  text-shadow:0 0 25px rgba(212,175,55,.45);
}

.hero p{
  max-width:900px;
  margin:0 auto 22px;
  color:var(--text-muted);
}

.badges{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  margin:18px 0 26px;
}

.badge{
  padding:10px 14px;
  border-radius:999px;
  background:var(--bg-card);
  border:1px solid var(--border);
  color:var(--text-muted);
  font-size:.95rem;
}

.badge strong{
  color:var(--gold);
}

.hero-panel{
  max-width:980px;
  margin:26px auto 0;
  padding:24px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  border-radius:18px;
  box-shadow:var(--shadow);
  text-align:left;
}

.hero-panel h2{
  font-size:1.3rem;
  margin:0 0 10px;
  color:var(--gold-soft);
}

.hero-panel ul{
  padding-left:18px;
  margin:10px 0 0;
  color:var(--text-muted);
}

/* Content */
.content{
  padding:10px 0 0;
}

.section{
  max-width:900px;
  margin:38px auto;
}

.meta{
  display:inline-block;
  margin-bottom:18px;
  padding:10px 16px;
  background:var(--bg-card);
  border-left:4px solid var(--gold);
  border-radius:8px;
  font-size:.85rem;
  color:var(--gold);
}

.section h2{
  margin:42px 0 14px;
  font-size:1.9rem;
  color:var(--gold);
  border-bottom:1px solid var(--border);
  padding-bottom:10px;
}

.section h3{
  margin:18px 0 10px;
  color:var(--gold-soft);
  font-size:1.2rem;
}

.section p,
.section li{
  color:var(--text-muted);
  margin-bottom:16px;
  text-align:justify;
}

.section ul{
  padding-left:18px;
  margin:8px 0 12px;
}

/* Tables */
table{
  width:100%;
  margin:20px 0;
  border-collapse:collapse;
  background:var(--bg-card);
  border-radius:14px;
  overflow:hidden;
}

th{
  background:rgba(212,175,55,.15);
  color:var(--gold);
  font-weight:800;
}

th, td{
  padding:14px;
  border:1px solid var(--border);
}

/* FAQ */
.faq{
  margin-top:52px;
  padding:28px;
  background:var(--bg-card);
  border-radius:18px;
  box-shadow:var(--shadow);
}

.faq-item{
  margin-top:14px;
  padding:18px;
  border-radius:14px;
  background:rgba(255,255,255,.03);
  border:1px solid var(--border);
}

.faq-item p{
  margin-bottom:0;
}

/* Footer */
footer{
  margin-top:80px;
  padding:46px 0;
  text-align:center;
  background:rgba(15,15,15,.9);
  border-top:1px solid var(--border);
}

footer p{
  color:var(--gold);
  font-weight:800;
}

.small{
  font-size:.92rem;
  color:var(--text-muted);
  margin-top:8px;
}

/* Mobile */
@media (max-width:768px){
  .nav{
    flex-direction:column;
    align-items:center;
  }
  .hero h1{
    font-size:2.05rem;
  }
  .hero-panel{
    padding:18px;
  }
}