/* ═══════════ SlotKabar — premium navy + gold theme ═══════════ */
/* Pyidaungsu ships only a Bold cut; map it across the whole weight range so the
   browser never synthesises a fake bold and the page stays one consistent face. */
@font-face {
  font-family: "Pyidaungsu";
  src: url("/fonts/pyidaungsu-bold.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand */
  --primary: #F0C24B;
  --primary-hover: #FFD666;
  --primary-dark: #C99A2E;
  /* Background */
  --bg: #060B1A;
  --bg-primary: #0A1128;
  --surface: #111A35;
  --card: #151F3D;
  /* Border */
  --border: #263354;
  /* Text */
  --text-primary: #F8FAFC;
  --text-secondary: #AAB3C8;
  --text-muted: #707B96;
  --silver: #DCE1EA;
  /* Status */
  --success: #22C55E;
  --warning: #F59E0B;
  --error: #EF4444;
  --info: #3B82F6;

  --radius: 0;
  --font-mm: "Pyidaungsu", "Noto Sans Myanmar", "Padauk", "Myanmar Text", sans-serif;
  --font-display: "Montserrat", var(--font-mm);
  --shadow: 0 12px 32px rgba(2, 5, 14, .5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px; /* sticky header height + breathing room */
}

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-mm);
  /* Myanmar stacked glyphs need generous leading */
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

/* Fluid width: fills small screens, then grows with the viewport up to a
   readable cap instead of sticking at one fixed desktop column. */
.container {
  width: min(100%, clamp(900px, 82vw, 1440px));
  margin: 0 auto;
  padding: 0 clamp(14px, 2.5vw, 32px);
}

/* every page shares the same centred column width — no per-page caps */

.gold-text {
  background: linear-gradient(120deg, var(--primary), var(--primary-hover) 55%, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ═══ Buttons ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 0;
  padding: 12px 20px;
  font-family: var(--font-mm);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}
.btn:active { transform: scale(.97); }
.btn--gold {
  background: var(--primary);
  color: var(--bg-primary);
  box-shadow: 0 6px 18px rgba(240, 194, 75, .25);
}
.btn--gold:hover {
  background: var(--primary-hover);
  box-shadow: 0 8px 24px rgba(240, 194, 75, .35);
}
.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}
.btn--ghost:hover { color: var(--text-primary); border-color: var(--text-muted); }
.btn--outline {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-primary);
}
.btn--outline:hover { border-color: var(--primary); color: var(--primary-hover); }

/* ═══ Age gate ═══ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(3, 6, 14, .92);
  backdrop-filter: blur(8px);
}
.age-gate__card {
  max-width: 420px;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.age-gate__icon { font-size: 48px; margin-bottom: 12px; }
.age-gate__card h2 { font-size: 20px; margin-bottom: 10px; }
.age-gate__card p { color: var(--text-secondary); font-size: 14.5px; }
.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 22px;
}
.age-gate__blocked { margin-top: 16px; color: var(--error); font-weight: 600; }

/* ═══ Header ═══ */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(6, 11, 26, .88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo__icon {
  width: 46px;
  height: 46px;
  border-radius: 0;
  display: block;
}
.logo__wordmark {
  height: 36px;
  width: auto;
  display: block;
}
.btn-submit {
  flex: 0 0 auto;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid rgba(240, 194, 75, .5);
  background: rgba(240, 194, 75, .08);
  padding: 6px 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.btn-submit:hover { background: var(--primary); color: var(--bg-primary); }

.nav { display: flex; gap: 22px; margin-left: auto; margin-right: 18px; }
.nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  transition: color .15s;
}
.nav a:hover { color: var(--primary); }

/* ═══ Page head + toolbar ═══ */
.page-title {
  font-size: clamp(18px, 2.6vw, 22px);
  line-height: 1.8;
  color: var(--text-primary);
  padding-top: 28px;
}
.page-sub {
  color: var(--text-secondary);
  font-size: 12.5px;
  line-height: 1.9;
  margin-top: 2px;
}
.toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 22px 0 8px;
}
.toolbar .chips { flex: 0 1 auto; min-width: 0; }
.toolbar .sort { margin-left: auto; }

.search {
  position: relative;
  flex: 1 1 230px;
  max-width: 340px;
}
.search__icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  opacity: .7;
}
.search__input {
  width: 100%;
  padding: 8px 14px 8px 38px;
  border-radius: 0;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text-primary);
  font-family: var(--font-mm);
  font-size: 12.5px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.search__input::placeholder { color: var(--text-muted); }
.search__input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(240, 194, 75, .18);
}

/* ═══ Filters ═══ */
.chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
  /* fade the right edge so it reads as scrollable rather than clipped */
  -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 24px), transparent);
  mask-image: linear-gradient(to right, #000 calc(100% - 24px), transparent);
}
.chips::-webkit-scrollbar { display: none; }
.chip {
  flex: 0 0 auto;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text-secondary);
  border-radius: 0;
  padding: 6px 14px;
  font-family: var(--font-mm);
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
}
.chip:hover { color: var(--text-primary); border-color: var(--text-muted); }
.chip.is-active {
  background: rgba(240, 194, 75, .14);
  border-color: var(--primary);
  color: var(--primary-hover);
  font-weight: 600;
}
.sort {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.sort__label { font-size: 13px; color: var(--text-secondary); white-space: nowrap; }
.sort select {
  background: var(--card);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 7px 12px;
  font-family: var(--font-mm);
  font-size: 12.5px;
  cursor: pointer;
  outline: none;
}
.sort select:focus { border-color: var(--primary); }

.result-bar {
  display: flex;
  align-items: center;
  gap: 8px 12px;
  flex-wrap: wrap;
  padding: 8px 0 4px;
}
.result-count { color: var(--text-secondary); font-size: 12px; }
.result-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.rtag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mm);
  font-size: 11.5px;
  color: var(--primary-hover);
  background: rgba(240, 194, 75, .12);
  border: 1px solid rgba(240, 194, 75, .4);
  padding: 3px 9px;
  cursor: pointer;
  transition: background .15s;
}
.rtag:hover { background: rgba(240, 194, 75, .22); }
.rtag--all { color: var(--text-secondary); background: transparent; border-color: var(--border); }
.rtag--all:hover { color: var(--text-primary); border-color: var(--text-muted); background: transparent; }

/* ═══ Language toggle ═══ */
.header__right { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.lang {
  font-size: 12px;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 5px 10px;
  border: 1px solid var(--border);
  white-space: nowrap;
  transition: color .15s, border-color .15s;
}
.lang:hover { color: var(--primary); border-color: rgba(240, 194, 75, .5); }

/* ═══ Scam sites page ═══ */
.scam-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 14px;
  margin: 14px 0 32px;
}
.scam-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--error);
  padding: 18px;
  text-decoration: none;
  transition: background .18s, border-color .18s, transform .18s;
}
.scam-card:hover {
  background: rgba(239, 68, 68, .07);
  border-color: rgba(239, 68, 68, .5);
  border-left-color: var(--error);
  transform: translateY(-2px);
}
.scam-card__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.scam-card__date { font-size: 11px; color: var(--text-muted); margin-left: auto; }
.scam-card__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.6;
  color: var(--text-primary);
}
.scam-card__host {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 11.5px;
  color: #FCA5A5;
  word-break: break-all;
  background: rgba(239, 68, 68, .08);
  padding: 3px 7px;
  align-self: flex-start;
}
.scam-card__why {
  font-size: 12.5px;
  line-height: 1.95;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.scam-card__more { font-size: 12px; font-weight: 600; color: var(--primary); margin-top: auto; padding-top: 4px; }

.scam-empty {
  text-align: center;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 46px 20px;
  margin: 18px 0 30px;
}
.scam-empty__icon { font-size: 34px; margin-bottom: 10px; }
.scam-empty p { font-size: 13.5px; color: var(--text-secondary); }

.scam-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 16px 18px;
}
.scam-cta p { font-size: 13px; color: var(--text-secondary); }

/* ═══ Scam report detail ═══ */
.scam-url {
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 13px !important;
  color: #FCA5A5 !important;
  word-break: break-all;
  user-select: all;
}
.scam-url__note { font-size: 10.5px; color: var(--text-muted); margin-top: 4px; line-height: 1.7; }

/* ═══ Site table ═══ */
.table-wrap {
  margin: 10px 0 48px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: 0 4px 14px rgba(2, 5, 14, .25);
  overflow-x: auto;
}
.site-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
}
.site-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface);
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
}
.site-table td {
  padding: 9px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-secondary);
  vertical-align: middle;
}
.site-table tbody tr:last-child td { border-bottom: 0; }
.trow { cursor: pointer; transition: background .12s; }
.trow:hover { background: var(--surface); }
.t-site {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
}
.t-logo {
  /* sized to stand as tall as the name + badge stack beside it */
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  font-style: italic;
  color: var(--primary);
  background: var(--bg-primary);
  border: 1px solid var(--border);
}
/* name above, badges below — the logo tile is sized to match the pair */
.t-name-wrap { min-width: 0; }
.t-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .2px;
  color: var(--text-primary);
  text-decoration: none;
  white-space: nowrap;
}
.t-name:hover { color: var(--primary-hover); }
.t-badges { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 3px; }
.t-desc { color: var(--text-secondary); line-height: 1.9; }
/* clamp the inner span — a display change on the <td> itself would break the table */
.t-desc span {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.t-num { color: var(--text-primary); font-weight: 600; white-space: nowrap; }
.t-views { color: var(--text-muted); font-size: 12px; white-space: nowrap; }

/* ═══ Card grid ═══ */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 18px;
  padding: 12px 0 48px;
}
.card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 14px rgba(2, 5, 14, .25);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 194, 75, .5);
  box-shadow: var(--shadow);
}
.card__top {
  display: flex;
  align-items: center;
  gap: 14px;
}
.card__logo {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 21px;
  font-style: italic;
  color: var(--primary);
  background: var(--bg-primary);
  border: 1px solid var(--border);
}
.card__head { min-width: 0; flex: 1; }
.card__name-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.card__name {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .3px;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card__badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 3px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9.5px;
  font-weight: 700;
  border-radius: 0;
  padding: 1px 8px;
  letter-spacing: .4px;
}
.badge--hot { background: rgba(239, 68, 68, .16); color: #FCA5A5; }
.badge--new { background: rgba(34, 197, 94, .14); color: #4ADE80; }
.badge--scam { background: var(--error); color: #fff; letter-spacing: .6px; }

/* blue verified check at the name's top right */
.verify-ic {
  width: 13px;
  height: 13px;
  margin-left: 4px;
  vertical-align: text-top;
  flex: 0 0 auto;
}
.detail__name .verify-ic { width: 18px; height: 18px; margin-left: 6px; }

.card__bonus {
  background: rgba(240, 194, 75, .07);
  border: 1px dashed rgba(240, 194, 75, .35);
  border-radius: 0;
  padding: 10px 14px;
  font-size: 13px;
  color: var(--primary-hover);
  line-height: 1.6;
}
.card__bonus-line {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card__pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.pill {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--silver);
  background: var(--surface);
  border-radius: 0;
  padding: 4px 11px;
  white-space: nowrap;
}
.pay-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 0;
  padding: 3px 8px;
}
.empty {
  text-align: center;
  color: var(--text-secondary);
  padding: 48px 0 64px;
}

/* ═══ Section headings ═══ */
.section-title {
  text-align: center;
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.section-sub {
  text-align: center;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.9;
  margin-bottom: 30px;
}
.section-title--left, .section-sub--left { text-align: left; }

/* ═══ Criteria — numbered steps ═══ */
.criteria {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 0;
  margin-top: 8px;
}
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.step {
  position: relative;
  background: var(--bg-primary);
  padding: 22px 20px 24px;
  transition: background .18s;
}
.step:hover { background: var(--surface); }
.step__num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--primary);
  opacity: .75;
}
.step__icon { display: block; font-size: 22px; margin: 6px 0 10px; }
.step__title {
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.step__text { font-size: 12.5px; line-height: 1.95; color: var(--text-secondary); }

/* ═══ FAQ — two-column with sticky heading ═══ */
.faq { padding: 52px 0; }
.faq__inner {
  display: grid;
  grid-template-columns: minmax(200px, 300px) 1fr;
  gap: 34px;
  align-items: start;
}
.faq__head { position: sticky; top: 84px; }
.faq__head .section-sub { margin-bottom: 0; }
.faq__list { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); }
.faq__item { background: var(--card); }
.faq__item summary {
  cursor: pointer;
  padding: 15px 44px 15px 18px;
  font-weight: 600;
  font-size: 13.5px;
  line-height: 1.8;
  list-style: none;
  position: relative;
  color: var(--text-primary);
  transition: color .15s;
}
.faq__item summary:hover { color: var(--primary-hover); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 18px;
  font-weight: 400;
  transition: transform .2s;
}
.faq__item[open] summary { color: var(--primary-hover); }
.faq__item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq__answer {
  padding: 0 18px 18px;
  border-left: 2px solid var(--primary);
  margin-left: 18px;
}
.faq__answer p { color: var(--text-secondary); font-size: 13px; line-height: 2; }

/* ═══ Blog ═══ */
.posts { display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); margin: 20px 0 40px; }
.posts--compact { margin-bottom: 24px; }
.post-card {
  display: block;
  background: var(--card);
  padding: 22px 24px;
  text-decoration: none;
  transition: background .18s;
}
.post-card:hover { background: var(--surface); }
.post-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.post-card__dot { opacity: .6; }
.post-card__title {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.post-card:hover .post-card__title { color: var(--primary-hover); }
.post-card__excerpt { font-size: 13px; line-height: 1.95; color: var(--text-secondary); }
.post-card__more {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
}

/* ═══ Prose (blog post + legal) ═══ */
.prose { margin: 18px 0 32px; }
.prose__title {
  font-size: clamp(22px, 3.4vw, 30px);
  line-height: 1.65;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.prose__meta {
  font-size: 12px;
  color: var(--text-muted);
  padding-bottom: 18px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.prose p { font-size: 14px; line-height: 2.05; color: var(--silver); margin-bottom: 16px; }
.prose__h2 {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-primary);
  margin: 30px 0 12px;
  padding-left: 12px;
  border-left: 3px solid var(--primary);
}
.prose__ul { list-style: none; margin: 0 0 18px; }
.prose__ul li {
  position: relative;
  font-size: 13.5px;
  line-height: 2;
  color: var(--text-secondary);
  padding: 2px 0 2px 20px;
}
.prose__ul li::before { content: "—"; position: absolute; left: 0; color: var(--primary); opacity: .7; }
.prose__note {
  background: rgba(240, 194, 75, .07);
  border-left: 3px solid var(--primary);
  padding: 14px 18px;
  font-size: 13px !important;
  line-height: 1.95 !important;
  color: var(--text-secondary) !important;
  margin: 22px 0 !important;
}
.prose__back { margin-top: 8px; }
.prose__back a { color: var(--text-secondary); font-size: 13px; text-decoration: none; }
.prose__back a:hover { color: var(--primary); }

/* ═══ Footer ═══ */
.footer {
  border-top: 1px solid var(--border);
  background: var(--bg-primary);
  margin-top: 40px;
  padding: 26px 0;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.footer__top .logo__icon { width: 30px; height: 30px; }
.footer__top .logo__wordmark { height: 20px; }
.footer__links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer__links a {
  font-size: 12.5px;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color .15s;
}
.footer__links a:hover { color: var(--primary); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  flex-wrap: wrap;
  padding-top: 16px;
}
.footer__note {
  flex: 1 1 420px;
  font-size: 11.5px;
  line-height: 1.9;
  color: var(--text-muted);
}
.age-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: var(--error);
  border: 1px solid rgba(239, 68, 68, .5);
  padding: 0 5px;
  margin-right: 5px;
}
.footer__copy {
  flex: 0 0 auto;
  font-size: 11.5px;
  color: var(--text-muted);
}

/* ═══ Detail page ═══ */
.detail { padding-bottom: 56px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 0 4px;
  font-size: 13px;
  color: var(--text-secondary);
}
.breadcrumb a { color: var(--text-secondary); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb__sep { color: var(--text-muted); }
.breadcrumb span:last-child { color: var(--text-primary); font-weight: 600; }

.detail__head {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 18px 0 6px;
}
.detail__logo { width: 76px; height: 76px; font-size: 32px; border-radius: 0; }
.detail__head-info { min-width: 0; }
.detail__name {
  font-family: var(--font-display);
  font-size: clamp(24px, 4.5vw, 32px);
  letter-spacing: .3px;
  line-height: 1.5;
  color: var(--text-primary);
}
.detail__tagline { color: var(--text-secondary); font-size: 14px; margin: 6px 0 10px; line-height: 1.9; }
.detail__bonus { margin: 16px 0 6px; font-size: 14px; padding: 14px 16px; }
.detail__h2 {
  font-size: 18px;
  margin: 30px 0 12px;
  line-height: 1.8;
  color: var(--text-primary);
}
.grid--related { padding-top: 4px; padding-bottom: 0; }

.m-desc { font-size: 14px; color: var(--silver); margin: 6px 0 4px; line-height: 2; }

.m-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin: 18px 0;
}
.m-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 12px 14px;
}
.m-stat__label { font-size: 11.5px; color: var(--text-secondary); margin-bottom: 2px; }
.m-stat__value { font-size: 14.5px; font-weight: 700; color: var(--text-primary); }

.m-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 18px 0;
}
.m-col {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 14px 16px;
}
.m-col h4 { font-size: 13.5px; margin-bottom: 8px; }
.m-col--pros h4 { color: var(--success); }
.m-col--cons h4 { color: #FCA5A5; }
.m-col ul { list-style: none; }
.m-col li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 3px 0 3px 20px;
  position: relative;
}
.m-col--pros li::before { content: "✓"; position: absolute; left: 0; color: var(--success); }
.m-col--cons li::before { content: "✕"; position: absolute; left: 0; color: #FCA5A5; }

.m-pays { display: flex; gap: 8px; flex-wrap: wrap; margin: 14px 0 20px; }
.m-cta { display: flex; gap: 12px; }
.m-cta .btn { flex: 1; }
.m-note {
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-secondary);
  text-align: center;
}

/* ═══ Submit form + admin ═══ */
.form {
  margin: 20px 0 56px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 24px;
  display: grid;
  gap: 16px;
}
.form--narrow { max-width: 380px; }
.field { display: grid; gap: 6px; }
.field label { font-size: 12.5px; font-weight: 600; color: var(--text-secondary); }
/* text inputs only — checkboxes must keep their intrinsic size */
.field input:not([type="checkbox"]),
.field textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-mm);
  font-size: 13px;
  padding: 9px 12px;
  outline: none;
  transition: border-color .15s;
}
.field input:focus,
.field textarea:focus { border-color: var(--primary); }
.field textarea { resize: vertical; line-height: 1.9; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.checks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px 14px;
}
.check {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text-secondary);
  cursor: pointer;
  white-space: nowrap; /* keep "Wave Money" on one line */
  min-width: 0;
}
.check input {
  flex: 0 0 auto;
  width: 15px;
  height: 15px;
  padding: 0;
  accent-color: var(--primary);
  margin: 0;
}
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* submit type switch — listing vs scam report */
.kind-switch { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.kind-opt { cursor: pointer; }
.kind-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.kind-opt__box {
  display: block;
  border: 1px solid var(--border);
  background: var(--bg-primary);
  padding: 12px 14px;
  transition: border-color .15s, background .15s;
}
.kind-opt__box strong { display: block; font-size: 13px; color: var(--text-primary); }
.kind-opt__box em {
  display: block;
  font-style: normal;
  font-size: 11.5px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-top: 2px;
}
.kind-opt input:checked + .kind-opt__box { border-color: var(--primary); background: rgba(240, 194, 75, .08); }
.kind-opt--scam input:checked + .kind-opt__box { border-color: var(--error); background: rgba(239, 68, 68, .08); }
.kind-opt input:focus-visible + .kind-opt__box { outline: 2px solid var(--primary); outline-offset: 2px; }
/* a scam report does not need bonus/deposit/payment details */
#submitForm[data-kind="scam"] .listing-only { display: none; }

/* scam sites table */
.scam-table .t-logo--scam { color: #FCA5A5; border-color: rgba(239, 68, 68, .4); background: rgba(239, 68, 68, .08); }
.trow--scam:hover { background: rgba(239, 68, 68, .06); }
.scam-host { display: block; font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.nav__warn { color: #FCA5A5 !important; }
.nav__warn:hover { color: var(--error) !important; }
.notice {
  margin-top: 16px;
  padding: 12px 16px;
  font-size: 13px;
  line-height: 1.9;
  border: 1px solid var(--border);
}
.notice--ok { background: rgba(34, 197, 94, .1); border-color: rgba(34, 197, 94, .4); color: #4ADE80; }
.notice--err { background: rgba(239, 68, 68, .1); border-color: rgba(239, 68, 68, .4); color: #FCA5A5; }

/* ═══ Community feedback ═══ */
.community { margin-top: 34px; }
.fb-list { list-style: none; display: grid; gap: 1px; background: var(--border); border: 1px solid var(--border); margin-bottom: 22px; }
.fb-item { background: var(--card); padding: 14px 16px; }
.fb-item--scam { background: rgba(239, 68, 68, .06); }
.fb-item__head { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
.fb-item__who { font-size: 13px; font-weight: 700; color: var(--text-primary); }
.fb-item__date { font-size: 11px; color: var(--text-muted); margin-left: auto; }
.fb-item__body { font-size: 13px; line-height: 1.95; color: var(--text-secondary); }

.fb-form, .fb-login {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 18px;
  display: grid;
  gap: 12px;
}
.fb-form__who { font-size: 12.5px; color: var(--text-secondary); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.fb-logout {
  font-family: var(--font-mm);
  font-size: 11.5px;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border);
  padding: 3px 9px;
  cursor: pointer;
}
.fb-logout:hover { color: var(--text-primary); border-color: var(--text-muted); }
.fb-kinds { display: flex; gap: 18px; flex-wrap: wrap; }
.fb-kinds .check input { accent-color: var(--primary); }
.fb-form textarea {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-mm);
  font-size: 13px;
  line-height: 1.9;
  padding: 10px 12px;
  outline: none;
  resize: vertical;
}
.fb-form textarea:focus { border-color: var(--primary); }
.fb-form .btn { justify-self: start; }
.fb-login p { font-size: 13px; line-height: 1.95; color: var(--text-secondary); }

.pager { display: flex; gap: 6px; padding: 10px 0 4px; }
.pg {
  min-width: 30px;
  text-align: center;
  font-size: 12px;
  padding: 5px 9px;
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--text-secondary);
  text-decoration: none;
}
.pg:hover { border-color: var(--primary); color: var(--primary); }
.pg--on { background: rgba(240, 194, 75, .14); border-color: var(--primary); color: var(--primary-hover); font-weight: 600; }

.admin-table td { vertical-align: top; }
.a-name { font-weight: 700; color: var(--text-primary); font-size: 13px; }
.a-url { font-size: 11.5px; color: var(--info); word-break: break-all; text-decoration: none; }
.a-url:hover { text-decoration: underline; }
.a-sub { font-size: 11.5px; color: var(--text-secondary); line-height: 1.9; max-width: 300px; }
.a-actions { display: flex; flex-direction: column; gap: 6px; }
.a-actions .btn { padding: 6px 12px; font-size: 12px; }

/* ═══ Responsive ═══ */
@media (max-width: 900px) {
  .faq__inner { grid-template-columns: 1fr; gap: 20px; }
  .faq__head { position: static; }
}

.lang__short, .btn-submit__short { display: none; }

@media (max-width: 720px) {
  .nav { display: none; }
  .header__inner { height: 58px; gap: 8px; }
  .header__right { margin-left: auto; gap: 6px; }
  /* keep the header on one line: short language code, compact CTA */
  .lang__full { display: none; }
  .lang__short { display: inline; }
  /* language toggle and submit CTA must line up as one control pair */
  .lang, .btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 4px; /* inline-flex collapses the literal space between icon and label */
    height: 32px;
    padding: 0 10px;
    font-size: 11.5px;
    line-height: 1;
  }
  .btn-submit__label { display: none; }
  .btn-submit__short { display: inline; }
  .logo__icon { width: 34px; height: 34px; }
  .logo__wordmark { height: 22px; }

  .page-title { padding-top: 20px; }
  .toolbar { padding: 16px 0 6px; gap: 8px; }
  .field-row { grid-template-columns: 1fr; }
  .prose { margin-top: 10px; }
  .prose__title { line-height: 1.7; }
  .prose p { font-size: 13.5px; }
  .post-card { padding: 18px 16px; }
  .scam-card { padding: 15px 16px; }
  .scam-cta { flex-direction: column; align-items: stretch; text-align: center; }
  .m-stats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .m-stat { padding: 10px 12px; }
  .fb-form, .fb-login { padding: 15px 16px; }
  .footer__top { gap: 12px; }
  .footer__links { gap: 12px 16px; font-size: 12px; }
  .m-cols { grid-template-columns: 1fr; }
  .m-cta { flex-direction: column; }
  .detail__head { flex-direction: row; gap: 14px; }
  .detail__logo { width: 60px; height: 60px; font-size: 26px; }
  .age-gate__actions { gap: 8px; }

  .container { padding: 0 16px; }
  /* toolbar stacks: full-width search, scrollable chips, full-width sort */
  .search { flex: 1 1 100%; max-width: none; }
  .toolbar .chips { flex: 1 1 auto; }
  .toolbar .sort { margin-left: 0; flex: 1 1 100%; }
  .sort select { width: 100%; }

  /* table rows become stacked cards — no horizontal scrolling */
  .site-table { display: block; min-width: 0; }
  .site-table thead { display: none; }
  .site-table tbody { display: block; }
  .site-table .trow {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 8px 10px;
    padding: 15px 16px;
    border-bottom: 1px solid var(--border);
  }
  .site-table .trow:last-child { border-bottom: 0; }
  .site-table td { display: block; padding: 0; border-bottom: 0; }
  .site-table td.t-site {
    display: flex;
    align-items: center;
    grid-row: 1;
    grid-column: 1 / -1;
    min-width: 0;
  }
  .site-table td.t-site { grid-column: 1; }
  /* views sits at the row's top right, opposite the site name */
  .t-views {
    grid-row: 1;
    grid-column: 2;
    justify-self: end;
    align-self: start;
    font-size: 11.5px;
  }
  .t-desc { grid-row: 2; grid-column: 1 / -1; }
  /* deposit and payout live on the detail page — the phone list stays to
     name, type and bonus so each row is scannable in one glance */
  .site-table td.t-deposit, .site-table td.t-payout { display: none; }
  .t-logo { width: 50px; height: 50px; }
}

/* ═══ Site-type tabs + tag ═══ */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-top: 16px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs::-webkit-scrollbar { display: none; }
.tab {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  color: var(--text-secondary);
  font-family: var(--font-mm);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  margin-bottom: -1px;
  cursor: pointer;
  white-space: nowrap;
  transition: color .15s, border-color .15s;
}
.tab:hover { color: var(--text-primary); }
.tab.is-active { color: var(--primary); border-bottom-color: var(--primary); }
.tab__count {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 800;
  color: var(--text-muted);
  background: var(--surface);
  padding: 1px 7px;
}
.tab.is-active .tab__count { color: var(--bg-primary); background: var(--primary); }

.type-tag {
  display: inline-flex;
  align-items: center;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .4px;
  padding: 1px 7px;
  border: 1px solid;
}
.type-tag--direct { color: #8ab4ff; border-color: rgba(59, 130, 246, .45); background: rgba(59, 130, 246, .1); }
.type-tag--agent { color: #F5C563; border-color: rgba(245, 158, 11, .5); background: rgba(245, 158, 11, .12); }

.kind-switch--type { grid-template-columns: 1fr 1fr; }

@media (max-width: 720px) {
  .tab { padding: 9px 12px; font-size: 12.5px; }
  .kind-switch, .kind-switch--type { grid-template-columns: 1fr; }
}

/* ═══ Submit form — stepped fieldsets ═══ */
.form {
  margin: 22px 0 56px;
  background: transparent;
  border: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}
.fset {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 22px 24px 24px;
  display: grid;
  gap: 14px;
}
.fset__legend {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  padding: 0 10px 0 0;
  margin-left: -2px;
}
.fset__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: var(--bg-primary);
  background: var(--primary);
}
.fset__hint { font-size: 11.5px; line-height: 1.85; color: var(--text-muted); }

.opt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.opt { cursor: pointer; }
.opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.opt__box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  height: 100%;
  border: 1px solid var(--border);
  background: var(--bg-primary);
  padding: 14px 16px;
  transition: border-color .15s, background .15s;
}
.opt__icon { font-size: 20px; line-height: 1.4; flex: 0 0 auto; }
.opt__text { min-width: 0; flex: 1; }
.opt__text strong { display: block; font-size: 13.5px; line-height: 1.7; color: var(--text-primary); }
.opt__text em {
  display: block;
  font-style: normal;
  font-size: 11.5px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-top: 2px;
}
.opt__mark {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  border: 1px solid var(--border);
  border-radius: 50%;
  position: relative;
}
.opt input:checked + .opt__box { border-color: var(--primary); background: rgba(240, 194, 75, .08); }
.opt input:checked + .opt__box .opt__mark { border-color: var(--primary); }
.opt input:checked + .opt__box .opt__mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--primary);
}
.opt--danger input:checked + .opt__box { border-color: var(--error); background: rgba(239, 68, 68, .08); }
.opt--danger input:checked + .opt__box .opt__mark { border-color: var(--error); }
.opt--danger input:checked + .opt__box .opt__mark::after { background: var(--error); }
.opt input:focus-visible + .opt__box { outline: 2px solid var(--primary); outline-offset: 2px; }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field__hint { font-size: 11.5px; line-height: 1.8; color: var(--text-muted); }

.form__foot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.form__foot .btn { padding: 13px 30px; }
.form__foot .m-note { margin: 0; text-align: left; flex: 1 1 200px; }

/* the two modes never show each other's fields */
#submitForm[data-kind="scam"] .listing-only,
#submitForm[data-kind="scam"] .listing-only-inline,
#submitForm[data-kind="listing"] .scam-only-inline { display: none; }

@media (max-width: 720px) {
  .fset { padding: 18px 16px 20px; }
  .opt-grid, .field-grid { grid-template-columns: 1fr; }
  .form__foot { flex-direction: column; align-items: stretch; }
  .form__foot .btn { width: 100%; }
}

.admin-bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.admin-bar .btn { padding: 8px 16px; font-size: 13px; }

/* ═══ Mobile scam-list shortcut ═══
   The header nav is hidden on phones, so the scam list gets its own
   large touch target on the home page. */
.alert-cta { display: none; }

@media (max-width: 720px) {
  .alert-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(239, 68, 68, .45);
    border-left: 3px solid var(--error);
    background: rgba(239, 68, 68, .08);
    text-decoration: none;
  }
  .alert-cta:active { background: rgba(239, 68, 68, .16); }
  .alert-cta__icon { font-size: 22px; flex: 0 0 auto; }
  .alert-cta__text { flex: 1; min-width: 0; }
  .alert-cta__text strong {
    display: block;
    font-size: 14px;
    line-height: 1.7;
    color: #FCA5A5;
  }
  .alert-cta__text em {
    display: block;
    font-style: normal;
    font-size: 11.5px;
    line-height: 1.8;
    color: var(--text-secondary);
  }
  .alert-cta__arrow { flex: 0 0 auto; font-size: 18px; color: #FCA5A5; }
}

.tel-link { color: var(--primary-hover); text-decoration: none; }
.tel-link:hover { text-decoration: underline; }

/* ═══ Admin sign-in ═══ */
.auth {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
}
.auth__card {
  width: 100%;
  max-width: 380px;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 34px 30px 28px;
  text-align: center;
  box-shadow: 0 18px 44px rgba(2, 5, 14, .45);
}
.auth__logo { display: block; margin: 0 auto 16px; }
.auth__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .4px;
  color: var(--text-primary);
}
.auth__sub { font-size: 12.5px; color: var(--text-muted); margin-top: 4px; }
.auth__msg {
  font-size: 12.5px;
  line-height: 1.8;
  padding: 10px 12px;
  margin-top: 18px;
  border: 1px solid;
}
.auth__msg--err { color: #FCA5A5; border-color: rgba(239, 68, 68, .45); background: rgba(239, 68, 68, .1); }
.auth__form { display: grid; gap: 14px; margin-top: 22px; text-align: left; }
.auth__field { display: grid; gap: 6px; }
.auth__field label { font-size: 12px; font-weight: 600; color: var(--text-secondary); }
.auth__field input {
  width: 100%;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-mm);
  font-size: 13.5px;
  padding: 11px 13px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.auth__field input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(240, 194, 75, .16);
}
.auth__submit { width: 100%; margin-top: 4px; padding: 13px; }
.auth__back {
  display: inline-block;
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-muted);
  text-decoration: none;
}
.auth__back:hover { color: var(--primary); }

/* ═══ Admin: direct add-site form ═══ */
.admin-new {
  border: 1px solid var(--border);
  background: var(--card);
  margin: 18px 0 8px;
}
.admin-new > summary {
  cursor: pointer;
  padding: 14px 18px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--primary);
  list-style: none;
}
.admin-new > summary::-webkit-details-marker { display: none; }
.admin-new[open] > summary { border-bottom: 1px solid var(--border); }
.admin-form { display: grid; gap: 14px; padding: 18px; }
.admin-form select {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-mm);
  font-size: 13px;
  padding: 9px 12px;
  outline: none;
}
.admin-form select:focus { border-color: var(--primary); }
.admin-form textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-primary);
  font-family: var(--font-mm);
  font-size: 13px;
  line-height: 1.9;
  padding: 10px 12px;
  outline: none;
  resize: vertical;
}
.admin-form textarea:focus { border-color: var(--primary); }
.admin-form .btn { justify-self: start; }
.admin-new .notice { margin: 14px 18px 0; }
