.reg-hero { background: var(--surface); border-bottom: 1px solid var(--border); padding: 36px 24px 28px; width: 100%; }
.reg-hero-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.reg-hero h1 { font-family: var(--display); font-size: 26px; font-weight: 800; margin-bottom: 6px; }
.reg-hero p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }
.reg-stats { display: flex; gap: 20px; flex-shrink: 0; }
.reg-stat { text-align: center; background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 10px 20px; }
.reg-stat-num { font-family: var(--mono); font-size: 22px; font-weight: 700; color: var(--accent); }
.reg-stat-label { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.reg-filter { background: var(--surface); border-bottom: 1px solid var(--border); padding: 12px 24px; position: sticky; top: 96px; z-index: 50; width: 100%; }
.reg-filter-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.reg-search { display: flex; align-items: center; gap: 8px; background: var(--bg); border: 1.5px solid var(--border); border-radius: 8px; padding: 6px 12px; flex: 1; min-width: 180px; max-width: 280px; transition: border-color .15s; }
.reg-search:focus-within { border-color: var(--accent); }
.reg-search svg { color: var(--text-muted); flex-shrink: 0; }
.reg-search input { border: none; outline: none; background: transparent; font-family: var(--body); font-size: 13px; color: var(--text); width: 100%; }
.reg-search input::placeholder { color: var(--text-muted); }
.reg-body { max-width: 1200px; margin: 0 auto; padding: 28px 24px 80px; width: 100%; }
.reg-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 16px; }
.reg-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; display: flex; flex-direction: column; gap: 14px; transition: box-shadow .15s, border-color .15s; }
.reg-card:hover { border-color: #c8d4e8; box-shadow: 0 4px 18px rgba(0,0,0,.07); }
.reg-card.reg-card--hidden { display: none; }
.reg-empty.reg-card--hidden { display: none; }
.reg-card-head { display: flex; align-items: center; gap: 12px; }
.reg-logo { width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--border); object-fit: contain; background: var(--bg); flex-shrink: 0; }
.reg-name-wrap { flex: 1; min-width: 0; }
.reg-name { font-weight: 700; font-size: 14.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.reg-country { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.reg-affiliate-badge { font-size: 10px; font-weight: 600; padding: 2px 7px; border-radius: 4px; background: var(--green-light); color: var(--green); white-space: nowrap; flex-shrink: 0; }
.reg-meta { display: grid; grid-template-columns: 1fr; gap: 8px; }
.reg-meta-item { background: var(--bg); border-radius: 7px; padding: 7px 10px; }
.reg-meta-label { font-size: 10px; color: var(--text-muted); margin-bottom: 2px; font-weight: 500; }
.reg-meta-value { font-size: 12.5px; font-weight: 600; color: var(--text); font-family: var(--mono); }
.reg-actions { display: flex; gap: 8px; margin-top: 2px; }
.reg-btn { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 5px; font-size: 12px; font-weight: 600; font-family: var(--body); padding: 7px 10px; border-radius: 7px; text-decoration: none; transition: background .15s, color .15s, border-color .15s; cursor: pointer; border: none; }
.reg-btn-primary { background: var(--accent); color: #fff; }
.reg-btn-primary:hover { background: #1558cc; }
.reg-btn-secondary { background: var(--bg); color: var(--text); border: 1.5px solid var(--border); }
.reg-btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.reg-empty { grid-column: 1 / -1; text-align: center; padding: 60px 0; color: var(--text-muted); }
.reg-empty-icon { font-size: 36px; margin-bottom: 10px; }
.reg-section-label { grid-column: 1 / -1; font-size: 11px; font-weight: 700; letter-spacing: .07em; color: var(--text-muted); text-transform: uppercase; padding: 4px 0 8px; border-bottom: 1px solid var(--border); margin-bottom: 4px; display: flex; align-items: center; gap: 8px; }
.reg-section-label.reg-section-label--hidden { display: none; }
.reg-section-label .count { background: var(--border); color: var(--text-muted); border-radius: 99px; font-size: 10px; padding: 1px 7px; font-weight: 600; }
@media (max-width: 680px) {
  .reg-grid { grid-template-columns: 1fr; }
  .reg-stats { width: 100%; justify-content: flex-start; }
  .reg-hero-inner { flex-direction: column; align-items: flex-start; }
  .reg-filter-inner { gap: 8px; }
  .reg-search { max-width: 100%; }
}
