:root{
  --bg:#191b1b;
  --card:#202323;
  --text:#e6e9e9;
  --muted:#b8bebe;
  --border:rgba(255,255,255,.08);
  --accent:#3ddc97;
}

header.wp-block-template-part,
footer.wp-block-template-part{
  display: none;
}

/* body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
} */

.wrap{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
}

.card{
  max-width:560px;
  width:100%;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:18px;
  padding:22px;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.hd{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
}

.hleft{ display:flex; align-items:center; gap:12px; }

.lock{
  width:44px;
  height:44px;
  border-radius:50%;
  background:rgba(61,220,151,.14);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
}

.title{ font-size:20px; margin:0; color:#fff; }
.msg{ color:var(--muted); margin:8px 0 14px; line-height:1.5; }

.spinner{
  width:18px;
  height:18px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,.22);
  border-top-color:var(--accent);
  animation:spin .9s linear infinite;
}
@keyframes spin{ to{ transform:rotate(360deg); } }

.table{
  width:100%;
  border-collapse:collapse;
  margin:10px 0 14px;
  background:rgba(255,255,255,.02);
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
}
.table tr{ border-bottom:1px solid var(--border); }
.table tr:last-child{ border-bottom:none; }
.table td{ padding:12px 14px; font-size:14px; }
.k{ color:var(--muted); width:38%; }
.v{ color:#fff; font-weight:600; }

.notice{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:var(--muted);
  margin-bottom:14px;
}
.notice b{ color:var(--accent); }

.btn{
  width:100%;
  padding:12px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.06);
  color:#fff;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
}
.btn:hover{ background:rgba(255,255,255,.10); }

.sub{
  margin-top:10px;
  font-size:12.5px;
  color:var(--muted);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}

.warn{
  display:none;
  margin-top:12px;
  padding:10px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:var(--text);
}
.warn strong{ color:#fff; }

.linkbtn{
  display:none;
  margin-top:10px;
  width:100%;
  padding:12px;
  border-radius:12px;
  border:1px solid rgba(61,220,151,.35);
  background:rgba(61,220,151,.12);
  color:#fff;
  font-size:15px;
  font-weight:800;
  cursor:pointer;
}
.linkbtn:hover{ background:rgba(61,220,151,.16); }