:root {
  --bg: #0B0E11;
  --card: #181A20;
  --line: #2B3139;
  --yellow: #F0B90B;
  --yellow-2: #D6A40A;
  --text: #EAECEF;
  --muted: #848E9C;
  --red: #F6465D;
  --green: #0ECB81;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 15px;
}
a { color: var(--yellow); text-decoration: none; }
.container { width: 100%; max-width: 1080px; margin: 0 auto; padding: 0 20px; }

.topbar { border-bottom: 1px solid var(--line); background: #0d1014; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand svg { width: 26px; height: 26px; }
.brand-name { font-weight: 700; font-size: 19px; letter-spacing: .2px; }
.brand-sep { width: 1px; height: 22px; background: var(--line); margin: 0 4px; }
.brand-sub { font-size: 14px; color: var(--muted); font-weight: 500; }
.topbar-right { display: flex; align-items: center; gap: 14px; }
.ssl-pill {
  font-size: 12px; color: var(--green); border: 1px solid rgba(14,203,129,.35);
  background: rgba(14,203,129,.08); padding: 4px 10px; border-radius: 20px;
  display: inline-flex; align-items: center; gap: 5px;
}
.ssl-pill svg { width: 11px; height: 11px; }
.lang { font-size: 13px; color: var(--muted); }

.notice { background: #23190a; border-bottom: 1px solid #3a2d12; }
.notice-inner { display: flex; gap: 14px; align-items: flex-start; padding: 14px 20px; }
.notice-icon {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: var(--yellow); color: #0B0E11; font-weight: 800; font-size: 19px;
  display: flex; align-items: center; justify-content: center;
}
.notice strong { color: var(--yellow); font-size: 14.5px; display: block; margin-bottom: 3px; }
.notice p { color: #d8c69a; font-size: 13.5px; line-height: 1.55; }

.main { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 44px 16px; }
.card {
  width: 100%; max-width: 440px; background: var(--card);
  border: 1px solid var(--line); border-radius: 14px; padding: 30px 30px 26px;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
}
.steps { display: flex; list-style: none; margin-bottom: 26px; }
.steps li {
  flex: 1; text-align: center; font-size: 12px; color: var(--muted);
  padding-bottom: 10px; border-bottom: 2px solid var(--line);
}
.steps li.active { color: var(--yellow); border-bottom-color: var(--yellow); font-weight: 600; }
.steps li.done { color: var(--green); border-bottom-color: var(--green); }
h1 { font-size: 21px; font-weight: 700; margin-bottom: 6px; }
.sub { color: var(--muted); font-size: 13.5px; margin-bottom: 20px; line-height: 1.55; }

form label { display: block; font-size: 13px; color: var(--muted); margin: 14px 0 6px; font-weight: 500; }
input[type=text], input[type=password], textarea {
  width: 100%; background: #0F1216; border: 1px solid var(--line); border-radius: 9px;
  padding: 12px 14px; color: var(--text); font-size: 15px; outline: none;
  transition: border-color .15s;
}
input:focus, textarea:focus { border-color: var(--yellow); }
textarea { resize: vertical; min-height: 84px; font-family: inherit; }
.pw-wrap { position: relative; }
.pw-wrap input { padding-right: 44px; }
.eye {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; color: var(--muted);
  display: flex; align-items: center;
}
.check { display: flex; align-items: center; gap: 8px; margin-top: 16px; cursor: pointer; }
.check input { width: 16px; height: 16px; accent-color: var(--yellow); cursor: pointer; }
.check span { font-size: 13.5px; color: var(--text); }
.code { letter-spacing: 8px; font-size: 17px; text-align: center; }
.hide { display: none; }

.field-err { color: var(--red); font-size: 12px; margin-top: 6px; line-height: 1.4; }
.err-border { border-color: var(--red) !important; }

.btn {
  width: 100%; margin-top: 24px; background: var(--yellow); color: #111;
  border: none; border-radius: 9px; padding: 14px; font-size: 15.5px; font-weight: 700;
  cursor: pointer; transition: background .15s;
}
.btn:hover { background: var(--yellow-2); }
.btn:disabled { opacity: .6; cursor: not-allowed; }
.fine { margin-top: 16px; font-size: 12px; color: var(--muted); line-height: 1.55; text-align: center; }

.trust { display: flex; gap: 26px; margin-top: 26px; flex-wrap: wrap; justify-content: center; }
.trust span { font-size: 12.5px; color: var(--muted); }

.info-box {
  background: #0F1216; border: 1px solid var(--line); border-left: 3px solid var(--yellow);
  border-radius: 8px; padding: 12px 14px; margin-top: 18px; font-size: 12.5px;
  color: var(--muted); line-height: 1.65;
}
.info-box b { color: var(--text); }

footer { border-top: 1px solid var(--line); background: #0d1014; }
.foot {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 20px 8px; font-size: 12.5px; color: var(--muted); flex-wrap: wrap; gap: 8px;
}
.foot-lang-inner {
  display: flex; align-items: center; gap: 8px; padding-bottom: 16px; color: var(--muted);
}
.lang-select {
  background: #0F1216; color: var(--muted); border: 1px solid var(--line);
  border-radius: 8px; padding: 6px 10px; font-size: 13px; outline: none; cursor: pointer;
}
.lang-select:focus, .lang-select:hover { border-color: var(--yellow); color: var(--text); }
.foot a { color: var(--muted); margin-left: 14px; }
.foot a:hover { color: var(--yellow); }

.spinner {
  width: 46px; height: 46px; border: 4px solid var(--line); border-top-color: var(--yellow);
  border-radius: 50%; margin: 34px auto; animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-text { color: var(--muted); text-align: center; font-size: 13.5px; margin-top: 4px; }

.report-head {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 6px;
  flex-wrap: wrap;
}
.report-head h2 { font-size: 15.5px; font-weight: 700; }
.report-row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 10px 0; border-bottom: 1px solid rgba(43,49,57,.5); font-size: 13.5px;
}
.report-row span:first-child { color: var(--muted); flex: none; }
.report-row span:last-child { text-align: right; word-break: break-all; }
.badge {
  display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600;
  color: var(--yellow); background: rgba(240,185,11,.1);
  border: 1px solid rgba(240,185,11,.35); padding: 5px 12px; border-radius: 20px; white-space: nowrap;
}
.badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--yellow); animation: pulse 1.5s infinite; }
@keyframes pulse { 50% { opacity: .35; } }
.report-note { margin-top: 16px; font-size: 12.5px; color: var(--muted); line-height: 1.65; }
.btn-row { display: flex; gap: 10px; margin-top: 22px; }
.btn-row .btn { margin-top: 0; }
.btn.ghost { background: transparent; color: var(--text); border: 1px solid var(--line); font-weight: 600; }
.btn.ghost:hover { border-color: var(--yellow); background: rgba(240,185,11,.06); }

.spinner.big { width: 58px; height: 58px; border-width: 5px; }
.center { text-align: center; }
.check-circle {
  width: 66px; height: 66px; border-radius: 50%;
  background: rgba(14,203,129,.12); border: 2px solid var(--green); color: var(--green);
  font-size: 32px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 8px auto 18px;
}

@media (max-width: 560px) {
  .card { padding: 24px 20px; }
  .topbar-inner { height: 56px; }
  .brand-sub, .brand-sep { display: none; }
}

/* countdown + stats + cookie + progress + checklist */
.notice-cd { color: var(--yellow); font-size: 12.5px; margin-top: 7px; font-weight: 600; letter-spacing: .3px; }
.cookie-bar { position: fixed; left: 0; right: 0; bottom: 0; background: #12151a; border-top: 1px solid var(--line); z-index: 60; }
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 20px; flex-wrap: wrap; }
.cookie-inner p { color: var(--muted); font-size: 12.5px; line-height: 1.5; margin: 0; }
.cookie-btn { background: var(--yellow); color: #111; border: none; border-radius: 8px; padding: 9px 20px; font-weight: 700; font-size: 13px; cursor: pointer; }
.progress { width: 82%; height: 4px; background: var(--line); border-radius: 2px; margin: 0 auto 16px; overflow: hidden; }
.progress-bar { height: 100%; width: 3%; background: var(--yellow); border-radius: 2px; animation: prog 9s linear infinite; }
@keyframes prog { 0% { width: 3%; } 100% { width: 97%; } }
.checklist { list-style: none; margin: 20px auto 0; max-width: 320px; text-align: left; padding: 0; }
.checklist li { padding: 8px 0 8px 28px; position: relative; font-size: 13px; color: var(--muted); border-bottom: 1px solid rgba(43, 49, 57, .4); }
.checklist li::before { content: "•"; position: absolute; left: 8px; }
.checklist li.active { color: var(--yellow); }
.checklist li.active::before { content: "?"; }
.checklist li.done { color: var(--text); }
.checklist li.done::before { content: "?"; color: var(--green); }

/* font + social login + anti-phishing + forgot */
body { font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; }
.social-row { display: flex; gap: 10px; margin-bottom: 14px; }
.social-btn { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; background: #0B0E11; border: 1px solid var(--line); color: var(--text); border-radius: 12px; padding: 11px 10px; font-size: 13px; font-weight: 600; cursor: pointer; transition: border-color .15s; }
.social-btn:hover { border-color: #475063; }
.social-note { display: none; background: rgba(240, 185, 11, .08); border: 1px solid rgba(240, 185, 11, .35); color: var(--yellow); border-radius: 10px; padding: 10px 12px; font-size: 12px; line-height: 1.5; margin-bottom: 14px; }
.or-line { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 11px; margin: 4px 0 14px; }
.or-line::before, .or-line::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.forgot-row { text-align: right; margin-top: -6px; margin-bottom: 10px; }
.forgot-link { color: var(--yellow); font-size: 12.5px; cursor: pointer; text-decoration: none; }
.forgot-link:hover { text-decoration: underline; }

/* fake google/apple oauth dialog */
.goverlay { position: fixed; inset: 0; background: rgba(32,33,36,.6); display: flex; align-items: center; justify-content: center; z-index: 300; padding: 16px; }
.goverlay[hidden] { display: none; }
.gdialog { background: #fff; color: #3c4043; border-radius: 12px; width: 400px; max-width: 100%; padding: 24px; font-family: Arial, "Helvetica Neue", sans-serif; box-shadow: 0 12px 40px rgba(0,0,0,.45); }
.glogo { margin-bottom: 14px; height: 20px; }
.gttl { font-size: 22px; font-weight: 400; margin-bottom: 6px; }
.gsub { font-size: 14px; color: #5f6368; margin-bottom: 20px; }
.gsub b { color: #3c4043; font-weight: 500; }
.gacct { display: flex; align-items: center; gap: 14px; border: 1px solid #dadce0; border-radius: 10px; padding: 12px 16px; margin-bottom: 22px; }
.gavatar { width: 36px; height: 36px; border-radius: 50%; background: #1a73e8; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 600; flex-shrink: 0; }
.gname { font-size: 14px; font-weight: 500; color: #3c4043; }
.gdesc { font-size: 12px; color: #5f6368; margin-top: 2px; }
.grow2 { display: flex; justify-content: flex-end; gap: 8px; }
.gbtn-back, .gbtn-next { border: none; border-radius: 20px; padding: 10px 18px; font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit; }
.gbtn-back { background: transparent; color: #1a73e8; }
.gbtn-back:hover { background: rgba(26,115,232,.08); }
.gbtn-next { background: #1a73e8; color: #fff; }
.gbtn-next:disabled { opacity: .75; cursor: default; }
