:root{
  /* Professional anti-fraud blue system palette */
  --bgTop:#2f73ff;
  --bgMid:#2a65ef;
  --bgBottom:#1f56d8;

  --card:#ffffff;
  --text:#0b1220;
  --muted:#5b6b82;
  --line:#e7eef8;

  --primary:#1f56d8;
  --primary2:#2d6cff;

  --soft:#f3f7ff;

  --radius:22px;
  --shadow:0 18px 50px rgba(7, 18, 45, .18);
  --shadow2:0 10px 24px rgba(7, 18, 45, .12);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans";
  color:var(--text);
  background:
    radial-gradient(900px 440px at 50% -160px, rgba(255,255,255,.22), rgba(255,255,255,0) 62%),
    radial-gradient(520px 260px at 84% 22%, rgba(255,255,255,.10), rgba(255,255,255,0) 70%),
    linear-gradient(180deg, var(--bgTop), var(--bgMid) 55%, var(--bgBottom));
}

a{color:inherit;text-decoration:none}
.container{width:min(860px, 92vw);margin:0 auto}
.stage{
  min-height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:44px 0 28px;
}

.header{
  text-align:center;
  color:#fff;
  margin-bottom:16px;
}

/* Logo without golden rim: clean official badge */
.emblem{
  width:92px;height:92px;
  margin:0 auto 12px;
  border-radius:999px;
  position:relative;
  display:grid;place-items:center;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.28);
  box-shadow: 0 16px 34px rgba(0,0,0,.18);
  overflow:hidden;
}
.emblem::before{
  content:"";
  position:absolute; inset:0;
  border-radius:999px;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,.38), rgba(255,255,255,0) 58%),
    radial-gradient(circle at 70% 80%, rgba(0,0,0,.10), rgba(0,0,0,0) 60%);
  pointer-events:none;
}
.emblem .ring{
  width:78px;height:78px;
  border-radius:999px;
  border:2px solid rgba(255,255,255,.62);
  background: rgba(6, 18, 45, .18);
  display:grid;place-items:center;
}
.emblem img{
  width:60px;height:60px;
  object-fit:contain;
  filter: drop-shadow(0 10px 14px rgba(0,0,0,.22));
}

.h1{
  font-size:28px;
  font-weight:950;
  letter-spacing:2.6px;
  margin:0;
}
.h2{
  margin:8px 0 0;
  font-size:12px;
  opacity:.92;
  letter-spacing:1.4px;
}
.h2 .dot{opacity:.85;padding:0 6px}

/* Card */
.card{
  background:var(--card);
  border-radius:28px;
  box-shadow: var(--shadow);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.55);
}
.card-body{padding:22px 24px 16px}
@media(max-width:520px){.card-body{padding:18px 16px 14px}}

.block{
  font-size:14px;
  color:#334155;
  line-height:1.9;
  margin:0;
}
.block + .block{margin-top:10px}

.sep{height:1px;background:var(--line);margin:16px 0}

.meta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:10px;
}
.pill{
  padding:8px 12px;
  border-radius:999px;
  background: var(--soft);
  border:1px solid rgba(45,108,255,.14);
  color:#1d3f9f;
  font-size:12px;
  font-weight:800;
  letter-spacing:.4px;
}

.note{
  margin:0;
  font-size:12px;
  color:var(--muted);
  line-height:1.75;
  text-align:center;
}

.actions{padding:0 24px 22px}
@media(max-width:520px){.actions{padding:0 16px 16px}}

.btn{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 16px;
  border-radius:16px;
  font-weight:950;
  letter-spacing:1px;
  border:1px solid transparent;
  cursor:pointer;
  user-select:none;
}
.btn.primary{
  color:#fff;
  background: linear-gradient(180deg, var(--primary2), var(--primary));
  box-shadow: 0 12px 24px rgba(31,86,216,.24);
}
.btn.primary:active{transform:translateY(1px)}
.btn.secondary{
  margin-top:12px;
  color: var(--primary);
  background:#f6f9ff;
  border-color: rgba(45,108,255,.16);
}

.btn svg{width:18px;height:18px}

.tip{
  display:none;
  margin-top:12px;
  padding:12px 14px;
  border-radius:16px;
  background:#fff7ed;
  border:1px solid #fed7aa;
  color:#9a3412;
  font-size:13px;
  line-height:1.7;
}

.footer{
  margin-top:16px;
  color:rgba(255,255,255,.78);
  font-size:12px;
  letter-spacing:.6px;
  text-align:center;
}
.footer a{
  color:rgba(255,255,255,.9);
  text-decoration:underline;
  text-underline-offset:3px;
}

/* ===== Flat Official Logo Treatment ===== */
.emblem{
  width:84px;
  height:84px;
  margin:0 auto 14px;
  background: transparent;
  border:none;
  box-shadow:none;
}
.emblem::before,
.emblem::after{display:none}
.emblem .ring{
  width:auto;
  height:auto;
  border:none;
  background:none;
}
.emblem img{
  width:72px;
  height:72px;
  filter:none;
}
