:root{
  --bg1:#07051a;
  --bg2:#0b1b3a;
  --card:#11142b;
  --card2:#0f2a3b;
  --text:#f2f2ff;
  --muted:#c7c7f4;
  --stroke:rgba(255,255,255,.14);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  color:var(--text);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:
    radial-gradient(900px 420px at 20% 10%, rgba(255,0,199,.35), transparent 60%),
    radial-gradient(900px 420px at 80% 20%, rgba(0,255,199,.22), transparent 55%),
    radial-gradient(900px 520px at 60% 90%, rgba(0,140,255,.25), transparent 55%),
    linear-gradient(135deg, var(--bg1), var(--bg2));
}

a{color:inherit}
.container{width:100%; max-width:1120px; margin:0 auto; padding:0 18px}

/* header */
.site-header{
  border-bottom:1px solid var(--stroke);
  background:rgba(7,5,26,.65);
  backdrop-filter: blur(8px);
}
.header-inner{
  display:flex;
  align-items:center;
  gap:14px;
  padding:14px 0;
}
.logo img{display:block; border-radius:14px; box-shadow:0 10px 35px rgba(0,0,0,.35)}
.brand{min-width:0}
.brand-title{font-weight:800; letter-spacing:.6px}
.brand-sub{font-size:12px; color:var(--muted); opacity:.9}
.nav-wrap{margin-left:auto; position:relative; display:flex; align-items:center; gap:10px}
.burger{
  width:44px; height:44px;
  border-radius:14px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.06);
  display:flex; flex-direction:column; justify-content:center; gap:6px;
  padding:0 12px;
  cursor:pointer;
}
.burger span{height:2px; background:rgba(255,255,255,.92); border-radius:10px}
.nav{
  position:absolute;
  right:0;
  top:54px;
  width:min(420px, calc(100vw - 36px));
  max-height:70vh;
  overflow:auto;
  border-radius:18px;
  border:1px solid var(--stroke);
  background:rgba(17,20,43,.92);
  box-shadow:0 24px 70px rgba(0,0,0,.55);
  display:none;
}
.nav.open{display:block}
.nav ul{list-style:none; padding:10px; margin:0}
.nav li a{
  display:block;
  padding:10px 12px;
  border-radius:14px;
  text-decoration:none;
  color:var(--text);
}
.nav li a:hover{background:rgba(255,255,255,.08)}
.nav .nav-meta a{opacity:.95}
.crumbs{padding:0 0 12px 0}
.crumbs ol{list-style:none; display:flex; gap:10px; padding:0; margin:0; flex-wrap:wrap}
.crumbs li{font-size:12px; color:var(--muted)}
.crumbs li:after{content:"/"; margin-left:10px; opacity:.5}
.crumbs li:last-child:after{content:""}
.crumbs a{color:var(--muted); text-decoration:none}
.crumbs a:hover{text-decoration:underline}

/* main layout */
.main{padding:18px 0 26px 0}
.intro{
  border:1px solid var(--stroke);
  border-radius:22px;
  padding:16px 16px;
  background:rgba(255,255,255,.06);
  box-shadow:0 18px 60px rgba(0,0,0,.35);
}
.intro h1{
  margin:0 0 8px 0;
  font-size:26px;
  letter-spacing:.2px;
}
.intro p{
  margin:0;
  color:var(--muted);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.hero{
  margin-top:14px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.04);
}
.hero img{display:block; width:100%; height:auto}

.blocks{
  margin-top:14px;
  display:flex;
  flex-direction:column;
  gap:14px;
}
.block{
  border:1px solid var(--stroke);
  border-radius:22px;
  overflow:hidden;
  background:linear-gradient(90deg, rgba(255,0,199,.12), rgba(0,255,199,.08), rgba(0,140,255,.10));
}
.block .inner{
  padding:16px;
  background:rgba(7,5,26,.55);
}
.block h2{
  margin:0 0 10px 0;
  font-size:18px;
}
.block p{margin:0 0 10px 0; color:var(--text)}
.block ul{margin:0 0 0 18px}
.block li{margin:6px 0}
.block h3{margin:14px 0 8px 0; font-size:15px; color:var(--text)}
.small{font-size:12px; color:var(--muted)}
table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  overflow:hidden;
  border-radius:16px;
  border:1px solid var(--stroke);
}
th,td{padding:10px 10px; text-align:left; vertical-align:top}
th{
  background:rgba(255,255,255,.08);
  font-weight:700;
  font-size:13px;
}
td{background:rgba(0,0,0,.12); border-top:1px solid rgba(255,255,255,.08)}
tr:first-child td{border-top:none}

.site-footer{
  border-top:1px solid var(--stroke);
  background:rgba(7,5,26,.65);
  backdrop-filter: blur(8px);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap:10px;
  padding:14px 0;
  flex-wrap:wrap;
}
.footer-right a{text-decoration:none; color:var(--muted)}
.footer-right a:hover{text-decoration:underline}
.sep{color:rgba(255,255,255,.35); margin:0 8px}

/* forms */
form{width:100%}
.field{
  display:flex; flex-direction:column; gap:6px; margin:12px 0;
}
label{font-size:12px; color:var(--muted)}
input,textarea{
  width:100%;
  padding:12px 12px;
  border-radius:16px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.06);
  color:var(--text);
  outline:none;
}
textarea{min-height:140px; resize:vertical}
button.primary{
  padding:12px 16px;
  border-radius:16px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.10);
  color:var(--text);
  cursor:pointer;
}
button.primary:hover{background:rgba(255,255,255,.14)}

@media (min-width: 980px){
  .intro h1{font-size:30px}
  .nav{top:58px}
}

/* hide any badges */
.badge,.chip,.pill,.tag,.source-badge{display:none!important}

/* safety: hide any badge-like elements */
.badge,.chip,.pill,.tag,.tags,.source-badge,.sources-badge{display:none !important}

