:root{
  --bg:#0b0f14;
  --bg-soft:#0f141c;
  --strip:#081627;
  --text:#ecf1f7;
  --muted:#aab4c5;
  --border:#1f2836;
  --white:#ffffff;
  --btn-dark:#0d121a;
  --blue:#6ac4ff;
  --pink:#ff6fa7;
  --green:#2ee9a6;
  --gradient:linear-gradient(90deg,var(--blue),var(--pink));
}
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
    background: radial-gradient(80% 60% at 100% 0%, rgba(255, 111, 167, 0.1), transparent 70%),
                radial-gradient(75% 50% at 0% 0%, rgba(106, 196, 255, 0.1), transparent 70%),
                #0d111a;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
  color:var(--text);
  font:400 16px/1.6 Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
figure{
text-align:center;
}
img{display:block;max-width:100%;height:auto}
a{color:inherit;text-decoration:none}

.container{max-width:1440px;margin:0 auto;padding:0 16px}

.header{background:var(--bg-soft);border-bottom:1px solid var(--border);}
.header__inner{display:grid;align-items:center; gap:14px;padding:12px;grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;}
.brand{display:flex;align-items:center;gap:10px}
.brand__logo{display:inline-grid;place-items:center;width:42px;height:42px;border-radius:10px;background:var(--gradient)}
.brand__logo img{width:85%;height:85%;object-fit:contain;border-radius:8px;background:#0b0f14}
.brand__name{font-weight:800;letter-spacing:.4px}
.nav{justify-self:center}
.nav__list{display:flex;gap:10px;list-style:none;margin:0;padding:0}
.btn{display:inline-flex;align-items:center;justify-content:center;padding:10px 16px;border-radius:999px;font-weight:700;border:1px solid var(--border);background:linear-gradient(180deg,#141b27,#0d121a)}
.btn--light{background:var(--white);color:#111}
.btn--gradient{border:0;background:var(--gradient);color:#0c1118}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0;
  background: #121826;
  color: #EAF1FB;
  border-radius: 8px;
  overflow: auto;
  display:inline-block;
}

thead {
  background: #1a2230;
}

thead th {
  padding: 12px 15px;
  font-weight: bold;
  text-align: left;
  border-bottom: 2px solid #3da9ff;
  color: #fff;
}

tbody td {
  padding: 10px 15px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

tbody tr:nth-child(even) {
  background: #0e141f;
}

tbody tr:hover {
  background: #1c2b40;
}
.faq-block {
  margin: 30px 0;
  color: #EAF1FB;
}

.faq-block dt {
  font-weight: bold;
  padding: 10px 14px;
  margin-top: 12px;
}

.faq-block dd {
  padding: 10px 14px;
  margin: 0;
  color: #cdd6e4;
}
 ul{
 padding:0 0 0 15px; 
 }
.gizbo{padding:36px 0;border-top:1px solid rgba(255,255,255,.03);border-bottom: 1px solid var(--border);}
.gizbo__grid{display:grid;gap:24px}
.gizbo__title{font-weight:700; font-size:clamp(26px,5.6vw,44px);line-height:1.15;font-weight:800;margin:0 0 14px}
.gizbo__note{color:var(--muted);font-weight:600}
.gizbo__cta{display:flex;gap:12px;margin-top:18px;flex-wrap:wrap}
.gizbo__media{display:none; justify-self:center;border-radius:16px;background:padding:10px}

.badge{display:inline-block;padding:6px 10px;border:1px dashed rgba(255,255,255,.25);border-radius:999px;color:#fff;background:linear-gradient(180deg,rgba(20,26,36,.7),rgba(12,16,24,.7))}
.small{font-size:14px}
.lock{display:inline-block;width:14px;height:14px;border-radius:3px;background:var(--gradient);margin-left:6px}

.section{padding:32px 12px}
.section h2{margin:.4em 0;font-size:clamp(20px,3.6vw,28px);font-weight:800}
.section p{margin:.5em 0}
.list{margin:.4em 0;padding-left:20px}
.table{display:inline-block; width:100%;border-collapse:separate;border-spacing:0 10px}
.table th,.table td{padding:12px 14px;vertical-align:top}
.table thead th{border-bottom:1px solid var(--border)}
.row{background:linear-gradient(180deg,#121926,#0e141e);border:1px solid var(--border);border-radius:12px}
.row td:first-child{border-top-left-radius:12px;border-bottom-left-radius:12px}
.row td:last-child{border-top-right-radius:12px;border-bottom-right-radius:12px}
figcaption{margin-top: 10px;}
.footer{border-top:1px solid var(--border);background:#0b0f14}
.footer__inner{display:grid;grid-template-columns:1fr;gap:12px;align-items:center;padding:18px 12px;justify-items:center;}
.footer__links{display:flex;gap:10px;flex-wrap:wrap}
.footer__copy{justify-self:center;color:var(--muted);font-size:14px;text-align:right}

@media (min-width:760px){
.footer__copy {
    justify-self: end;
}
.footer__inner{
grid-template-columns:1fr auto 1fr;
justify-items:initial;
}
.header__inner{grid-template-columns:1fr auto auto;grid-template-columns:1fr auto auto;justify-items: start;}
table{
display:inline-table;
}
.gizbo__media{
display:block;
}
  .gizbo__grid{grid-template-columns:1.1fr .9fr;align-items:center}
}