/* ═══════════════════════════════════════
   CASINO TICKER BAR
   Fixed at top, pushes content down, closeable
═══════════════════════════════════════ */
.sv-ticker-wrap {
  width: 100%;
  background: linear-gradient(90deg, #0B1120 0%, #0f2027 50%, #0B1120 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
  z-index: 100;
  overflow: hidden;
  transition: max-height .3s ease, opacity .3s ease;
  max-height: 44px;
}
.sv-ticker-wrap.sv-ticker-hidden {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}
.sv-ticker-inner {
  display: flex;
  align-items: center;
  height: 44px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
  gap: 12px;
  position: relative;
}
.sv-ticker-label {
  font-size: 11px;
  font-weight: 700;
  color: #0D9488;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: .06em;
  flex-shrink: 0;
  padding-right: 12px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.sv-ticker-track {
  flex: 1;
  overflow: hidden;
  display: flex;
  min-width: 0;
}
.sv-ticker-list {
  display: flex;
  align-items: center;
  gap: 0;
  animation: sv-tick 30s linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}
.sv-ticker-dup {
  animation: sv-tick 30s linear infinite;
}
@keyframes sv-tick {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
.sv-ticker-track:hover .sv-ticker-list { animation-play-state: paused; }
.sv-tick-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 16px;
  border-right: 1px solid rgba(255,255,255,.06);
  text-decoration: none;
  transition: background .15s;
}
.sv-tick-item:hover { background: rgba(255,255,255,.05); }
.sv-tick-name {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
}
.sv-tick-score {
  font-size: 12px;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 10px;
}
.sv-tick-ex   .sv-tick-score { background: rgba(13,148,136,.25); color: #34d399; }
.sv-tick-good .sv-tick-score { background: rgba(5,150,105,.2);  color: #6ee7b7; }
.sv-tick-avg  .sv-tick-score { background: rgba(217,119,6,.2);  color: #fcd34d; }
.sv-tick-low  .sv-tick-score { background: rgba(220,38,38,.2);  color: #fca5a5; }
.sv-ticker-close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  color: rgba(255,255,255,.5);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .15s;
  padding: 0;
}
.sv-ticker-close:hover { background: rgba(255,255,255,.15); color: #fff; }
@media(max-width:480px) {
  .sv-ticker-label { display: none; }
  .sv-tick-item { padding: 5px 12px; }
}

.hp-hero-card {
  max-width: 1400px;
  margin: 16px auto 28px;
  padding: 0 28px;
}
/* SlotVerdict — Homepage (New Concept 2026) */

/* ── Global overflow guard ── */
.hp-page { overflow-x: hidden; }
.hp-page * { min-width: 0; }

/* ═══════════════════════════════════════
   PAGE WRAPPER
═══════════════════════════════════════ */
.hp-page { padding: 0; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hp-hero {
  background: #0B1120;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.hp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 70% 50%, rgba(13,148,136,.12) 0%, transparent 70%),
              url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hp-hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 56px 28px 48px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero left */
.hp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,148,136,.15);
  border: 1px solid rgba(13,148,136,.3);
  color: var(--teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hp-eyebrow svg { width: 12px; height: 12px; }
.hp-h1 {
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.hp-h1 span { color: var(--teal); }
.hp-sub {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}
.hp-actions { display: flex; gap: 12px; margin-bottom: 36px; }
.hp-btn-primary {
  background: var(--teal);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .15s;
}
.hp-btn-primary:hover { background: #0b8278; transform: translateY(-1px); }
.hp-btn-outline {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.85);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.2);
  transition: all .15s;
}
.hp-btn-outline:hover { background: rgba(255,255,255,.14); }
.hp-stats {
  display: flex;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  overflow: hidden;
}
.hp-stat {
  flex: 1;
  padding: 16px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.hp-stat:last-child { border-right: none; }
.hp-stat-n { font-size: 26px; font-weight: 900; color: #fff; line-height: 1; margin-bottom: 4px; }
.hp-stat-l { font-size: 11px; color: rgba(255,255,255,.45); font-weight: 500; text-transform: uppercase; letter-spacing: .4px; }

/* Hero right — live panel */
.hp-live {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}
.hp-live-hd {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hp-live-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  text-transform: uppercase;
  letter-spacing: .6px;
}
.hp-live-dot {
  width: 7px; height: 7px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34,197,94,.25);
  animation: hpPulse 2s infinite;
  flex-shrink: 0;
}
@keyframes hpPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(34,197,94,.25); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,.1); }
}
.hp-live-link { font-size: 11px; color: var(--teal); font-weight: 600; }
.hp-live-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .15s;
  text-decoration: none;
}
.hp-live-row:last-of-type { border-bottom: none; }
.hp-live-row:hover { background: rgba(255,255,255,.04); }
.hp-live-rank {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
  flex-shrink: 0;
}
.hp-live-rank.gold   { background: rgba(251,191,36,.2); color: #FBB724; }
.hp-live-rank.silver { background: rgba(156,163,175,.2); color: #9CA3AF; }
.hp-live-rank.bronze { background: rgba(180,120,80,.2);  color: #B47850; }
.hp-live-rank.norm   { background: rgba(255,255,255,.08); color: rgba(255,255,255,.4); }
.hp-live-info { flex: 1; min-width: 0; }
.hp-live-name { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hp-live-meta { font-size: 11px; color: rgba(255,255,255,.4); }
.hp-live-score { text-align: right; flex-shrink: 0; }
.hp-live-num   { font-size: 20px; font-weight: 900; line-height: 1; }
.hp-live-num.ex   { color: #34D399; }
.hp-live-num.good { color: #86EFAC; }
.hp-live-num.avg  { color: #FCD34D; }
.hp-live-trend    { font-size: 10px; color: rgba(255,255,255,.35); margin-top: 2px; }
.hp-live-trend.up   { color: #34D399; }
.hp-live-trend.down { color: #F87171; }
.hp-live-footer {
  padding: 12px 18px;
  background: rgba(13,148,136,.1);
  border-top: 1px solid rgba(13,148,136,.2);
  text-align: center;
}
.hp-live-footer a { font-size: 12px; font-weight: 700; color: var(--teal); }

/* ═══════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════ */
.hp-trust-bar {
  background: rgba(255,255,255,.05);
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  width: 100%;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}
.hp-trust-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-right: 1px solid rgba(255,255,255,.07);
  font-size: 13px;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}
.hp-trust-item:last-child { border-right: none; }
.hp-trust-item strong { color: #fff; font-weight: 700; }
.hp-ti {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hp-ti svg { width: 18px; height: 18px; display: block; }
.hp-ti.teal  { background: rgba(13,148,136,.2);  color: var(--teal); }
.hp-ti.amber { background: rgba(217,119,6,.2);   color: var(--amber); }
.hp-ti.blue  { background: rgba(37,99,235,.2);   color: var(--blue); }
.hp-ti.green { background: rgba(5,150,105,.2);   color: var(--green); }

/* ═══════════════════════════════════════
   MAIN BODY
═══════════════════════════════════════ */
.hp-body {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 28px 0;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
}
.hp-main { display: flex; flex-direction: column; gap: 20px; }

/* ── RANKING TABLE ── */
.hp-ranking {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
.hp-ranking-hd {
  padding: 20px 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hp-ranking-title {
  font-size: 17px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 3px;
}
.hp-ranking-sub { font-size: 12px; color: var(--ink-3); }
.hp-ranking-controls { display: flex; gap: 8px; align-items: center; }
.hp-rc-count {
  font-size: 12px; color: var(--ink-3); font-weight: 600;
  padding: 5px 10px; background: var(--bg); border-radius: 6px;
}
.hp-rc-btn {
  font-size: 12px; font-weight: 700; color: var(--teal);
  padding: 6px 14px;
  border: 1px solid rgba(13,148,136,.3);
  border-radius: 7px;
  background: var(--teal-l);
  transition: all .15s;
}
.hp-rc-btn:hover { background: rgba(13,148,136,.15); }
.hp-tabs {
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 6px;
}
.hp-tab {
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 7px;
  color: var(--ink-3);
  transition: all .15s;
  text-decoration: none;
}
.hp-tab:hover  { background: var(--bg); color: var(--ink-2); }
.hp-tab.active { background: var(--ink-1); color: #fff; }
.hp-rt-head {
  display: grid;
  grid-template-columns: 44px 1fr 90px 90px 110px 110px 110px 100px;
  padding: 10px 24px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.hp-rt-head span {
  font-size: 10px;
  font-weight: 700;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: .5px;
}
.hp-rt-head span:nth-child(3),
.hp-rt-head span:nth-child(4),
.hp-rt-head span:nth-child(5),
.hp-rt-head span:nth-child(6),
.hp-rt-head span:nth-child(7),
.hp-rt-head span:nth-child(8) { text-align: center; }
.hp-rt-row {
  display: grid;
  grid-template-columns: 44px 1fr 90px 90px 110px 110px 110px 100px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: background .12s;
}
.hp-rt-row:last-child { border-bottom: none; }
.hp-rt-row:hover { background: #FAFBFC; }
.hp-rt-rank { font-size: 14px; font-weight: 800; text-align: center; color: var(--ink-4); }
.hp-rt-rank.r1 { color: #F59E0B; }
.hp-rt-rank.r2 { color: #94A3B8; }
.hp-rt-rank.r3 { color: #CD7F32; }
.hp-rt-casino  { display: flex; align-items: center; gap: 10px; }
.hp-rt-name    { font-size: 14px; font-weight: 700; color: var(--ink-1); margin-bottom: 2px; }
.hp-rt-name a  { color: inherit; text-decoration: none; transition: color .15s; }
.hp-rt-name a:hover { color: var(--teal); }
.hp-rt-url     { font-size: 11px; color: var(--ink-3); }
.hp-rt-lic {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 9px; font-weight: 700; color: var(--teal);
  background: var(--teal-l); padding: 1px 6px; border-radius: 4px; margin-top: 3px;
}
.hp-rt-lic svg { width: 8px; height: 8px; }
.hp-rt-score   { text-align: center; }
.hp-rt-score-sub { font-size: 10px; color: var(--ink-3); margin-top: 3px; }
.hp-rt-score-review .hp-rt-score-num { font-size: 18px; }
.hp-rt-score-vote   .hp-rt-score-num { font-size: 18px; }
.hp-rt-score-total  .hp-rt-score-num { font-size: 22px; }
.hp-rt-score-total { background: var(--bg); border-radius: 8px; padding: 6px 4px; }
.hp-rt-score-num { font-size: 22px; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.hp-rt-score-num.ex   { color: #0D9488; }
.hp-rt-score-num.good { color: #16a34a; }
.hp-rt-score-num.avg  { color: #ea580c; }
.hp-rt-score-num.low  { color: #dc2626; }
.hp-rt-bar  { height: 3px; background: var(--line); border-radius: 3px; width: 60px; margin: 2px auto 0; }
.hp-rt-fill { height: 100%; border-radius: 3px; }
.hp-rt-fill.ex   { background: var(--teal); }
.hp-rt-fill.good { background: var(--green); }
.hp-rt-fill.avg  { background: var(--amber); }
.hp-rt-speed { text-align: center; }
.hp-speed-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 700;
}
.hp-speed-badge svg { width: 10px; height: 10px; }
.hp-speed-badge.fast { background: var(--green-l); color: var(--green); }
.hp-speed-badge.mid  { background: #EFF6FF;        color: var(--blue); }
.hp-speed-badge.slow { background: #FEF3C7;        color: var(--amber); }
.hp-rt-bonus        { text-align: center; }
.hp-rt-bonus-val    { font-size: 13px; font-weight: 700; color: var(--ink-1); margin-bottom: 2px; }
.hp-rt-bonus-fs     { font-size: 11px; color: var(--amber); font-weight: 600; }
.hp-rt-action       { text-align: center; }
.hp-rt-go {
  display: inline-flex; align-items: center; gap: 4px;
  background: var(--teal); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 7px 14px; border-radius: 8px;
  transition: all .15s; text-decoration: none;
}
.hp-rt-go:hover { background: #0b8278; }
.hp-rt-go svg { width: 11px; height: 11px; }
.hp-rt-review-link {
  display: block; font-size: 10px; color: var(--ink-3);
  margin-top: 5px; text-align: center; text-decoration: none;
  transition: color .15s;
}
.hp-rt-review-link:hover { color: var(--teal); }
.hp-rt-more {
  padding: 16px 24px; background: var(--bg);
  text-align: center; border-top: 1px solid var(--line);
}
.hp-rt-more a {
  font-size: 13px; font-weight: 700; color: var(--teal);
  display: inline-flex; align-items: center; gap: 6px; text-decoration: none;
}
.hp-rt-more svg { width: 14px; height: 14px; }

/* Methodology strip */
.hp-method {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hp-method-icon {
  width: 48px; height: 48px;
  background: var(--teal-l);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.hp-method-icon svg { width: 22px; height: 22px; }
.hp-method-text h3  { font-size: 14px; font-weight: 800; margin-bottom: 4px; }
.hp-method-text p   { font-size: 12px; color: var(--ink-3); line-height: 1.5; }
.hp-method-text     { flex: 1; min-width: 0; }
.hp-method-link {
  margin-left: auto; flex-shrink: 0;
  font-size: 12px; font-weight: 700; color: var(--teal);
  padding: 8px 16px;
  border: 1px solid rgba(13,148,136,.3);
  border-radius: 8px;
  background: var(--teal-l);
  white-space: nowrap;
  text-decoration: none;
  transition: all .15s;
}
.hp-method-link:hover { background: rgba(13,148,136,.15); }

/* ── SIDEBAR ── */
.hp-sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 20px; }
.hp-sb-box  { background: var(--white); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.hp-sb-hd   {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 13px; font-weight: 800;
  display: flex; align-items: center; gap: 8px;
  color: var(--ink-1);
}
.hp-sb-hd svg { width: 14px; height: 14px; color: var(--teal); flex-shrink: 0; }

/* Categories */
.hp-sb-cats {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.hp-sb-cat {
  display: flex; flex-direction: row; align-items: center; gap: 8px;
  padding: 10px 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: all .15s;
  text-decoration: none;
  min-width: 0;
}
.hp-sb-cat:hover { border-color: var(--teal); background: var(--teal-l); }
.hp-sb-ci {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hp-sb-ci svg { width: 18px; height: 18px; display: block; }
.hp-sb-ci.teal   { background: var(--teal-l);  color: var(--teal); }
.hp-sb-ci.amber  { background: #FFFBEB;         color: var(--amber); }
.hp-sb-ci.blue   { background: #EFF6FF;         color: var(--blue); }
.hp-sb-ci.green  { background: var(--green-l);  color: var(--green); }
.hp-sb-ci.purple { background: #F5F3FF;         color: #7C3AED; }
.hp-sb-ci.rose   { background: #FFF1F2;         color: #E11D48; }
.hp-sb-cl { font-size: 11px; font-weight: 700; color: var(--ink-2); text-align: left; line-height: 1.3; flex: 1; min-width: 0; }

/* Bonus card */
.hp-bonus-card  { padding: 18px; }
.hp-bonus-fire  {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; color: var(--amber);
  text-transform: uppercase; letter-spacing: .4px;
  margin-bottom: 12px;
}
.hp-bonus-fire svg { width: 11px; height: 11px; flex-shrink: 0; }
.hp-bonus-casino { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.hp-bonus-cname  { font-size: 14px; font-weight: 800; color: var(--ink-1); margin-bottom: 3px; }
.hp-bonus-rating { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--ink-3); }
.hp-bonus-rating svg { width: 10px; height: 10px; flex-shrink: 0; }
.hp-bonus-rating strong { color: var(--amber); }
.hp-bonus-amount { font-size: 26px; font-weight: 900; color: var(--ink-1); margin-bottom: 12px; letter-spacing: -1px; }
.hp-bonus-amount span { color: var(--teal); }
.hp-bonus-details { margin-bottom: 14px; display: flex; flex-direction: column; gap: 5px; }
.hp-bonus-row {
  display: flex; justify-content: space-between;
  font-size: 12px; padding: 4px 0;
  border-bottom: 1px solid var(--line);
}
.hp-bonus-row:last-child { border-bottom: none; }
.hp-bonus-row span:first-child { color: var(--ink-3); }
.hp-bonus-row span:last-child  { font-weight: 600; color: var(--ink-1); }
.hp-bonus-cta  { display: flex; gap: 8px; }
.hp-bonus-main {
  flex: 1; background: var(--teal); color: #fff;
  font-size: 13px; font-weight: 700; padding: 10px;
  border-radius: 9px; text-align: center; text-decoration: none;
  transition: all .15s;
}
.hp-bonus-main:hover { background: #0b8278; }
.hp-bonus-sec {
  padding: 10px 12px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 9px; font-size: 12px; color: var(--ink-3);
  font-weight: 600; text-decoration: none; transition: all .15s;
}
.hp-bonus-sec:hover { background: var(--line); }

/* Trust score */
.hp-trust-score { padding: 16px 18px; }
.hp-ts-big      { font-size: 42px; font-weight: 900; color: var(--teal); line-height: 1; margin-bottom: 12px; }
.hp-ts-label    { font-size: 11px; font-weight: 700; color: var(--ink-2); margin-bottom: 10px; }
.hp-ts-bars     { display: flex; flex-direction: column; gap: 6px; }
.hp-ts-row      { display: flex; align-items: center; gap: 8px; }
.hp-ts-lbl      { font-size: 10px; color: var(--ink-3); width: 64px; flex-shrink: 0; }
.hp-ts-bar      { flex: 1; height: 4px; background: var(--line); border-radius: 4px; overflow: hidden; }
.hp-ts-fill     { height: 100%; border-radius: 4px; background: var(--teal); }
.hp-ts-val      { font-size: 10px; font-weight: 700; color: var(--ink-2); width: 24px; text-align: right; }

/* Mini reviews sidebar */
.hp-mini-reviews { padding: 14px 18px; display: flex; flex-direction: column; gap: 12px; }
.hp-mrv          { padding: 12px; background: var(--bg); border-radius: 10px; border: 1px solid var(--line); }
.hp-mrv-top      { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.hp-mrv-casino   { font-size: 10px; color: var(--ink-3); font-weight: 600; }
.hp-mrv-text     { font-size: 12px; color: var(--ink-2); line-height: 1.5; margin-bottom: 6px; font-style: italic; }
.hp-mrv-meta     { font-size: 10px; color: var(--ink-4); }
.hp-mrv-stars    { display: flex; gap: 2px; }

/* ═══════════════════════════════════════
   REVIEWS ROW
═══════════════════════════════════════ */

/* ═══════════════════════════════════════
   MOBILE (≤900px)
═══════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — all breakpoints
   375  (iPhone SE)
   480  (large phones)
   600  (small tablets / large landscape phones)
   768  (tablets portrait)
   900  (tablets landscape / small laptops)
   1200 (laptops)
═══════════════════════════════════════════════════════ */

/* ── 1200px ── */
@media(max-width:1200px) {
  .hp-hero-inner { grid-template-columns: 1fr 360px; gap: 40px; }
  .hp-body { padding: 20px 24px 0; }
}

/* ── 900px (tablet landscape) ── */
@media(max-width:900px) {
  .hp-page { padding: 0 !important; overflow-x: hidden; }
  .hp-hero-card { margin-bottom: 20px; padding: 0; }
  .hp-hero { border-radius: 0; overflow-x: hidden; }
  .hp-ranking { overflow-x: hidden; }

  /* hero */
  .hp-hero-inner { grid-template-columns: 1fr; gap: 0; padding: 32px 20px 28px; }
  .hp-live { display: none; }
  .hp-h1  { font-size: 28px; letter-spacing: -.5px; }
  .hp-sub { font-size: 13px; margin-bottom: 20px; }
  .hp-actions { gap: 10px; margin-bottom: 24px; }
  .hp-btn-primary, .hp-btn-outline { padding: 12px 22px; font-size: 13px; }
  .hp-stats { display: grid; grid-template-columns: repeat(2,1fr); border-radius: 12px; overflow: hidden; }
  .hp-stat  { padding: 14px 12px; border-right: none; }
  .hp-stat:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.08); }
  .hp-stat:nth-child(1), .hp-stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.08); }
  .hp-stat-n { font-size: 22px; }
  .hp-stat-l { font-size: 10px; }

  /* trust bar */
  .hp-trust-bar { display: grid; grid-template-columns: 1fr 1fr; border-radius: 0; }
  .hp-trust-item { padding: 12px 14px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 11px; gap: 8px; }
  .hp-trust-item:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,.07); }
  .hp-trust-item:nth-child(3),
  .hp-trust-item:nth-child(4)    { border-bottom: none; }
  .hp-ti { width: 30px; height: 30px; flex-shrink: 0; }
  .hp-ti svg { width: 15px; height: 15px; }

  /* body / sidebar */
  .hp-body { grid-template-columns: 1fr; padding: 16px 16px 0; }
  .hp-sidebar { display: none; }

  /* ranking */
  .hp-ranking-hd { flex-wrap: wrap; gap: 10px; padding: 14px 16px; }
  .hp-ranking-title { font-size: 15px; }
  .hp-ranking-sub { font-size: 11px; }
  .hp-ranking-controls { gap: 8px; }
  .hp-tabs { padding: 10px 16px; overflow-x: auto; flex-wrap: nowrap; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .hp-tabs::-webkit-scrollbar { display: none; }
  .hp-tab { white-space: nowrap; flex-shrink: 0; font-size: 12px; }
  .hp-rt-head { display: none; }
  .hp-rt-row { display: flex; align-items: center; gap: 10px; padding: 12px 16px; }
  .hp-rt-rank  { width: 24px; font-size: 13px; flex-shrink: 0; }
  .hp-rt-casino{ flex: 1; min-width: 0; }
  .hp-rt-score, .hp-rt-score-review, .hp-rt-score-vote, .hp-rt-score-total, .hp-rt-speed, .hp-rt-bonus { display: none; }
  .hp-rt-action{ flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
  .hp-rt-go    { padding: 7px 12px; font-size: 11px; }
  .hp-rt-more  { padding: 14px 16px; }

  /* method */
  .hp-method { padding: 14px 16px; gap: 10px; flex-direction: column; align-items: flex-start; }
  .hp-method-icon { width: 36px; height: 36px; }
  .hp-method-icon svg { width: 18px; height: 18px; }
  .hp-method-text { width: 100%; }
  .hp-method-text h3 { font-size: 13px; }
  .hp-method-text p { font-size: 12px; }
  .hp-method-link { margin: 4px 0 0 0; width: 100%; text-align: center; }

  /* reviews */
  .hp-reviews-section { padding: 0 16px 24px; margin-top: 16px; }
  .hp-reviews-grid { grid-template-columns: 1fr; }
}

/* ── 768px (tablet portrait) ── */
@media(max-width:768px) {
  .hp-hero-card { padding: 0; }
  .hp-hero { border-radius: 0; }
  .hp-hero-inner { padding: 28px 20px 28px; }
  .hp-h1 { font-size: 26px; }
  .hp-stats { grid-template-columns: repeat(2,1fr); }
  .hp-stat:nth-child(1), .hp-stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.07); }
}

/* ── 600px (large phones landscape) ── */
@media(max-width:600px) {
  .sv-ticker-wrap { max-height: 40px; }
  .sv-ticker-inner { height: 40px; }
  .hp-hero-card { padding: 0; }
  .hp-hero-inner { padding: 24px 16px 24px; }
  .hp-h1 { font-size: 23px; }
  .hp-stats { grid-template-columns: repeat(2,1fr); }
  .hp-trust-item { font-size: 10px; gap: 6px; padding: 10px 10px; }
  .hp-ti { width: 26px; height: 26px; }
  .hp-ti svg { width: 13px; height: 13px; }
}

/* ── 480px (standard phones) ── */
@media(max-width:480px) {
  .hp-hero-card { padding: 0; }
  .hp-hero-inner { padding: 24px 16px 24px; }
  .hp-actions { flex-direction: column; }
  .hp-btn-primary, .hp-btn-outline { justify-content: center; width: 100%; }
  .hp-h1 { font-size: 22px; }
  .hp-sub { font-size: 12px; }
  .hp-body { padding: 12px 12px 0; }
}

/* ── 375px (iPhone SE / small phones) ── */
@media(max-width:375px) {
  .hp-hero-card { padding: 0; }
  .hp-hero-inner { padding: 20px 14px 20px; }
  .hp-h1 { font-size: 20px; }
  .hp-stat-n { font-size: 18px; }
  .hp-trust-bar { grid-template-columns: 1fr; }
  .hp-trust-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.07) !important; }
  .hp-trust-item:last-child { border-bottom: none !important; }
}




/* ══════════════════════════════════════════════════════════
   SCOREBOARD — hp-sb-*
   5 columns: rank | casino | sparkline | score | vote
══════════════════════════════════════════════════════════ */
.hp-sb-section { max-width:1400px; margin:0 auto; padding:0 28px 48px; }
.hp-sb-wrap    { background:#fff; border:1px solid var(--line); border-radius:16px; overflow:hidden; box-shadow:0 2px 12px rgba(0,0,0,.06); }

/* ── Hero ── */
.hp-sb-hero {
  background: linear-gradient(120deg,#0f172a 0%,#134e4a 55%,#0D9488 100%);
  padding: 28px 32px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap; position: relative; overflow: hidden;
}
.hp-sb-hero::after {
  content:''; position:absolute; right:-40px; top:-40px;
  width:220px; height:220px; border-radius:50%;
  background:rgba(255,255,255,.04); pointer-events:none;
}
.hp-sb-eyebrow {
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(255,255,255,.12); border:1px solid rgba(255,255,255,.18);
  border-radius:20px; padding:4px 12px; margin-bottom:12px;
  font-size:11px; font-weight:700; color:#fff;
  letter-spacing:.05em; text-transform:uppercase;
}
.hp-sb-live-dot {
  width:8px; height:8px; border-radius:50%; background:#34d399;
  display:inline-block; animation:sb-pulse 1.5s ease infinite;
}
@keyframes sb-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(.85)} }
.hp-sb-title  { font-size:22px; font-weight:800; color:#fff; margin:0 0 6px; line-height:1.2; }
.hp-sb-sub    { font-size:13px; color:rgba(255,255,255,.65); }
.hp-sb-hero-left { flex:1; min-width:0; }
.hp-sb-stats  { display:flex; gap:0; flex-shrink:0; }
.hp-sb-stat   { text-align:center; padding:0 20px; border-right:1px solid rgba(255,255,255,.12); }
.hp-sb-stat:last-child { border-right:none; }
.hp-sb-stat-n { font-size:24px; font-weight:800; color:#fff; line-height:1; }
.hp-sb-stat-l { font-size:10px; color:rgba(255,255,255,.55); text-transform:uppercase; letter-spacing:.06em; margin-top:4px; font-weight:700; }

/* ── React strip (4 cols) ── */
.hp-sb-react  { display:grid; grid-template-columns:repeat(4,1fr); border-bottom:1px solid var(--line); }
.hp-sb-rc     { display:flex; align-items:center; gap:12px; padding:16px 20px; border-right:1px solid var(--line); }
.hp-sb-rc:last-child { border-right:none; }
.hp-sb-rc-icon{ width:38px; height:38px; border-radius:10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.hp-sb-rc-icon svg { width:20px; height:20px; }
.hp-sb-rc-n   { font-size:18px; font-weight:800; color:var(--ink-1); line-height:1; }
.hp-sb-rc-l   { font-size:11px; color:var(--ink-3); font-weight:600; margin-top:2px; }
.hp-sb-rc-wd  { font-size:11px; font-weight:700; margin-left:auto; flex-shrink:0; padding:2px 7px; border-radius:8px; }
.hp-sb-rc-wd.up { background:var(--green-l); color:var(--green); }
.hp-sb-rc-wd.dn { background:#FEF2F2; color:#DC2626; }
.hp-sb-rc-wd.eq { background:var(--bg); color:var(--ink-3); }

/* ── Header row ── */
.hp-sb-hd {
  display: grid;
  grid-template-columns: 52px 1fr 160px 80px 180px;
  align-items: center;
  padding: 10px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  font-size: 11px; font-weight: 700; color: var(--ink-3);
  text-transform: uppercase; letter-spacing: .06em;
}
.hp-sb-hd span { padding: 0 12px; }
/* Rank: centered */
.hp-sb-hd span:nth-child(1) { padding-left:20px; text-align:center; }
/* Casino: left */
.hp-sb-hd span:nth-child(2) { text-align:left; }
/* Sparkline/Activity: centered */
.hp-sb-hd span:nth-child(3) { text-align:center; }
/* Score: centered */
.hp-sb-hd span:nth-child(4) { text-align:center; padding:0; }
/* Vote: centered */
.hp-sb-hd span:nth-child(5) { text-align:center; }
.hp-sb-hd svg  { flex-shrink:0; }

/* ── Data rows (5 cols matching hp-sb-hd) ── */
.hp-sb-row {
  display: grid;
  grid-template-columns: 52px 1fr 160px 80px 180px;
  align-items: center;
  gap: 0;
  border-bottom: 1px solid var(--line);
  transition: background .15s;
}
.hp-sb-row:last-child { border-bottom:none; }
.hp-sb-row:hover { background:var(--bg); }

/* Col 1: Rank */
.hp-sb-rank-cell { padding:16px 0 16px 20px; display:flex; flex-direction:column; align-items:center; gap:4px; }
.hp-sb-rnum      { font-size:18px; font-weight:800; line-height:1; }
.hp-sb-rnum.r1   { color:#0D9488; }
.hp-sb-rnum.r2   { color:var(--amber); }
.hp-sb-rnum.r3   { color:var(--green); }
.hp-sb-rnum.rx, .hp-sb-rnum.rn { color:var(--ink-4); font-size:14px; }
.hp-sb-rdelta    { font-size:10px; font-weight:700; min-height:14px; }
.hp-sb-rdelta.up { color:var(--green); }
.hp-sb-rdelta.dn { color:#DC2626; }

/* Col 2: Casino */
.hp-sb-casino { padding:14px 12px; display:flex; align-items:center; gap:12px; min-width:0; }
.hp-sb-cname  { font-size:14px; font-weight:700; color:var(--ink-1); line-height:1.3; margin-bottom:4px; }
.hp-sb-trend-row { display:flex; align-items:center; gap:6px; margin-bottom:4px; }
.hp-sb-meta   { font-size:11px; color:var(--ink-3); margin-top:2px; }
.hp-sb-meta .up { color:var(--green); font-weight:700; }
.hp-sb-meta .dn { color:#DC2626; font-weight:700; }
.hp-sb-pills  { display:flex; gap:5px; margin-top:6px; flex-wrap:wrap; }
.hp-sb-pill   { display:inline-flex; align-items:center; gap:3px; font-size:11px; font-weight:700; padding:2px 7px; border-radius:20px; }
.hp-sb-pill.rec     { background:var(--green-l); color:var(--green); }
.hp-sb-pill.top     { background:#EDE9FE; color:#7C3AED; }
.hp-sb-pill.bad     { background:#FEF2F2; color:#DC2626; }
.hp-sb-pill.neutral { background:#FFFBEB; color:var(--amber); }

/* Trend badge */
.hp-sb-tbadge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 11px; font-weight: 700;
  padding: 3px 9px; border-radius: 20px;
  white-space: nowrap; vertical-align: middle;
  letter-spacing: .02em;
}
.hp-sb-tbadge svg { flex-shrink:0; }
/* HOT = вогонь, стрімке зростання */
.hp-sb-tbadge.tbg-hot {
  background: linear-gradient(135deg,#FFF0E6,#FFE4D6);
  color: #C2410C;
  border: 1px solid #FED7AA;
  box-shadow: 0 1px 3px rgba(234,88,12,.15);
}
/* RISING = зростає */
.hp-sb-tbadge.tbg-rising {
  background: linear-gradient(135deg,#F0FDF4,#DCFCE7);
  color: #15803D;
  border: 1px solid #BBF7D0;
  box-shadow: 0 1px 3px rgba(22,163,74,.12);
}
/* STABLE = стабільно */
.hp-sb-tbadge.tbg-stable {
  background: #F1F5F9;
  color: #475569;
  border: 1px solid #E2E8F0;
}
/* FALLING = падає */
.hp-sb-tbadge.tbg-falling {
  background: linear-gradient(135deg,#FFF5F5,#FEE2E2);
  color: #B91C1C;
  border: 1px solid #FECACA;
  box-shadow: 0 1px 3px rgba(220,38,38,.12);
}

/* Mobile sparkline (inside casino col, hidden on desktop) */
.hp-sb-spark-mobile { display:none; margin-top:8px; flex-direction:column; gap:3px; }

/* Col 3: Desktop sparkline */
.hp-sb-spark.hp-sb-spark-desktop { display:flex; flex-direction:column; gap:4px; padding:14px 12px; }
.hp-sb-spark-bars    { display:flex; align-items:flex-end; gap:3px; height:32px; }
.hp-sb-spark-bars span { flex:1; min-width:4px; border-radius:2px 2px 0 0; }
.hp-sb-spark-wd      { font-size:11px; font-weight:700; }
.hp-sb-spark-wd.up   { color:var(--green); }
.hp-sb-spark-wd.dn   { color:#DC2626; }
.hp-sb-spark-wd.eq   { color:var(--ink-3); }
.hp-sb-spark-days    { font-size:9px; color:var(--ink-4); letter-spacing:.03em; white-space:nowrap; }

/* Col 4: Score */
.hp-sb-sc-cell { padding:10px 6px; text-align:center; display:flex; flex-direction:column; align-items:center; gap:5px; }
.hp-sb-sc-big  { font-size:24px; font-weight:800; line-height:1; }
.hp-sb-sc-big.sc-ex { color:#0D9488; }
.hp-sb-sc-big.sc-gd { color:var(--green); }
.hp-sb-sc-big.sc-av { color:var(--amber); }
.hp-sb-sc-big.sc-lw { color:#DC2626; }
.hp-sb-sc-sub  { font-size:10px; color:var(--ink-3); font-weight:600; }
.hp-sb-sc-bar  { width:44px; height:3px; background:var(--line); border-radius:2px; overflow:hidden; }
.hp-sb-sc-fill { height:100%; border-radius:2px; transition:width .4s ease; }
/* Week delta badge — "+0.4 тиждень" */
.sc-wd { display:inline-flex; align-items:center; gap:3px; font-size:10px; font-weight:700;
         padding:2px 7px; border-radius:10px; white-space:nowrap; line-height:1.5; }
.sc-wd::before { font-size:10px; }
.sc-wd.up { background:#D1FAE5; color:#065F46; }
.sc-wd.up::before { content:"↑"; }
.sc-wd.dn { background:#FEE2E2; color:#991B1B; }
.sc-wd.dn::before { content:"↓"; }
.sc-wd.eq { background:#F1F5F9; color:#64748B; }
.sc-wd.eq::before { content:"→"; }

/* Col 5: Vote */
.hp-sb-vote-cell { padding:12px 14px; display:flex; flex-direction:column; gap:6px; align-items:flex-start; justify-content:center; }
.hp-sb-vbtns  { display:grid; grid-template-columns:1fr 1fr; gap:6px; width:100%; }
.hp-sb-vb     { border:none; border-radius:10px; padding:8px 10px; font-size:12px; font-weight:700;
                cursor:pointer; display:flex; align-items:center; justify-content:space-between;
                gap:6px; transition:transform .15s,box-shadow .15s,filter .1s; width:100%; }
.hp-sb-vb:hover { transform:translateY(-2px); box-shadow:0 4px 10px rgba(0,0,0,.12); filter:brightness(1.05); }
.hp-sb-vb:active { transform:scale(.97); }
.hp-sb-vb.rec     { background:#D1FAE5; color:#065F46; }
.hp-sb-vb.top     { background:#EDE9FE; color:#6D28D9; }
.hp-sb-vb.bad     { background:#FEE2E2; color:#991B1B; }
.hp-sb-vb.neutral { background:#FEF3C7; color:#92400E; }
.hp-sb-vb svg  { width:15px; height:15px; flex-shrink:0; }
.hp-sb-vb-ct   { font-size:13px; font-weight:800; min-width:20px; text-align:right; }
.hp-sb-vb-em   { display:flex; align-items:center; }
.hp-sb-voted   { font-size:11px; color:var(--teal); font-weight:600; }

/* More button */
.hp-sb-more { padding:14px 20px; background:#f8fafc; text-align:center; border-top:1px solid #e2e8f0; }
.hp-sb-more a { font-size:13px; font-weight:600; color:var(--teal); text-decoration:none; }
.hp-sb-more a:hover { text-decoration:underline; }

/* Toast */
.hp-sb-toast {
  position:fixed; bottom:24px; left:50%;
  transform:translateX(-50%) translateY(20px);
  background:#1a2035; color:#fff;
  padding:10px 20px; border-radius:10px;
  font-size:13px; font-weight:600;
  opacity:0; transition:opacity .25s,transform .25s;
  pointer-events:none; z-index:9999;
}
.hp-sb-toast.show { opacity:1; transform:translateX(-50%) translateY(0); }

/* ── Mobile ≤860px ── */
@media(max-width:860px) {
  .hp-sb-section { padding:0 0 32px; }

  /* ── Hero ── */
  .hp-sb-hero { padding:18px 16px 16px; flex-direction:column; gap:14px; align-items:flex-start; }
  .hp-sb-title { font-size:18px; }
  .hp-sb-stats { gap:0; width:100%; }
  .hp-sb-stat  { flex:1; padding:0 6px; }
  .hp-sb-stat-n{ font-size:18px; }

  /* ── React 2x2 ── */
  .hp-sb-react { grid-template-columns:1fr 1fr; }
  .hp-sb-rc    { padding:12px 14px; }
  .hp-sb-rc:nth-child(2) { border-right:none; }
  .hp-sb-rc:nth-child(1),.hp-sb-rc:nth-child(2) { border-bottom:1px solid var(--line); }
  .hp-sb-rc:nth-child(4) { border-right:none; }
  .hp-sb-rc-wd { display:none; }

  .hp-sb-hd { display:none; }

  /* ══════════════════════════════════════════
     MOBILE ROW — card layout
     Row 1: [rank] [logo+name+trend] [score]
     Row 2: [     casino pills + spark      ]
     Row 3: [     vote buttons - full width  ]
  ══════════════════════════════════════════ */
  .hp-sb-row {
    display: grid;
    grid-template-columns: 40px auto 1fr auto;
    grid-template-rows: auto auto auto;
    gap: 0;
    padding: 0;
  }

  /* Col 1: rank — spans all rows */
  .hp-sb-rank-cell {
    grid-column: 1; grid-row: 1 / 4;
    display: flex; flex-direction: column; align-items: center;
    justify-content: flex-start;
    padding: 14px 0 14px 10px;
  }
  .hp-sb-rnum { font-size:17px; }

  /* Col 2: logo — spans rows 1-2 */
  .hp-sb-casino {
    grid-column: 2 / 4; grid-row: 1;
    display: flex; align-items: flex-start; gap: 10px;
    padding: 14px 10px 8px 0;
    min-width: 0;
  }

  /* Desktop sparkline hidden, mobile spark inside casino */
  .hp-sb-spark.hp-sb-spark-desktop { display:none; }
  .hp-sb-spark-mobile {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    flex-wrap: wrap;
  }
  .hp-sb-spark-mobile .hp-sb-spark-bars { height:24px; min-width: 80px; }
  .hp-sb-spark-mobile .hp-sb-spark-wd   { font-size:11px; }
  .hp-sb-spark-mobile .hp-sb-spark-days { font-size:9px; color:var(--ink-4); }

  /* Score cell — top right */
  .hp-sb-sc-cell {
    grid-column: 4; grid-row: 1;
    display: flex !important;
    flex-direction: column; align-items: center;
    padding: 14px 12px 8px 4px;
    gap: 3px;
  }
  .hp-sb-sc-big  { font-size:20px; }
  .hp-sb-sc-sub  { font-size:9px; }
  .hp-sb-sc-bar  { width:36px; }
  .sc-wd { font-size:9px; padding:1px 5px; }

  /* Vote buttons — full width bottom row */
  .hp-sb-vote-cell {
    grid-column: 2 / 5; grid-row: 2;
    padding: 0 12px 12px 0;
    align-items: stretch;
  }
  .hp-sb-vbtns {
    grid-template-columns: repeat(4,1fr);
    gap: 5px;
    width: 100%;
  }
  .hp-sb-vb {
    padding: 7px 6px;
    border-radius: 8px;
    font-size: 11px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-width: 0;
  }
  .hp-sb-vb svg  { width:14px; height:14px; }
  .hp-sb-vb-em   { display:flex; }
  .hp-sb-vb-ct   { font-size:12px; font-weight:800; }
  .hp-sb-voted   { font-size:11px; padding: 8px 0; }
}

@media(max-width:480px) {
  .hp-sb-react { grid-template-columns:1fr 1fr; }
  .hp-sb-title { font-size:16px; }
  .hp-sb-vb-ct { display:none; }
  .hp-sb-pills { gap:3px; }
  .hp-sb-pill  { font-size:10px; padding:1px 5px; }
}
