/* ============================================================
   БУКМЕКЕРЫ В РОССИИ — Component Library
   Built on portal-tokens.css. Component classes for the
   bookmaker aggregator portal.
   ============================================================ */

/* ─────────────────────────────────────────────────────────────
   0.  PRIMITIVES / HELPERS
   ───────────────────────────────────────────────────────────── */
.surface-data {
  background: var(--data-row);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}
.divider-gold { height: 1px; background: var(--color-gold-dim); border: 0; }
.mono-num { font-family: var(--font-num); font-variant-numeric: tabular-nums; }

/* ─────────────────────────────────────────────────────────────
   1.  BUTTONS  (extends base .btn)
   ───────────────────────────────────────────────────────────── */
/* Affiliate "go to bookmaker" — the money button */
.btn-go {
  background: var(--color-gold);
  color: var(--color-dark);
  box-shadow: var(--shadow-gold);
  position: relative;
}
.btn-go:hover { background: var(--color-gold-light); box-shadow: 0 6px 32px rgba(201,150,58,0.4); }

/* Electric / live secondary action */
.btn-blue {
  background: var(--sport-blue);
  color: #fff;
  box-shadow: 0 4px 20px var(--sport-blue-dim);
}
.btn-blue:hover { background: var(--sport-blue-light); }

.btn-outline-blue {
  background: transparent;
  color: var(--sport-blue-light);
  border: 1.5px solid var(--sport-blue);
}
.btn-outline-blue:hover { background: var(--sport-blue-dim); }

.btn-sm { padding: 9px 16px; font-size: var(--text-xs); }
.btn-icon {
  width: 40px; height: 40px; padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  cursor: pointer; transition: all var(--duration-md) var(--ease);
}
.btn-icon:hover { color: var(--color-gold); border-color: var(--color-gold-dim); }

/* ─────────────────────────────────────────────────────────────
   2.  BADGES / TAGS / CHIPS
   ───────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-xs);
  line-height: 1;
  white-space: nowrap;
}
.badge-license { background: var(--odds-up-dim); color: var(--odds-up); }
.badge-license::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--odds-up); }
.badge-nolicense { background: var(--odds-down-dim); color: var(--odds-down); }
.badge-exclusive { background: var(--color-gold-glow); color: var(--color-gold-light); border: 1px solid var(--color-gold-dim); }
.badge-new { background: var(--sport-blue-dim); color: var(--sport-blue-light); }
.badge-promo { background: var(--color-gold); color: var(--color-dark); }
.badge-age { background: var(--color-red); color: #fff; border-radius: var(--radius-full); padding: 5px 9px; }

/* LIVE indicator with pulse */
.badge-live {
  background: rgba(229,72,77,0.12);
  color: var(--live-red);
  font-weight: var(--font-weight-extrabold);
}
.badge-live .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--live-red);
  box-shadow: 0 0 0 0 rgba(229,72,77,0.6);
  animation: livePulse 1.6s infinite;
}
@keyframes livePulse {
  0%   { box-shadow: 0 0 0 0 rgba(229,72,77,0.55); }
  70%  { box-shadow: 0 0 0 7px rgba(229,72,77,0); }
  100% { box-shadow: 0 0 0 0 rgba(229,72,77,0); }
}

/* Filter / category chips */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-sans); font-size: var(--text-sm); font-weight: var(--font-weight-medium);
  padding: 8px 16px; border-radius: var(--radius-full);
  background: var(--bg-elevated); color: var(--text-secondary);
  border: 1px solid var(--border-subtle); cursor: pointer;
  transition: all var(--duration-md) var(--ease); white-space: nowrap;
}
.chip:hover { color: var(--text-primary); border-color: var(--color-gold-dim); }
.chip.is-active { background: var(--color-gold); color: var(--color-dark); border-color: var(--color-gold); font-weight: var(--font-weight-semibold); }

/* ─────────────────────────────────────────────────────────────
   3.  RATING — stars, score chip, bars
   ───────────────────────────────────────────────────────────── */
.stars { display: inline-flex; gap: 2px; --pct: 100%; }
.stars svg { width: 16px; height: 16px; display: block; }
.stars .star-bg { color: rgba(255,255,255,0.18); }
.stars .star-fill { color: var(--color-gold); }
.stars-track { position: relative; display: inline-block; }

.score-chip {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--bg-elevated); border: 1.5px solid var(--color-gold);
  font-family: var(--font-num); font-variant-numeric: tabular-nums;
}
.score-chip .score-value { font-size: var(--text-2xl); font-weight: var(--font-weight-bold); color: var(--color-gold-pale); line-height: 1; }
.score-chip .score-max { font-size: 10px; color: var(--text-tertiary); letter-spacing: .05em; }
.score-chip.is-high { border-color: var(--score-high); }
.score-chip.is-high .score-value { color: var(--score-high); }
.score-chip.is-low  { border-color: var(--score-low); }
.score-chip.is-low  .score-value { color: var(--score-low); }

.rating-bar { display: flex; align-items: center; gap: 12px; }
.rating-bar .bar-label { font-size: var(--text-sm); color: var(--text-secondary); width: 120px; flex: none; }
.rating-bar .bar-track { flex: 1; height: 6px; border-radius: var(--radius-full); background: rgba(255,255,255,0.08); overflow: hidden; }
.rating-bar .bar-fill { height: 100%; border-radius: var(--radius-full); background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light)); }
.rating-bar .bar-value { font-family: var(--font-num); font-variant-numeric: tabular-nums; font-size: var(--text-sm); font-weight: 600; color: var(--color-gold-pale); width: 36px; text-align: right; }

/* ─────────────────────────────────────────────────────────────
   4.  BOOKMAKER CARD  (core unit)
   ───────────────────────────────────────────────────────────── */
.bk-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: var(--space-4) var(--space-5);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-5) var(--space-6);
  transition: all var(--duration-md) var(--ease);
}
.bk-card:hover { border-color: rgba(201,150,58,0.55); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.bk-card.is-top { border-color: var(--color-gold); box-shadow: var(--shadow-gold); }

.bk-rank {
  position: absolute; top: -10px; left: -10px;
  width: 30px; height: 30px; border-radius: var(--radius-sm);
  background: var(--color-gold); color: var(--color-dark);
  display: grid; place-items: center;
  font-family: var(--font-num); font-weight: 800; font-size: var(--text-sm);
  box-shadow: var(--shadow-sm);
}
.bk-rank.is-other { background: var(--bg-elevated); color: var(--text-secondary); border: 1px solid var(--border-subtle); }

.bk-logo {
  width: 64px; height: 64px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #232342, #1a1a30);
  border: 1px solid var(--border-subtle);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: var(--text-xl);
  color: var(--color-gold-pale); text-align: center; line-height: 1;
}
img.bk-logo, img.mini-logo { object-fit: cover; display: block; flex: none; }
.bk-head { display: flex; flex-direction: column; gap: 8px; }
.bk-name { font-family: var(--font-sans); font-size: var(--text-xl); font-weight: var(--font-weight-bold); color: var(--text-primary); }
.bk-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.bk-rating-line { display: flex; align-items: center; gap: 8px; }
.bk-rating-line .rv { font-family: var(--font-num); font-variant-numeric: tabular-nums; font-weight: 700; color: var(--color-gold-pale); }
.bk-rating-line .rc { font-size: var(--text-xs); color: var(--text-tertiary); }

.bk-bonus {
  grid-column: 1 / -1;
  display: flex; align-items: baseline; gap: 8px;
  padding: var(--space-3) var(--space-4);
  background: var(--color-gold-glow); border: 1px dashed var(--color-gold-dim);
  border-radius: var(--radius-sm);
}
.bk-bonus .bonus-label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: var(--tracking-wide); color: var(--text-secondary); }
.bk-bonus .bonus-value { font-family: var(--font-num); font-variant-numeric: tabular-nums; font-size: var(--text-lg); font-weight: 800; color: var(--color-gold-pale); }

.bk-specs { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.bk-spec { display: flex; flex-direction: column; gap: 3px; }
.bk-spec .k { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--text-tertiary); }
.bk-spec .v { font-family: var(--font-num); font-variant-numeric: tabular-nums; font-size: var(--text-base); font-weight: 600; color: var(--text-primary); }
.bk-spec .v.good { color: var(--odds-up); }

.bk-actions { grid-column: 1 / -1; display: flex; gap: var(--space-3); align-items: center; }
.bk-actions .btn { flex: 1; justify-content: center; }
.bk-actions .btn-go { flex: 2; }

/* ─────────────────────────────────────────────────────────────
   5.  RATING TABLE / TOP LIST
   ───────────────────────────────────────────────────────────── */
.rank-table { width: 100%; border-collapse: separate; border-spacing: 0; font-family: var(--font-body); }
.rank-table thead th {
  position: sticky; top: 0;
  background: var(--data-head); color: var(--text-tertiary);
  font-family: var(--font-sans); font-size: var(--text-xs); font-weight: 700;
  letter-spacing: var(--tracking-wide); text-transform: uppercase;
  text-align: left; padding: var(--space-4); border-bottom: 1px solid var(--color-gold-dim);
}
.rank-table tbody td { padding: var(--space-4); border-bottom: 1px solid var(--border-subtle); vertical-align: middle; }
.rank-table tbody tr { transition: background var(--duration-sm) var(--ease); }
.rank-table tbody tr:hover { background: var(--data-row-hover); }
.rank-table .col-num { width: 48px; text-align: center; font-family: var(--font-num); font-weight: 800; color: var(--text-tertiary); }
.rank-table .top1 .col-num { color: var(--color-gold); }
.rank-table .bk-cell { display: flex; align-items: center; gap: 12px; }
.rank-table .bk-cell .mini-logo {
  width: 40px; height: 40px; border-radius: var(--radius-xs);
  background: linear-gradient(135deg,#232342,#1a1a30); border: 1px solid var(--border-subtle);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700;
  color: var(--color-gold-pale); font-size: var(--text-sm); flex: none;
}
.rank-table .bk-cell .nm { font-weight: 600; color: var(--text-primary); }
.rank-table .bk-cell .sub { font-size: var(--text-xs); color: var(--text-tertiary); }

/* ─────────────────────────────────────────────────────────────
   6.  ODDS WIDGET / LINE
   ───────────────────────────────────────────────────────────── */
.odds-block { background: var(--bg-card); border: 1px solid var(--border-subtle); border-radius: var(--radius-md); overflow: hidden; }
.odds-match-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-4) var(--space-5);
  background: var(--data-head); border-bottom: 1px solid var(--border-subtle);
}
.odds-teams { display: flex; flex-direction: column; gap: 4px; }
.odds-teams .league { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: var(--tracking-wide); color: var(--sport-blue-light); }
.odds-teams .vs { font-family: var(--font-sans); font-size: var(--text-lg); font-weight: 700; color: var(--text-primary); }
.odds-time { font-family: var(--font-num); font-variant-numeric: tabular-nums; font-size: var(--text-sm); color: var(--text-secondary); text-align: right; }

/* Comparison row: a bookmaker and its odds for 1 / X / 2 */
.odds-row {
  display: grid; grid-template-columns: 1.4fr repeat(3, 1fr);
  align-items: center; gap: var(--space-3);
  padding: var(--space-3) var(--space-5);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--duration-sm) var(--ease);
}
.odds-row:nth-child(even) { background: var(--data-row-alt); }
.odds-row:hover { background: var(--data-row-hover); }
.odds-row .ob-name { display: flex; align-items: center; gap: 10px; }
.odds-row .ob-name .mini-logo { width: 30px; height: 30px; border-radius: var(--radius-xs); background: linear-gradient(135deg,#232342,#1a1a30); border: 1px solid var(--border-subtle); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: var(--color-gold-pale); font-size: 12px; flex: none; }
.odds-row .ob-name .nm { font-size: var(--text-sm); font-weight: 600; color: var(--text-primary); }

.odds-cell {
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  padding: 10px 6px; border-radius: var(--radius-sm);
  background: var(--bg-elevated); border: 1px solid var(--border-subtle);
  font-size: var(--text-base); font-weight: 700; color: var(--text-primary);
  cursor: pointer; transition: all var(--duration-sm) var(--ease);
}
.odds-cell:hover { border-color: var(--color-gold); color: var(--color-gold-pale); }
.odds-cell.is-best { border-color: var(--odds-up); background: var(--odds-up-dim); color: var(--odds-up); }
.odds-cell .arrow { font-size: 10px; line-height: 1; }
.odds-cell.up   .arrow { color: var(--odds-up); }
.odds-cell.down .arrow { color: var(--odds-down); }
.odds-cell.up   { box-shadow: inset 0 -2px 0 var(--odds-up); }
.odds-cell.down { box-shadow: inset 0 -2px 0 var(--odds-down); }
.odds-colhead { display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: var(--space-3); padding: var(--space-2) var(--space-5); }
.odds-colhead span { text-align: center; font-size: var(--text-xs); font-weight: 700; text-transform: uppercase; letter-spacing: var(--tracking-wide); color: var(--text-tertiary); }
.odds-colhead span:first-child { text-align: left; }

/* ─────────────────────────────────────────────────────────────
   7.  NEWS FEED
   ───────────────────────────────────────────────────────────── */
.news-card {
  display: flex; flex-direction: column;
  background: var(--bg-card); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md); overflow: hidden;
  transition: all var(--duration-md) var(--ease);
}
.news-card:hover { border-color: var(--color-gold-dim); transform: translateY(-3px); box-shadow: var(--shadow-card); }
.news-thumb { aspect-ratio: 16/9; background: linear-gradient(135deg,#1d1d38,#13131f); position: relative; display: grid; place-items: center; overflow: hidden; }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.news-thumb .ph-ico { color: var(--text-tertiary); opacity: .5; }
.news-thumb .news-cat { position: absolute; left: var(--space-3); top: var(--space-3); }
.news-body { padding: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); flex: 1; }
.news-title { font-family: var(--font-sans); font-size: var(--text-lg); font-weight: 700; color: var(--text-primary); line-height: var(--leading-snug); text-wrap: pretty; }
.news-excerpt { font-size: var(--text-sm); color: var(--text-secondary); line-height: var(--leading-normal); }
.news-meta { margin-top: auto; display: flex; align-items: center; gap: 10px; font-size: var(--text-xs); color: var(--text-tertiary); }
.news-meta .dot-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--text-tertiary); }

/* Compact list row */
.news-row { display: grid; grid-template-columns: 84px 1fr; gap: var(--space-4); padding: var(--space-3) 0; border-bottom: 1px solid var(--border-subtle); align-items: center; }
.news-row .news-thumb { aspect-ratio: 1; border-radius: var(--radius-sm); }
.news-row .nr-title { font-family: var(--font-sans); font-weight: 600; font-size: var(--text-base); color: var(--text-primary); line-height: var(--leading-snug); }
.news-row .nr-meta { font-size: var(--text-xs); color: var(--text-tertiary); margin-top: 6px; }

/* ─────────────────────────────────────────────────────────────
   8.  DETAIL-PAGE BLOCKS
   ───────────────────────────────────────────────────────────── */
.bonus-block {
  display: flex; flex-direction: column; gap: var(--space-3);
  background: linear-gradient(135deg, var(--color-gold-glow), transparent);
  border: 1px solid var(--color-gold-dim); border-radius: var(--radius-md);
  padding: var(--space-6);
}
.bonus-block .bb-label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: var(--tracking-wide); color: var(--color-gold); font-weight: 700; }
.bonus-block .bb-value { font-family: var(--font-num); font-variant-numeric: tabular-nums; font-size: var(--text-4xl); font-weight: 800; color: var(--color-gold-pale); line-height: 1; }
.bonus-block .bb-terms { font-size: var(--text-xs); color: var(--text-tertiary); }

.legal-block { display: flex; flex-direction: column; gap: var(--space-4); }
.legal-row { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding: var(--space-3) 0; border-bottom: 1px solid var(--border-subtle); }
.legal-row .lk { font-size: var(--text-sm); color: var(--text-secondary); }
.legal-row .lv { font-size: var(--text-sm); font-weight: 600; color: var(--text-primary); display: flex; align-items: center; gap: 8px; }

.proscons { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.pc-col { display: flex; flex-direction: column; gap: var(--space-3); }
.pc-col h5 { font-family: var(--font-sans); font-size: var(--text-sm); text-transform: uppercase; letter-spacing: var(--tracking-wide); font-weight: 700; }
.pc-col.pros h5 { color: var(--odds-up); }
.pc-col.cons h5 { color: var(--odds-down); }
.pc-item { display: flex; gap: 10px; font-size: var(--text-sm); color: var(--text-secondary); line-height: var(--leading-normal); }
.pc-item .ic { flex: none; margin-top: 2px; }
.pros .ic { color: var(--odds-up); }
.cons .ic { color: var(--odds-down); }

.pay-methods { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.pay-pill { padding: 8px 14px; border-radius: var(--radius-sm); background: var(--bg-elevated); border: 1px solid var(--border-subtle); font-size: var(--text-sm); font-weight: 600; color: var(--text-secondary); }

.review-summary { display: grid; grid-template-columns: auto 1fr; gap: var(--space-6); align-items: center; }
.review-big { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.review-big .rb-num { font-family: var(--font-num); font-variant-numeric: tabular-nums; font-size: var(--text-6xl); font-weight: 800; color: var(--color-gold-pale); line-height: 1; }
.review-big .rb-count { font-size: var(--text-xs); color: var(--text-tertiary); }
.review-item { display: flex; flex-direction: column; gap: 8px; padding: var(--space-4) 0; border-bottom: 1px solid var(--border-subtle); }
.review-item .ri-head { display: flex; align-items: center; gap: 12px; }
.review-item .ri-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--bg-elevated); border: 1px solid var(--border-subtle); display: grid; place-items: center; font-weight: 700; color: var(--color-gold-pale); font-size: var(--text-sm); }
.review-item .ri-name { font-weight: 600; color: var(--text-primary); font-size: var(--text-sm); }
.review-item .ri-date { font-size: var(--text-xs); color: var(--text-tertiary); }
.review-item .ri-text { font-size: var(--text-sm); color: var(--text-secondary); line-height: var(--leading-normal); }

/* ─────────────────────────────────────────────────────────────
   9.  PERSONAL CABINET
   ───────────────────────────────────────────────────────────── */
/* Toggle / switch */
.switch { position: relative; display: inline-block; width: 46px; height: 26px; flex: none; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch .track { position: absolute; inset: 0; border-radius: var(--radius-full); background: var(--bg-elevated); border: 1px solid var(--border-subtle); transition: all var(--duration-md) var(--ease); cursor: pointer; }
.switch .track::before { content: ''; position: absolute; width: 18px; height: 18px; border-radius: 50%; background: var(--text-secondary); top: 3px; left: 3px; transition: all var(--duration-md) var(--ease); }
.switch input:checked + .track { background: var(--color-gold); border-color: var(--color-gold); }
.switch input:checked + .track::before { transform: translateX(20px); background: var(--color-dark); }

.sub-row { display: flex; align-items: center; justify-content: space-between; gap: var(--space-4); padding: var(--space-4) 0; border-bottom: 1px solid var(--border-subtle); }
.sub-row .sr-text { display: flex; flex-direction: column; gap: 3px; }
.sub-row .sr-title { font-weight: 600; color: var(--text-primary); font-size: var(--text-base); }
.sub-row .sr-desc { font-size: var(--text-xs); color: var(--text-tertiary); }

/* Favorite / followed item */
.fav-row { display: flex; align-items: center; gap: var(--space-4); padding: var(--space-3) var(--space-4); border-radius: var(--radius-sm); background: var(--bg-card); border: 1px solid var(--border-subtle); }
.fav-row .mini-logo { width: 40px; height: 40px; border-radius: var(--radius-xs); background: linear-gradient(135deg,#232342,#1a1a30); border: 1px solid var(--border-subtle); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: var(--color-gold-pale); font-size: var(--text-sm); flex: none; }
.fav-row .star-btn { margin-left: auto; color: var(--color-gold); cursor: pointer; background: none; border: none; }

/* Notification feed */
.notif { display: grid; grid-template-columns: 36px 1fr auto; gap: var(--space-3); align-items: start; padding: var(--space-3) 0; border-bottom: 1px solid var(--border-subtle); }
.notif .n-ico { width: 36px; height: 36px; border-radius: var(--radius-sm); display: grid; place-items: center; flex: none; }
.notif .n-ico.bonus { background: var(--color-gold-glow); color: var(--color-gold); }
.notif .n-ico.line  { background: var(--sport-blue-dim); color: var(--sport-blue-light); }
.notif .n-ico.news  { background: var(--bg-elevated); color: var(--text-secondary); }
.notif .n-text { font-size: var(--text-sm); color: var(--text-secondary); line-height: var(--leading-normal); }
.notif .n-text b { color: var(--text-primary); }
.notif .n-time { font-size: var(--text-xs); color: var(--text-tertiary); white-space: nowrap; }
.notif.is-unread { position: relative; }
.notif.is-unread::after { content: ''; position: absolute; right: 0; top: var(--space-4); width: 7px; height: 7px; border-radius: 50%; background: var(--sport-blue); }

/* ─────────────────────────────────────────────────────────────
   10.  INPUTS / SEARCH / TABS / PAGINATION
   ───────────────────────────────────────────────────────────── */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: var(--text-xs); text-transform: uppercase; letter-spacing: var(--tracking-wide); color: var(--text-tertiary); font-weight: 600; }
.input {
  width: 100%; padding: 13px 16px; border-radius: var(--radius-sm);
  background: var(--bg-elevated); border: 1px solid var(--border-subtle);
  color: var(--text-primary); font-family: var(--font-body); font-size: var(--text-base);
  transition: all var(--duration-md) var(--ease);
}
.input::placeholder { color: var(--text-tertiary); }
.input:focus { outline: none; border-color: var(--color-gold); box-shadow: 0 0 0 3px var(--color-gold-glow); }
.search { position: relative; }
.search .input { padding-left: 44px; }
.search .s-ico { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-tertiary); }

.tabs { display: flex; gap: var(--space-1); border-bottom: 1px solid var(--border-subtle); }
.tab { padding: 12px 18px; font-family: var(--font-sans); font-size: var(--text-sm); font-weight: 600; color: var(--text-secondary); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: all var(--duration-md) var(--ease); white-space: nowrap; }
.tab:hover { color: var(--text-primary); }
.tab.is-active { color: var(--color-gold); border-bottom-color: var(--color-gold); }

.pagination { display: flex; gap: var(--space-2); align-items: center; }
.page-btn { min-width: 38px; height: 38px; padding: 0 10px; border-radius: var(--radius-sm); background: var(--bg-elevated); border: 1px solid var(--border-subtle); color: var(--text-secondary); font-family: var(--font-num); font-weight: 600; cursor: pointer; display: grid; place-items: center; transition: all var(--duration-md) var(--ease); }
.page-btn:hover { color: var(--text-primary); border-color: var(--color-gold-dim); }
.page-btn.is-active { background: var(--color-gold); color: var(--color-dark); border-color: var(--color-gold); }

/* ─────────────────────────────────────────────────────────────
   11.  COMPLIANCE
   ───────────────────────────────────────────────────────────── */
.age-badge {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: transparent; border: 2px solid var(--color-red);
  color: var(--color-red); font-family: var(--font-num); font-weight: 800; font-size: var(--text-base);
}
.disclaimer-bar {
  display: flex; align-items: center; gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: var(--data-head); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}
.disclaimer-bar .dc-text { font-size: var(--text-xs); color: var(--text-tertiary); line-height: var(--leading-normal); }
.disclaimer-bar .dc-text b { color: var(--text-secondary); }
.responsible-note { font-size: var(--text-xs); color: var(--text-tertiary); display: flex; align-items: center; gap: 8px; }
.responsible-note .rn-bar { width: 24px; height: 2px; background: var(--color-gold); }
