/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 18px;
  border-radius: var(--radius);
  background: var(--surface-2);
  color: var(--text);
  border: 1px solid var(--border-strong);
  font-weight: 600; font-size: 14px;
  transition: transform var(--t-fast), background var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  text-decoration: none;
  min-height: 42px;
  white-space: nowrap;
  touch-action: manipulation;            /* mobilde çift-dokunuş zoom YOK */
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { background: var(--surface-3); border-color: var(--text-soft); text-decoration: none; }
.btn:active { transform: scale(.98); }
.btn:disabled { opacity: .5; cursor: not-allowed; }
.btn svg { width: 16px; height: 16px; }
.btn-sm { padding: 7px 12px; min-height: 32px; font-size: 13px; }
.btn-xs { padding: 4px 8px; min-height: 26px; font-size: 12px; gap: 4px; }
.btn-lg { padding: 14px 24px; min-height: 50px; font-size: 16px; }
.btn-primary {
  background: var(--accent); color: #0a0a0a; border-color: var(--accent);
  box-shadow: var(--accent-glow);
}
.btn-primary:hover { background: var(--accent-2); border-color: var(--accent-2); }
.btn-success { background: var(--success); color: #fff; border-color: var(--success); }
.btn-success:hover { background: #16a34a; }
.btn-danger { background: var(--danger); color: #fff; border-color: var(--danger); }
.btn-danger:hover { background: #dc2626; }
.btn-ghost { background: transparent; border-color: transparent; color: var(--text-muted); }
.btn-ghost:hover { background: var(--surface-2); color: var(--text); border-color: var(--border); }
.btn-outline { background: transparent; }
.btn-block { width: 100%; }

/* ============ Surface card ============ */
.surface {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.surface-pad { padding: 20px; }
.surface-hover { transition: border-color var(--t-fast), transform var(--t-fast); }
.surface-hover:hover { border-color: var(--border-strong); }

/* ============ Entry card (list) ============ */
.entry-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  align-items: start;
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  position: relative;
  overflow: hidden;
}
/* Profil resminin renklerinden yumuşak arka plan aurası — avatardan
   (sol) sağa solar. KASMA ÖNLEMİ: hover'da AURA DEĞİŞMEZ (animasyon yok);
   hafif blur tek seferde KENDİ GPU katmanına rasterize edilir (translateZ)
   → kart hover'ı (gölge/transform) auranın blur'unu yeniden hesaplatmaz. */
.entry-card::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: var(--cardimg);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 120%;
  filter: blur(16px) saturate(1.3);
  opacity: .12;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.38) 28%, transparent 58%);
          mask-image: linear-gradient(90deg, #000 0%, rgba(0,0,0,.38) 28%, transparent 58%);
  transform: translateZ(0);
  backface-visibility: hidden;
}
.entry-card:not([style*="--cardimg"])::before { display: none; }
.entry-card > * { position: relative; z-index: 1; }
@media (min-width: 760px) {
  .feed-grid .entry-card:nth-child(even)::before,
  .trx-cols  .entry-card:nth-child(even)::before,
  .tn-grid   .entry-card:nth-child(even)::before {
    background-position: right center;
    -webkit-mask-image: linear-gradient(270deg, #000 0%, rgba(0,0,0,.38) 28%, transparent 58%);
            mask-image: linear-gradient(270deg, #000 0%, rgba(0,0,0,.38) 28%, transparent 58%);
  }
}
.entry-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.entry-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--surface-2);
  object-fit: cover;
  border: 1px solid var(--border);
}
.entry-body { min-width: 0; }
.entry-title-row { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.entry-name {
  font-size: 15px; font-weight: 700; color: var(--text);
  line-height: 1.2;
}
.entry-handle { color: var(--text-soft); font-size: 13px; font-family: var(--font-mono); }
.entry-cat {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 600;
  padding: 2px 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-muted);
}
/* Kategori: kartın ALT'ında tüm genişlikte ince şerit, ortada yazı, soft renk.
   .entry-card grid (56px 1fr auto) → 1/-1 ile tam satır; -16px ile kart
   kenarlarına taşar; üstte ince ayraç çizgisi. */
.entry-catbar {
  grid-column: 1 / -1;
  margin: 2px -16px -16px;
  padding: 9px 12px;
  border-top: 1px solid var(--border);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  text-align: center;
  font-size: 11px; font-weight: 600; letter-spacing: .4px;
  color: var(--text-soft);
}
.entry-bio {
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-muted);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}
.entry-meta {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 8px;
  font-size: 12px; color: var(--text-soft);
  align-items: center;
}
.entry-meta strong { color: var(--text-muted); font-weight: 600; }
.entry-side {
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
}

.score-chip {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 12px;
  border-radius: var(--radius-md);                                  /* az oval, kart köşesi gibi */
  font-weight: 700; font-size: 14px;
  background: color-mix(in srgb, var(--success) 18%, var(--surface));
  color: var(--success);
  border: 1px solid color-mix(in srgb, var(--success) 42%, transparent);
  min-width: 60px; justify-content: center;
}
.score-chip.neg {
  background: color-mix(in srgb, var(--danger) 18%, var(--surface));
  color: var(--danger);
  border-color: color-mix(in srgb, var(--danger) 42%, transparent);
}
.score-chip.zero {
  background: var(--surface-2); color: var(--text-muted);
  border-color: var(--border);
}
.score-chip.lg { font-size: 18px; padding: 8px 16px; }

.trend {
  display: inline-flex; align-items: center; gap: 2px;
  font-size: 11px; font-weight: 600; padding: 1px 5px;
  border-radius: var(--radius-xs);
}
.trend.up { color: var(--success); background: var(--success-soft); }
.trend.dn { color: var(--danger); background: var(--danger-soft); }

/* Tag chips */
.tag-chip {
  display: inline-flex; align-items: center;
  font-size: 11px; font-weight: 600;
  padding: 2px 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  text-decoration: none;
  transition: background var(--t-fast);
}
.tag-chip:hover { background: var(--surface-3); color: var(--text); }
.tag-chip[data-color] { border-color: var(--tag-color, var(--border)); color: var(--tag-color); }

/* ============ Side widget ============ */
.widget {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
}
.widget-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.widget-head h3 { margin: 0; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); }
.widget-head a { font-size: 12px; color: var(--text-soft); }
.widget-head a:hover { color: var(--accent); }
.widget-list { display: flex; flex-direction: column; gap: 10px; }
.widget-row {
  display: flex; gap: 10px; align-items: center;
  text-decoration: none; color: inherit;
  padding: 6px; margin: -6px; border-radius: var(--radius-xs);
  transition: background var(--t-fast);
}
.widget-row:hover { background: var(--surface-2); }
.widget-row img { width: 32px; height: 32px; border-radius: 50%; background: var(--surface-2); }
.widget-row .body { flex: 1; min-width: 0; }
.widget-row .body strong { font-size: 13px; display: block; }
.widget-row .body small { font-size: 11px; color: var(--text-soft); }
.widget-row .side { font-size: 12px; font-weight: 700; }

/* ===== Öne Çıkanlar (sponsorlu) widget ===== */
.feat-widget {
  border-color: color-mix(in srgb, var(--accent) 35%, transparent);
  background: linear-gradient(180deg, var(--accent-soft), transparent 60%), var(--surface);
}
.feat-widget .widget-head h3 { color: var(--accent); }
.feat-tag {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px;
  color: var(--accent); background: var(--accent-soft);
  padding: 3px 8px; border-radius: var(--radius-pill);
}
.feat-row img { width: 38px; height: 38px; }
.feat-badge {
  flex-shrink: 0; font-size: 10px; font-weight: 700;
  color: #0a0a0a; background: var(--accent);
  padding: 3px 8px; border-radius: var(--radius-pill); white-space: nowrap;
}
.feat-cta {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  width: 100%; margin-top: 12px; padding: 9px;
  background: transparent; color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
  border-radius: var(--radius); font-weight: 600; font-size: 12.5px;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.feat-cta svg { width: 14px; height: 14px; opacity: .9; }
.feat-cta:hover { background: var(--accent-soft); border-color: color-mix(in srgb, var(--accent) 45%, transparent); }

.lvl-badge { object-fit: contain; vertical-align: middle; flex-shrink: 0; }

/* ============ Comment ============ */
.cmt {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-bottom: 10px;
}
.cmt-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-soft);
  margin-bottom: 6px;
}
.cmt-head .name { color: var(--text); font-weight: 600; font-size: 13px; }
.cmt-head .lvl { color: var(--text-soft); }
.cmt-head .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-soft); }
.cmt-head .score { margin-left: auto; font-weight: 700; }
.cmt-body { font-size: 14px; line-height: 1.6; white-space: pre-wrap; word-break: break-word; }
.cmt-foot {
  display: flex; gap: 4px; margin-top: 10px;
  font-size: 12px; color: var(--text-soft);
  align-items: center;
  flex-wrap: wrap;
}
.cmt-foot button {
  background: transparent; padding: 4px 8px;
  border-radius: var(--radius-xs);
  color: var(--text-soft);
  transition: color var(--t-fast), background var(--t-fast);
  font-size: 12px;
}
.cmt-foot button:hover { color: var(--text); background: var(--surface-2); }
.cmt-foot button.active { color: var(--accent); background: var(--accent-soft); }
.cmt-foot .btc {
  margin-left: auto; font-family: var(--font-mono); font-size: 11px; color: var(--text-soft);
}

/* Reaction bar */
.rx-bar { display: inline-flex; gap: 2px; }
.rx-bar button {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 8px; border-radius: var(--radius-pill);
  background: var(--surface-2); border: 1px solid var(--border);
  font-size: 12px;
}
.rx-bar button.on { background: var(--accent-soft); border-color: var(--accent); color: var(--accent); }
.rx-bar svg { width: 12px; height: 12px; }

/* ============ Skeleton ============ */
.skel {
  background: linear-gradient(90deg, var(--surface-2) 25%, var(--surface-3) 50%, var(--surface-2) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.6s ease-in-out infinite;
  border-radius: var(--radius);
}
.skel-line { height: 12px; margin: 4px 0; }
.skel-line.w-half { width: 50%; }

/* ============ Toast ============ */
.toast-host {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 1000; pointer-events: none;
  display: flex; flex-direction: column; gap: 8px; align-items: center;
}
.toast {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  padding: 12px 18px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  font-size: 14px;
  animation: fadeIn var(--t-base);
  display: flex; align-items: center; gap: 8px;
  pointer-events: auto;
}
.toast.ok { border-color: var(--success); }
.toast.err { border-color: var(--danger); }

/* ============ Dropdown / Menu ============ */
.menu {
  position: absolute;
  top: calc(100% + 8px); right: 0;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  padding: 6px;
  display: none;
  z-index: 200;
}
.menu.open { display: block; animation: fadeIn var(--t-fast); }
.menu a, .menu button {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 12px;
  border-radius: var(--radius-xs);
  color: var(--text);
  font-size: 14px;
  width: 100%;
  text-align: left;
}
.menu a:hover, .menu button:hover { background: var(--surface-2); text-decoration: none; }
.menu hr { margin: 6px 0; border-color: var(--border); }
.menu .menu-head {
  padding: 12px;
  display: flex; flex-direction: column; gap: 2px;
}
.menu .menu-head b { font-weight: 700; }
.menu .menu-head small { color: var(--text-soft); }

/* Notification badge dot */
.dot-badge {
  position: absolute; top: 8px; right: 8px;
  width: 8px; height: 8px;
  background: var(--danger);
  border-radius: 50%;
  border: 2px solid var(--bg);
}

/* ============ Search overlay ============ */
.search-overlay {
  position: fixed; inset: 0;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  z-index: 300;
  display: none;
  align-items: flex-start; justify-content: center;
  padding-top: 11vh;
}
.search-overlay.open { display: flex; animation: fadeIn var(--t-fast); }
.search-box {
  width: min(620px, 92vw);
  display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: srBoxIn .2s cubic-bezier(.2,1,.3,1);
}
@keyframes srBoxIn { from { opacity:0; transform: translateY(-10px) scale(.985); } to { opacity:1; transform:none; } }
.search-input-wrap { display: flex; align-items: center; padding: 14px 16px; border-bottom: 1px solid var(--border); gap: 11px; flex-shrink: 0; }
.search-input-wrap svg { width: 18px; height: 18px; color: var(--text-soft); flex-shrink: 0; }
.search-input-wrap input { flex: 1; min-width: 0; border: 0; padding: 0; background: transparent; font-size: 15px; color: var(--text); }
.search-input-wrap input:focus { box-shadow: none; outline: none; }
.search-x {
  width: 34px; height: 34px; flex-shrink: 0; display: grid; place-items: center;
  border-radius: var(--radius-pill); border: 1px solid var(--border);
  background: var(--surface-2); color: var(--text-muted); cursor: pointer;
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
}
.search-x:hover { color: var(--text); border-color: var(--border-strong); background: var(--surface-3); }
.search-results { max-height: 62vh; overflow-y: auto; padding: 6px; overscroll-behavior: contain; }
.search-result {
  display: flex; gap: 11px; padding: 9px 12px;
  border-radius: var(--radius); color: var(--text); text-decoration: none;
  align-items: center;
}
.search-result:hover, .search-result.active { background: var(--surface-2); }
.search-result img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover;
  background: var(--surface-2); border: 1px solid var(--border); flex-shrink: 0; }
.search-result .sr-main { min-width: 0; flex: 1; }
.search-result strong { display: block; font-size: 14px; font-weight: 700;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.search-result .meta { font-size: 12px; color: var(--text-soft);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.search-result .sr-sc { flex-shrink: 0; font-size: 12px; font-weight: 800;
  padding: 3px 9px; border-radius: var(--radius-pill); font-variant-numeric: tabular-nums; border: 1px solid; }
.search-result .sr-sc.p { color: var(--success); background: var(--success-soft); border-color: color-mix(in srgb,var(--success) 32%,transparent); }
.search-result .sr-sc.n { color: var(--danger);  background: var(--danger-soft);  border-color: color-mix(in srgb,var(--danger) 32%,transparent); }
.search-result .sr-sc.z { color: var(--text-muted); background: var(--surface-2); border-color: var(--border); }
.search-empty { padding: 36px 24px; text-align: center; color: var(--text-soft); font-size: 13.5px; }
.sr-spin { display: inline-block; width: 13px; height: 13px; vertical-align: -2px;
  border: 2px solid var(--border-strong); border-top-color: var(--accent);
  border-radius: 50%; animation: srSpin .7s linear infinite; }
@keyframes srSpin { to { transform: rotate(360deg); } }
/* MOBİL: tam ekran arama sayfası (klavye dostu) — masaüstü: ortalı modal */
@media (max-width: 640px) {
  .search-overlay { padding-top: 0; align-items: stretch; -webkit-backdrop-filter: none; backdrop-filter: none; background: var(--bg); }
  .search-box { width: 100%; max-width: none; height: 100dvh; border: 0; border-radius: 0; box-shadow: none; animation: fadeIn var(--t-fast); }
  .search-input-wrap { padding: 14px 14px; }
  .search-input-wrap input { font-size: 16px; }   /* iOS zoom engeli */
  .search-results { max-height: none; flex: 1; padding: 6px 6px 24px; }
  .search-result { padding: 12px; }
}

/* ============ Tabs ============ */
.tabs { display: flex; gap: 4px; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.tabs a, .tabs button {
  padding: 10px 16px;
  font-weight: 600; font-size: 14px;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.tabs a:hover, .tabs button:hover { color: var(--text); text-decoration: none; }
.tabs a.active, .tabs button.active { color: var(--accent); border-color: var(--accent); }

/* ============ Avatar group ============ */
.avatar-stack { display: inline-flex; }
.avatar-stack img {
  width: 24px; height: 24px; border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -8px;
}
.avatar-stack img:first-child { margin-left: 0; }

/* ============ Form helper ============ */
.field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 12px; }
.field label { font-size: 13px; font-weight: 500; color: var(--text-muted); }
.field .hint { font-size: 12px; color: var(--text-soft); }
.field .err  { font-size: 12px; color: var(--danger); }

/* ============ Empty state ============ */
.empty {
  text-align: center; padding: 48px 20px;
  color: var(--text-soft); font-size: 14px;
  border: 1px dashed var(--border);
  border-radius: var(--radius-md);
}

/* ============ Progress bar ============ */
.progress {
  height: 6px;
  background: var(--surface-2);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.progress > span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--success), var(--accent));
  border-radius: inherit;
  transition: width var(--t-slow);
}

/* ============ Loader ============ */
.loader {
  width: 16px; height: 16px;
  border: 2px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin .8s linear infinite;
  display: inline-block;
}

/* ============ Radar ============ */
.radar { width: 100%; aspect-ratio: 1; }

/* Doğrulama rozeti */
.vbadge{display:inline-flex;vertical-align:middle;margin-left:6px;line-height:0;}
.vbadge svg{filter:drop-shadow(0 0 4px color-mix(in srgb, var(--accent) 55%, transparent));}
.verify-note{display:inline-flex;align-items:center;gap:6px;font-size:12px;font-weight:600;color:var(--accent);background:var(--accent-soft);border:1px solid color-mix(in srgb, var(--accent) 30%, transparent);padding:4px 10px;border-radius:var(--radius-pill);margin-top:8px;}

/* Flash banner */
.flash-banner{display:flex;align-items:center;gap:10px;background:var(--success-soft);color:var(--success);border:1px solid color-mix(in srgb, var(--success) 40%, transparent);padding:13px 16px;border-radius:var(--radius-md);font-size:14px;font-weight:600;animation:fadeIn var(--t-base) both;}

/* Madalya rozeti — ilk 3 fenomen (avatarın köşesinde, minimal, bağlama göre boyut) */
.av-wrap{position:relative;display:inline-flex;flex-shrink:0;vertical-align:middle;}
.av-wrap>img:not(.medal){display:block;border:2px solid var(--border);}
/* Madalya: dairesel avatarın SAĞ-ALT yayına otururur (fotoğrafın ÜSTÜNDE,
   köşeden taşmaz). %7 iç pay → kayma yok, foto üzerinde minimal rozet. */
/* Madalya: dairesel avatarın SAĞ-ALT köşesinde, hafif aşağı-yana sarkar
   (foto üzerinde, ortaya kaçmaz). */
.av-wrap .medal{position:absolute;right:-4%;bottom:-8%;
  z-index:2;pointer-events:none;filter:drop-shadow(0 1px 3px rgba(0,0,0,.6));}

/* Spam IP duvarı — tam ekran, kararan, animasyonlu özel uyarı */
.ks-spamwall{position:fixed;inset:0;z-index:9999;display:grid;place-items:center;padding:22px;
  background:rgba(0,0,0,.82);-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);
  opacity:0;transition:opacity .26s ease;}
.ks-spamwall.in{opacity:1;}
.ks-spamwall.out{opacity:0;}
.ks-spamwall .ksw-card{width:min(440px,92vw);text-align:center;
  background:var(--surface);border:1px solid color-mix(in srgb,var(--danger) 45%,var(--border));
  border-radius:var(--radius-xl);padding:30px 26px 26px;
  box-shadow:0 30px 80px -20px rgba(0,0,0,.7), 0 0 0 1px color-mix(in srgb,var(--danger) 20%,transparent);
  transform:translateY(14px) scale(.96);opacity:0;
  transition:transform .3s cubic-bezier(.2,1,.3,1),opacity .3s ease;}
.ks-spamwall.in .ksw-card{transform:none;opacity:1;}
.ks-spamwall .ksw-ic{width:64px;height:64px;margin:0 auto 16px;border-radius:50%;
  display:grid;place-items:center;color:var(--danger);
  background:var(--danger-soft);border:1px solid color-mix(in srgb,var(--danger) 38%,transparent);
  animation:kswPulse 1.8s ease-out infinite;}
@keyframes kswPulse{0%{box-shadow:0 0 0 0 color-mix(in srgb,var(--danger) 45%,transparent);}
  70%{box-shadow:0 0 0 16px transparent;}100%{box-shadow:0 0 0 0 transparent;}}
.ks-spamwall h2{margin:0 0 8px;font-size:21px;font-weight:800;letter-spacing:-.02em;color:var(--text);}
.ks-spamwall .ksw-lead{margin:0 0 14px;font-size:14.5px;font-weight:800;color:var(--danger);line-height:1.5;}
.ks-spamwall .ksw-body{margin:0 0 22px;font-size:13.5px;color:var(--text-muted);line-height:1.7;}
.ks-spamwall .ksw-body b{color:var(--text);font-weight:700;}
.ks-spamwall .ksw-ok{display:inline-flex;align-items:center;justify-content:center;
  min-width:160px;padding:13px 24px;border-radius:var(--radius-pill);cursor:pointer;
  font-size:14px;font-weight:800;color:#0a0a0a;background:var(--accent);border:0;
  transition:background var(--t-fast),transform var(--t-fast);}
.ks-spamwall .ksw-ok:hover{background:var(--accent-2);}
.ks-spamwall .ksw-ok:active{transform:scale(.97);}
@media (max-width:480px){
  .ks-spamwall .ksw-card{padding:26px 20px 22px;}
  .ks-spamwall h2{font-size:19px;}
  .ks-spamwall .ksw-ok{width:100%;}
}

