/* =====================================================================
   scamchecker.online - shared scam-guide component library
   Loaded after styles.css, before each guide's residual inline <style>.
   Page-unique and divergent rules remain inline on their page.
   ===================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --blue: #1a56db;
  --blue-dark: #1e40af;
  --blue-light: #eff6ff;
  --blue-mid: #bfdbfe;
  --navy: #111827;
  --bg: #f9fafb;
  --white: #ffffff;
  --border: #e5e7eb;
  --border-dark: #d1d5db;
  --text: #111827;
  --text-2: #374151;
  --text-3: #6b7280;
  --text-4: #9ca3af;
  --red: #dc2626;
  --red-light: #fef2f2;
  --red-border: #fecaca;
  --green: #16a34a;
  --green-light: #f0fdf4;
  --green-border: #bbf7d0;
  --amber: #d97706;
  --amber-light: #fffbeb;
  --amber-border: #fde68a;
  --r: 8px;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 64px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) {
.page-wrap { grid-template-columns: 1fr; }
.sidebar { display: none; }
}
.breadcrumb {
  font-size: 13px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--blue); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--border-dark); }
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.tag {
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  text-decoration: none;
}
.tag-red { background: var(--red-light); color: var(--red); border: 1px solid var(--red-border); }
.tag-blue { background: var(--blue-light); color: var(--blue-dark); border: 1px solid var(--blue-mid); }
.tag-amber { background: var(--amber-light); color: var(--amber); border: 1px solid var(--amber-border); }
h1 {
  font-size: clamp(28px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.article-meta {
  font-size: 13px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.meta-dot { color: var(--border-dark); }
.meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
}
.pulse {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
0%,100%{opacity:1}
50%{opacity:0.35}
}
.nutshell {
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-left: 4px solid var(--blue);
  border-radius: var(--r);
  padding: 20px 22px;
  margin-bottom: 28px;
}
.nutshell-head {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.nutshell ul {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.nutshell li { font-size: 14px; color: var(--text-2); line-height: 1.55; }
.nutshell li strong { color: var(--navy); font-weight: 600; }
.verdict {
  background: var(--red-light);
  border: 1px solid var(--red-border);
  border-left: 4px solid var(--red);
  border-radius: var(--r);
  padding: 16px 20px;
  margin-bottom: 28px;
}
.verdict-label { font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.verdict p { font-size: 14px; color: var(--text-2); line-height: 1.6; margin: 0; }
.verdict strong { color: var(--navy); font-weight: 600; }
h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 14px;
  padding-top: 4px;
  letter-spacing: -0.015em;
}
h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin: 22px 0 7px;
}
p { color: var(--text-2); margin-bottom: 14px; font-size: 15px; }
p:last-child { margin-bottom: 0; }
.section-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}
.msg-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 20px;
  margin: 16px 0;
}
.msg-platform {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-4);
  margin-bottom: 10px;
}
.msg-bubble {
  background: #e8f0fe;
  border-radius: 14px 14px 14px 3px;
  padding: 12px 15px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text);
  max-width: 88%;
  white-space: pre-line;
}
.msg-annotation {
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-3);
  display: flex;
  gap: 8px;
  padding-left: 2px;
}
.msg-annotation::before { content: '↑'; color: var(--text-4); }
.recog {
  background: var(--amber-light);
  border: 1px solid var(--amber-border);
  border-radius: var(--r);
  padding: 16px 20px;
  margin: 16px 0;
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}
.recog strong { color: var(--navy); font-weight: 600; }
.steps { margin: 16px 0; }
.step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 0 14px;
  margin-bottom: 0;
}
.step-col { display: flex; flex-direction: column; align-items: center; }
.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  border: 2px solid transparent;
}
.step-line { width: 2px; flex: 1; min-height: 14px; margin: 3px 0; }
.step:last-child .step-line { display: none; }
.s1 .step-num { background: var(--blue-light); color: var(--blue-dark); border-color: var(--blue-mid); }
.s1 .step-line { background: var(--blue-mid); }
.s2 .step-num { background: var(--green-light); color: var(--green); border-color: var(--green-border); }
.s2 .step-line { background: var(--green-border); }
.s3 .step-num { background: var(--amber-light); color: var(--amber); border-color: var(--amber-border); }
.s3 .step-line { background: var(--amber-border); }
.s4 .step-num { background: var(--red-light); color: var(--red); border-color: var(--red-border); }
.step-body { padding: 8px 0 24px; }
.step-body h3 { margin: 0 0 5px; font-size: 15px; }
.step-body p { font-size: 14px; margin: 0; line-height: 1.6; }
.step-tag {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-3);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 3px 8px;
  border-radius: 4px;
}
.quote {
  border-left: 3px solid var(--border-dark);
  padding: 6px 0 6px 16px;
  margin: 14px 0;
  font-size: 13.5px;
  font-style: italic;
  color: var(--text-3);
  line-height: 1.6;
}
.quote cite { display: block; font-style: normal; font-size: 12px; color: var(--text-4); margin-top: 5px; }
.flags { margin: 16px 0; display: flex; flex-direction: column; gap: 8px; }
.flag {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.flag-x {
  width: 22px;
  height: 22px;
  background: var(--red-light);
  border: 1px solid var(--red-border);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.flag-x svg { width: 10px; height: 10px; }
.flag-title { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.flag-desc { font-size: 13px; color: var(--text-3); line-height: 1.5; margin: 0; }
.flag-eg { font-size: 12px; font-style: italic; color: var(--text-4); margin-top: 4px; }
.urgent-wrap {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin: 16px 0;
}
.urgent-head {
  background: var(--navy);
  color: white;
  padding: 16px 20px;
}
.urgent-head .uh-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 5px;
}
.urgent-head h2 {
  font-size: 17px;
  color: white;
  margin: 0 0 4px;
  padding: 0;
}
.urgent-head p { font-size: 13px; color: rgba(255,255,255,0.65); margin: 0; }
.urgent-steps { background: var(--white); }
.ust {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 0 12px;
  align-items: start;
}
.ust:last-child { border-bottom: none; }
.ust-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue-dark);
  flex-shrink: 0;
  margin-top: 1px;
}
.ust-text strong { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 2px; }
.ust-text span { font-size: 13px; color: var(--text-3); line-height: 1.55; }
.tab-row {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.tab {
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-3);
  cursor: pointer;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  background: none;
  font-family: 'Inter', sans-serif;
  transition: color 0.12s;
}
.tab:hover { color: var(--text); }
.tab.on { color: var(--blue); border-bottom-color: var(--blue); }
.tab-panel { display: none; }
.tab-panel.on { display: block; }
.report-list { display: flex; flex-direction: column; gap: 8px; }
.report-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 18px;
  text-decoration: none;
  display: block;
  transition: border-color 0.12s;
}
.report-card:hover { border-color: var(--blue); }
.rc-when { font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--blue); margin-bottom: 3px; }
.rc-name { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.rc-desc { font-size: 13px; color: var(--text-3); line-height: 1.45; }
.rc-url { font-size: 11px; color: var(--text-4); margin-top: 4px; }
.report-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-3);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 10px 14px;
  line-height: 1.55;
}
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 16px 0;
}
.stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px;
}
.stat-n {
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 4px;
}
.stat-l { font-size: 12px; color: var(--text-3); line-height: 1.4; }
.sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 18px 20px;
}
.sc-head {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.toc-list li a {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-size: 13px;
  color: var(--text-2);
  padding: 5px 8px;
  border-radius: 5px;
  transition: background 0.12s, color 0.12s;
}
.toc-list li a:hover { background: var(--white); color: var(--blue); }
.toc-list li a::before { content: '→'; color: var(--text-4); font-size: 11px; flex-shrink: 0; }
.share-row { display: flex; gap: 8px; }
.share-btn {
  flex: 1;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  background: var(--white);
  cursor: pointer;
  text-align: center;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.12s;
}
.share-btn:hover { border-color: var(--blue-mid); color: var(--blue); }
.tip-box {
  background: var(--green-light);
  border: 1px solid var(--green-border);
  border-radius: var(--r);
  padding: 14px 16px;
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
}
.tip-box strong { color: var(--green); font-weight: 600; display: block; margin-bottom: 4px; }
.article-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-4);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.article-footer a { color: var(--blue); text-decoration: none; }
@media (max-width: 480px) {
.stats { grid-template-columns: 1fr; }
.tab { padding: 8px 11px; font-size: 12px; }
}
.ad-slot {
  background: var(--bg);
  border: 1px dashed var(--border-dark);
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-4);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  gap: 4px;
  margin: 28px 0;
}
.ad-slot-label { font-size: 10px; opacity: 0.7; }
.ad-main { width: 100%; min-height: 90px; }
.ad-sidebar { width: 300px; min-height: 250px; align-self: center; }
.ad-bottom { width: 100%; min-height: 90px; }
@media (max-width: 640px) {
.ad-main { min-height: 50px; }
.ad-bottom { min-height: 50px; }
}
.phone-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  margin: 22px 0;
}
@media (max-width: 760px) {
.phone-row { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
}
.phone {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
}
.wa-header {
  background: #075e54;
  color: #fff;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.wa-back { font-size: 18px; line-height: 1; opacity: 0.9; }
.wa-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center;
  justify-content: center; font-size: 14px; font-weight: 600; color: #fff;
  flex-shrink: 0;
}
.wa-name { font-size: 13px; font-weight: 600; line-height: 1.2; }
.wa-status { font-size: 10px; opacity: 0.75; }
.wa-body {
  background: #e5ddd5;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.03'%3E%3Cpath d='M0 0h20v20H0zM20 20h20v20H20z'/%3E%3C/g%3E%3C/svg%3E");
  padding: 14px 12px;
  flex: 1;
  min-height: 200px;
}
.wa-msg {
  background: #fff;
  border-radius: 8px;
  padding: 8px 10px 6px;
  font-size: 12.5px;
  line-height: 1.45;
  color: #111b21;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
  white-space: pre-line;
  position: relative;
}
.wa-time { font-size: 10px; color: #667781; text-align: right; margin-top: 2px; }
.tg-header {
  background: #517da2;
  color: #fff;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.tg-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: #5eb5f7; display: flex; align-items: center;
  justify-content: center; font-size: 14px; font-weight: 600; color: #fff;
  flex-shrink: 0;
}
.tg-name { font-size: 13px; font-weight: 600; line-height: 1.2; }
.tg-status { font-size: 10px; opacity: 0.8; }
.tg-body {
  background: #cfd9e4;
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23000000' fill-opacity='0.025'%3E%3Ccircle cx='10' cy='10' r='3'/%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3C/g%3E%3C/svg%3E");
  padding: 14px 12px;
  flex: 1;
  min-height: 200px;
}
.tg-msg {
  background: #fff;
  border-radius: 10px 10px 10px 3px;
  padding: 8px 10px 6px;
  font-size: 12.5px;
  line-height: 1.45;
  color: #000;
  white-space: pre-line;
}
.tg-time { font-size: 10px; color: #8aa0b3; text-align: right; margin-top: 2px; }
.sms-header {
  background: #f6f6f6;
  border-bottom: 1px solid #e0e0e0;
  padding: 9px 12px;
  text-align: center;
}
.sms-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: #c7c7cc; display: flex; align-items: center;
  justify-content: center; font-size: 14px; font-weight: 600; color: #fff;
  margin: 0 auto 3px;
}
.sms-name { font-size: 12px; font-weight: 600; color: #000; }
.chat-caption {
  margin-top: 9px;
  font-size: 12px;
  color: var(--text-3);
  line-height: 1.5;
  display: flex;
  gap: 6px;
  align-items: flex-start;
}
.chat-caption::before {
  content: '!';
  flex-shrink: 0;
  width: 15px; height: 15px;
  background: var(--amber-light);
  border: 1px solid var(--amber-border);
  color: var(--amber);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.hiw {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 22px 0;
  align-items: start;
}
@media (max-width: 600px) {
.hiw { grid-template-columns: 1fr; }
}
.hiw-card {
  background: #fcfcfd;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
}
.hiw-top { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.hiw-num {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 700; color: #fff; flex-shrink: 0;
}
.hiw-1 .hiw-num { background: #1e3a8a; }
.hiw-title { font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.2; }
.hiw-desc { font-size: 13px; color: var(--text-2); line-height: 1.55; margin-bottom: 14px; }
.hiw-visual { margin-top: 4px; }
.mini-phone {
  background: #fff; border: 1px solid #d8dde3; border-radius: 14px;
  overflow: hidden; box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.mp-bar {
  background: #f6f6f6; border-bottom: 1px solid #e6e6e6;
  padding: 7px 10px; display: flex; align-items: center; gap: 7px;
}
.mp-back { color: #8e8e93; font-size: 14px; }
.mp-name { font-size: 11px; font-weight: 600; color: #000; line-height: 1.1; }
.mp-online { font-size: 8.5px; color: #34c759; }
.mp-body { padding: 10px; display: flex; flex-direction: column; gap: 7px; }
.mp-t { font-size: 8px; color: #8a8a8e; }
.arrives {
  background: var(--blue-light); border: 1px solid var(--blue-mid);
  border-radius: 10px; padding: 11px; margin-top: 10px; text-align: center;
}
.arrives-h { font-size: 11px; font-weight: 700; color: var(--blue-dark); margin-bottom: 7px; }
.arrives-list { font-size: 11px; color: var(--text-2); line-height: 1.7; }
.app-card {
  border-radius: 12px; overflow: hidden;
  background: #0f1c2e; border: 1px solid #1e2d42;
}
.ac-head {
  padding: 8px 11px; display: flex; align-items: center;
  justify-content: space-between; color: #fff;
}
.ac-head-l { font-size: 11px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.ac-vip { background: #f59e0b; color: #1a1200; font-size: 8.5px; font-weight: 700; padding: 2px 6px; border-radius: 4px; }
.ac-balance {
  background: linear-gradient(135deg, #16a34a, #15803d);
  margin: 0 9px; border-radius: 9px; padding: 11px 13px; color: #fff;
}
.ac-bal-label { font-size: 9.5px; opacity: 0.85; }
.ac-bal-num { font-size: 24px; font-weight: 700; line-height: 1.1; margin: 1px 0 9px; }
.ac-bal-row { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.25); padding-top: 7px; }
.ac-bal-sub { font-size: 8.5px; opacity: 0.85; }
.ac-bal-val { font-size: 13px; font-weight: 700; }
.ac-payout {
  background: #fff; margin: 9px; border-radius: 8px; padding: 8px 10px;
  display: flex; align-items: center; gap: 8px;
}
.ac-check {
  width: 22px; height: 22px; border-radius: 50%; background: #16a34a;
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 12px; flex-shrink: 0;
}
.ac-pay-label { font-size: 9.5px; color: #6b7280; }
.ac-pay-num { font-size: 14px; font-weight: 700; color: #16a34a; }
.ac-pay-via { font-size: 8.5px; color: #9ca3af; margin-left: auto; }
.neg-card {
  border-radius: 12px; overflow: hidden;
  background: #0f1c2e; border: 1px solid #1e2d42;
}
.nc-head {
  padding: 8px 11px; display: flex; align-items: center;
  justify-content: space-between; color: #fff;
}
.nc-order { font-size: 11px; font-weight: 600; }
.nc-status { background: #334155; color: #cbd5e1; font-size: 8.5px; padding: 2px 7px; border-radius: 4px; }
.nc-balance {
  background: linear-gradient(135deg, #7f1d1d, #991b1b);
  margin: 0 9px; border-radius: 9px; padding: 11px 13px; color: #fff;
}
.nc-bal-label { font-size: 9.5px; color: #fca5a5; }
.nc-bal-num { font-size: 26px; font-weight: 700; line-height: 1.1; margin: 1px 0 8px; }
.nc-bal-note { font-size: 9.5px; opacity: 0.9; line-height: 1.4; }
.nc-topup {
  background: #1a2942; margin: 9px; border-radius: 8px; padding: 9px 10px;
}
.nc-topup-label { font-size: 9px; color: #94a3b8; margin-bottom: 6px; }
.nc-topup-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.nc-amount { font-size: 13px; font-weight: 700; color: #fff; }
.nc-btn { background: #f59e0b; color: #1a1200; font-size: 10px; font-weight: 700; padding: 6px 12px; border-radius: 6px; }
.p4-deposits {
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 9px 11px; margin-bottom: 9px;
}
.p4-h { font-size: 10px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.p4-up {
  width: 18px; height: 18px; border-radius: 50%; background: var(--red);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 9px; flex-shrink: 0;
}
.p4-dep-name { font-size: 10px; color: var(--text-2); }
.p4-dep-amt { font-size: 10px; font-weight: 700; color: var(--red); margin-left: auto; }
.p4-fail {
  background: var(--red-light); border: 1px solid var(--red-border);
  border-radius: 10px; padding: 11px; text-align: center; margin-bottom: 9px;
}
.p4-fail-icon { font-size: 18px; }
.p4-fail-d { font-size: 9.5px; color: var(--text-3); line-height: 1.4; }
.p4-chat {
  background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 9px 11px;
}
.p4-chat-h { font-size: 9.5px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.p4-chat-msg { background: var(--bg); border-radius: 8px; padding: 6px 8px; font-size: 10px; color: var(--text-2); line-height: 1.4; }
.mp-photo { overflow: hidden; padding: 0; }
.mp-photo svg, .mp-photo img { width: 100%; height: 100%; display: block; object-fit: cover; }
.p4-chat-line { display: flex; gap: 7px; align-items: flex-start; margin-bottom: 6px; }
.p4-chat-line:last-child { margin-bottom: 0; }
.p4-av { width: 22px; height: 22px; border-radius: 50%; overflow: hidden; flex-shrink: 0; }
.p4-av svg, .p4-av img { width: 100%; height: 100%; display: block; }
.p4-chat-line .p4-chat-msg { flex: 1; margin: 0; }
.hiw-tag {
  background: var(--green-light); border: 1px solid var(--green-border);
  border-radius: 9px; padding: 9px 11px; font-size: 11px; color: var(--text-2);
  line-height: 1.45; margin-top: 10px; display: flex; gap: 7px; align-items: flex-start;
}
.hiw-tag.amber { background: var(--amber-light); border-color: var(--amber-border); }
.hiw-tag.red { background: var(--red-light); border-color: var(--red-border); color: var(--red); font-weight: 600; }
.hiw-quote {
  border-left: 3px solid var(--border-dark); padding: 6px 0 6px 11px;
  margin-top: 10px; font-size: 11px; font-style: italic; color: var(--text-3); line-height: 1.5;
}
.hiw-quote cite { display: block; font-style: normal; font-size: 9.5px; color: var(--text-4); margin-top: 4px; }
.remember-bar {
  background: var(--navy);
  border-radius: 14px;
  padding: 24px 26px;
  margin: 24px 0 8px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}
@media (max-width: 900px) {
.remember-bar { grid-template-columns: 1fr; gap: 18px; text-align: left; }
}
.rb-title {
  font-size: 17px; font-weight: 700; color: #fbbf24;
  display: flex; align-items: center;
}
.rb-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
@media (max-width: 560px) {
.rb-items { grid-template-columns: 1fr; }
}
.rb-item { display: flex; gap: 11px; align-items: flex-start; }
.rb-icon { flex-shrink: 0; line-height: 0; margin-top: 1px; }
.rb-text { font-size: 13.5px; color: #e5e7eb; line-height: 1.45; }
.rb-cta {
  background: #1a56db; color: #fff; text-decoration: none;
  font-size: 14px; font-weight: 600; padding: 11px 20px;
  border-radius: 8px; white-space: nowrap; text-align: center;
  transition: background 0.15s;
}
.rb-cta:hover { background: #1e40af; }
.cite-ref {
  font-size: 0.7em;
  vertical-align: super;
  line-height: 0;
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
  padding: 0 1px;
}
.cite-ref:hover { text-decoration: underline; }
.sources {
  margin: 28px 0 0;
  padding: 20px 22px;
  background: #fcfcfd;
  border: 1px solid var(--border);
  border-radius: var(--r);
}
.sources-h {
  font-size: 13px; font-weight: 700; color: var(--navy);
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 12px;
}
.sources ol { padding-left: 20px; display: flex; flex-direction: column; gap: 7px; }
.sources li { font-size: 13px; color: var(--text-2); line-height: 1.5; }
.sources li a { color: var(--blue); text-decoration: none; word-break: break-word; }
.sources li a:hover { text-decoration: underline; }
.source-tag { color: var(--text-4); font-size: 12px; }
.editorial {
  margin: 24px 0 0;
  padding: 18px 22px;
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: var(--r);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.editorial-icon {
  width: 38px; height: 38px; border-radius: 8px; background: var(--blue);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.editorial-body { flex: 1; }
.editorial-title { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.editorial-text { font-size: 13px; color: var(--text-2); line-height: 1.55; margin: 0; }
.editorial-text a { color: var(--blue); text-decoration: none; }
.editorial-text a:hover { text-decoration: underline; }
.editorial-meta {
  font-size: 12px; color: var(--text-3); margin-top: 8px;
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
}
.illus-label {
  font-size: 11px;
  color: var(--text-4);
  font-style: italic;
  margin: 7px 0 0;
  display: flex;
  align-items: center;
  gap: 5px;
}
.illus-label::before {
  content: '';
  width: 11px; height: 11px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Ccircle cx='8' cy='8' r='7' stroke='%239ca3af' stroke-width='1.3'/%3E%3Cpath d='M8 7v4' stroke='%239ca3af' stroke-width='1.3' stroke-linecap='round'/%3E%3Ccircle cx='8' cy='4.8' r='0.7' fill='%239ca3af'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.verify { background: var(--green-light); border: 1px solid var(--green-border); border-left: 4px solid var(--green); border-radius: var(--r); padding: 16px 20px; margin: 16px 0; }
.verify-h { font-size: 14px; font-weight: 700; color: #166534; margin-bottom: 8px; }
.verify p { font-size: 14px; color: var(--text-2); line-height: 1.6; margin: 0 0 8px; }
.verify ul { margin: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 5px; }
.verify li { font-size: 14px; color: var(--text-2); line-height: 1.55; }
.verify li strong { color: var(--navy); font-weight: 600; }
@media (max-width: 480px) {
.stats { grid-template-columns: 1fr; }
.tab { padding: 8px 11px; font-size: 12px; }
}
.sms-link { color: #2563eb; word-break: break-all; }
.mp-sub { font-size: 8.5px; color: #8e8e93; }
.ai-lab { font-size: 9px; font-weight: 600; color: var(--text-3); }
.p4-charges { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 9px 11px; margin-bottom: 9px; }
.p4-down { width: 18px; height: 18px; border-radius: 50%; background: var(--red); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 9px; flex-shrink: 0; }
.p4-resold-h { font-size: 9.5px; font-weight: 700; color: #93c5fd; margin-bottom: 4px; }
.p4-resold-d { font-size: 9.5px; color: #cbd5e1; line-height: 1.4; }
.illus-note { color: var(--text-4); font-size: 14px; }
.mp-in .mp-link { color: #2563eb; word-break: break-all; }
.fakesite { border-radius: 12px; overflow: hidden; background: #fff; border: 1px solid #d8dde3; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
.fs-bar { background: #ececf0; padding: 7px 9px; display: flex; align-items: center; gap: 7px; }
.fs-dots { display: flex; gap: 3px; }
.fs-dot { width: 7px; height: 7px; border-radius: 50%; background: #c4c4cc; }
.fs-url { flex: 1; background: #fff; border-radius: 6px; padding: 4px 8px; font-size: 9.5px; color: #6b7280; display: flex; align-items: center; gap: 5px; overflow: hidden; white-space: nowrap; }
.fs-nolock { color: var(--red); font-weight: 700; font-size: 9px; }
.fs-dom { color: #111; }
.fs-flag { background: var(--red-light); color: var(--red); border: 1px solid var(--red-border); font-size: 8px; font-weight: 700; padding: 1px 5px; border-radius: 4px; }
.fs-page { padding: 14px 13px; text-align: center; }
.fs-logo { font-size: 13px; font-weight: 700; color: #1e3a8a; margin-bottom: 2px; display: flex; align-items: center; justify-content: center; gap: 5px; }
.fs-logo .fs-mark { width: 16px; height: 16px; border-radius: 4px; background: #1e3a8a; color: #fff; font-size: 9px; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.fs-sub { font-size: 9px; color: #9ca3af; margin-bottom: 11px; }
.fs-amt-label { font-size: 9px; color: #6b7280; }
.fs-amt { font-size: 24px; font-weight: 700; color: #111; line-height: 1.1; margin: 1px 0 2px; }
.fs-late { font-size: 9px; color: var(--red); margin-bottom: 11px; }
.fs-btn { background: #1e3a8a; color: #fff; font-size: 11px; font-weight: 700; padding: 8px; border-radius: 7px; text-align: center; }
.harvest { border-radius: 12px; overflow: hidden; background: #fff; border: 1px solid #d8dde3; }
.hv-head { background: #1e3a8a; color: #fff; padding: 8px 11px; font-size: 10.5px; font-weight: 600; display: flex; align-items: center; gap: 6px; }
.hv-body { padding: 11px; display: flex; flex-direction: column; gap: 8px; }
.hv-flabel { font-size: 8.5px; color: #9ca3af; margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.03em; }
.hv-input { border: 1px solid #e5e7eb; border-radius: 6px; padding: 6px 8px; font-size: 11px; color: #374151; background: #fafafa; display: flex; align-items: center; justify-content: space-between; }
.hv-row { display: flex; gap: 7px; }
.hv-row .hv-field { flex: 1; }
.p4-repeat { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 9px 11px; }
.p4-repeat-h { font-size: 9.5px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.p4-repeat-msg { background: var(--bg); border-radius: 8px; padding: 6px 8px; font-size: 9.5px; color: var(--text-2); line-height: 1.35; margin-bottom: 5px; }
.p4-repeat-msg:last-child { margin-bottom: 0; }
.sms-phone { color: var(--red); font-weight: 600; }
.call-screen { background: #1c1c1e; border-radius: 12px; padding: 16px 12px 14px; display: flex; flex-direction: column; align-items: center; }
.call-label { font-size: 9px; color: #8e8e93; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.call-avatar { width: 52px; height: 52px; border-radius: 50%; background: #3a3a3c; display: flex; align-items: center; justify-content: center; margin-bottom: 9px; }
.call-name { font-size: 14px; font-weight: 600; color: #fff; text-align: center; line-height: 1.2; }
.call-sub { font-size: 10px; color: #8e8e93; margin-top: 3px; text-align: center; }
.call-timer { font-size: 10px; color: #34c759; margin-top: 7px; }
.call-foot { font-size: 9px; color: #ff9f0a; margin-top: 9px; background: rgba(255,159,10,0.12); padding: 4px 8px; border-radius: 5px; text-align: center; }
.p4-gone { background: #1a2942; border-radius: 10px; padding: 10px 11px; color: #fff; }
.p4-gone-h { font-size: 9.5px; font-weight: 700; color: #fca5a5; margin-bottom: 4px; }
.p4-gone-d { font-size: 9.5px; color: #cbd5e1; line-height: 1.4; }
/* --- normalized components (unified across all guides) --- */
.p4-dep { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.p4-dep:last-child { margin-bottom: 0; }
.ust-text a { color: var(--blue); text-decoration: none; }
.ust-text a:hover { text-decoration: underline; }

/* ===================================================================
   AD PLACEHOLDER TOGGLE  — added June 2026
   Hides all ad-slot placeholders until AdSense is approved.
   TO RE-ENABLE ADS: delete this entire block (down to the end marker).
   =================================================================== */
.ad-slot { display: none !important; }
/* === END AD PLACEHOLDER TOGGLE === */
