:root {
  --bg: #0d0d1a;
  --bg-card: #171728;
  --bg-header: #0a0a15;
  --bg-secondary: #12121e;
  --bg-section: #111120;
  --accent: #f0b429;
  --accent-hover: #ffc940;
  --accent-dark: #c4901a;
  --text: #ffffff;
  --text-muted: #8888a8;
  --text-dim: #5a5a7a;
  --border: #22224a;
  --radius-card: 12px;
  --radius-btn: 8px;
  --header-h: 68px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ───── HEADER ───── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-header);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo img {
  height: 32px;
  width: auto;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 7px 12px;
  border-radius: 6px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s, background .2s;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text);
  background: rgba(255,255,255,.06);
}

.site-nav a.active { color: var(--accent); }

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 14px;
  padding: 9px 20px;
  transition: all .2s;
  white-space: nowrap;
}

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.btn-primary {
  background: var(--accent);
  color: #0a0a15;
}

.btn-primary:hover { background: var(--accent-hover); }

.btn-lg { padding: 12px 28px; font-size: 15px; }

.burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: 6px;
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s;
}

.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-header);
  z-index: 99;
  overflow-y: auto;
  padding: 20px;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--border);
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  padding: 13px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--accent); background: rgba(240,180,41,.07); }

.mobile-nav-actions {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* ───── HERO ───── */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,10,21,.95) 40%, rgba(10,10,21,.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 60px 20px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(240,180,41,.15);
  border: 1px solid rgba(240,180,41,.3);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(26px, 5vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  max-width: 560px;
  margin-bottom: 14px;
}

.hero-title span { color: var(--accent); }

.hero-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 11.5px;
  color: var(--text-dim);
  margin-top: 12px;
}

/* Bonus stats strip */
.bonus-strip {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
}

.bonus-strip-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.bonus-strip-inner::-webkit-scrollbar { display: none; }

.bonus-stat {
  flex-shrink: 0;
  padding: 18px 28px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.bonus-stat:last-child { border-right: none; }

.bonus-stat-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.bonus-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ───── SECTION ───── */
.section {
  padding: 36px 0;
}

.section-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  gap: 12px;
}

.section-title {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 18px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.see-all {
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: .85;
  transition: opacity .2s;
}

.see-all:hover { opacity: 1; }

/* ───── GAME GRID ───── */
.game-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.game-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--bg-card);
  aspect-ratio: 3/4;
  display: flex;
  flex-direction: column;
}

.game-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s;
}

.game-card:hover img { transform: scale(1.05); }

.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,21,.92) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .25s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 14px;
}

.game-card:hover .game-overlay { opacity: 1; }

.game-play-btn {
  background: var(--accent);
  color: #0a0a15;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 20px;
  border-radius: 6px;
  width: 100%;
  text-align: center;
  display: block;
}

.game-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 10px;
  background: linear-gradient(to top, rgba(10,10,21,.9) 0%, transparent 100%);
}

.game-name {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-provider {
  font-size: 10px;
  color: var(--text-muted);
}

/* ───── FEATURES ───── */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.feature-icon {
  font-size: 26px;
  flex-shrink: 0;
  line-height: 1;
}

.feature-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--accent);
}

.feature-text {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ───── BONUS CARDS ───── */
.bonus-stages {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.bonus-stage-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 22px 20px;
  display: flex;
  gap: 18px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.bonus-stage-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--accent);
}

.stage-num {
  font-size: 36px;
  font-weight: 900;
  color: rgba(240,180,41,.15);
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
}

.stage-info {}

.stage-deposit {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}

.stage-amount {
  font-size: 22px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.1;
}

.stage-spins {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Steps list */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(240,180,41,.15);
  border: 1.5px solid rgba(240,180,41,.4);
  color: var(--accent);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-body {}

.step-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.step-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ───── PROVIDERS ───── */
.providers-grid {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.provider-logo {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, transform .2s;
}

.provider-logo:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.provider-logo img {
  height: 30px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .7;
  transition: opacity .2s;
}

.provider-logo:hover img { opacity: 1; }

/* ───── FILTER TABS ───── */
.filter-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
  margin-bottom: 20px;
}

.filter-tabs::-webkit-scrollbar { display: none; }

.filter-tab {
  flex-shrink: 0;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all .2s;
  cursor: pointer;
}

.filter-tab:hover { color: var(--text); border-color: rgba(255,255,255,.2); }
.filter-tab.active { background: var(--accent); color: #0a0a15; border-color: transparent; }

/* ───── SIGN UP FORM (visual) ───── */
.signup-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  max-width: 480px;
}

.signup-visual .form-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 6px;
}

.signup-visual .form-sub {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.form-field {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  height: 48px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  color: var(--text-dim);
  font-size: 14px;
}

.form-field-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 6px;
  font-weight: 500;
}

.form-age-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
  font-size: 13px;
  color: var(--text-muted);
}

.fake-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid var(--accent);
  border-radius: 4px;
  background: rgba(240,180,41,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fake-checkbox::after {
  content: '✓';
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
}

/* ───── PAYMENT TABLE ───── */
.payment-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-row {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
}

.payment-method { font-size: 14px; font-weight: 600; }
.payment-meta { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.payment-speed {
  font-size: 12px;
  font-weight: 600;
  color: #4ade80;
  background: rgba(74,222,128,.1);
  border: 1px solid rgba(74,222,128,.2);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ───── SEO TEXT BLOCK ───── */
.seo-block {
  background: var(--bg-section);
  border-top: 1px solid var(--border);
  padding: 52px 0;
}

.seo-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.seo-inner h1 {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.25;
}

.seo-inner h2 {
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 700;
  margin: 36px 0 14px;
  color: var(--accent);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.seo-inner h3 {
  font-size: 17px;
  font-weight: 700;
  margin: 24px 0 10px;
  color: var(--text);
}

.seo-inner h4 {
  font-size: 15px;
  font-weight: 600;
  margin: 18px 0 8px;
  color: var(--text-muted);
}

.seo-inner p {
  margin-bottom: 16px;
  color: #c8c8d8;
  line-height: 1.75;
  font-size: 15px;
}

.seo-inner strong { color: var(--text); font-weight: 600; }

.seo-inner ul {
  margin: 12px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seo-inner ul li {
  padding-left: 20px;
  position: relative;
  color: #c8c8d8;
  font-size: 14.5px;
  line-height: 1.65;
}

.seo-inner ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
  top: 2px;
}

.seo-inner ol {
  margin: 12px 0 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  counter-reset: seo-ol;
  list-style: none;
}

.seo-inner ol li {
  counter-increment: seo-ol;
  padding-left: 28px;
  position: relative;
  color: #c8c8d8;
  font-size: 14.5px;
  line-height: 1.65;
}

.seo-inner ol li::before {
  content: counter(seo-ol);
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background: rgba(240,180,41,.15);
  border: 1px solid rgba(240,180,41,.3);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 1px;
}

/* Tables */
.seo-inner .table-wrap,
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 18px 0;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.seo-inner table,
.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
  min-width: 480px;
}

.seo-inner thead th,
.data-table thead th {
  background: rgba(240,180,41,.08);
  color: var(--accent);
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--border);
}

.seo-inner tbody td,
.data-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: #c8c8d8;
  vertical-align: top;
}

.seo-inner tbody tr:last-child td,
.data-table tbody tr:last-child td { border-bottom: none; }

.seo-inner tbody tr:nth-child(even),
.data-table tbody tr:nth-child(even) { background: rgba(255,255,255,.02); }

.seo-inner tbody tr:hover td,
.data-table tbody tr:hover td { background: rgba(240,180,41,.04); }

/* FAQ in seo block */
.seo-inner .faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
}

.seo-inner .faq-q {
  padding: 15px 18px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.seo-inner .faq-q::after {
  content: '+';
  color: var(--accent);
  font-size: 18px;
  font-weight: 400;
  flex-shrink: 0;
}

.seo-inner .faq-a {
  padding: 0 18px 16px;
  color: var(--text-muted);
  font-size: 13.5px;
  line-height: 1.65;
}

/* ───── INFO BANNER ───── */
.info-banner {
  background: rgba(240,180,41,.06);
  border: 1px solid rgba(240,180,41,.2);
  border-radius: 12px;
  padding: 20px 22px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.info-banner-icon { font-size: 22px; flex-shrink: 0; }
.info-banner-title { font-size: 14px; font-weight: 700; margin-bottom: 5px; color: var(--accent); }
.info-banner-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ───── FOOTER ───── */
.site-footer {
  background: var(--bg-header);
  border-top: 1px solid var(--border);
  padding: 40px 0 28px;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.footer-logo { margin-bottom: 14px; }

.footer-logo img { height: 28px; width: auto; }

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 300px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.footer-cta { display: inline-flex; }

.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13.5px;
  color: var(--text-muted);
  transition: color .2s;
}

.footer-links a:hover { color: var(--accent); }

.footer-providers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-provider-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .4;
  transition: opacity .2s;
}

.footer-provider-logo:hover { opacity: .7; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.footer-disclaimer {
  font-size: 11.5px;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 700px;
}

.footer-disclaimer strong { color: var(--text-muted); }

.footer-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.badge-18 {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-muted);
}

/* ───── HIGHLIGHTS ROW ───── */
.highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.highlight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
}

.highlight-val {
  font-size: 24px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 5px;
}

.highlight-label {
  font-size: 11.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ───── RESPONSIVE ───── */
@media (min-width: 480px) {
  .game-grid { grid-template-columns: repeat(3, 1fr); }
  .highlights { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 768px) {
  .site-nav { display: flex; }
  .burger { display: none; }

  .game-grid { grid-template-columns: repeat(4, 1fr); }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .bonus-stages { grid-template-columns: repeat(3, 1fr); }

  .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; }

  .hero { min-height: 460px; }
}

@media (min-width: 1200px) {
  .game-grid { grid-template-columns: repeat(6, 1fr); }

  .hero-content { padding: 80px 40px; }
  .section-inner { padding: 0 40px; }
  .header-inner { padding: 0 40px; }
  .footer-inner { padding: 0 40px; }
  .bonus-strip-inner { padding: 0 40px; }
}

/* ───── SIGN-UP 2-COL LAYOUT ───── */
@media (min-width: 900px) {
  .signup-layout {
    grid-template-columns: 1fr 420px !important;
  }
}

/* ───── UTILS ───── */
.text-accent { color: var(--accent); }
.text-muted { color: var(--text-muted); }
.fw-800 { font-weight: 800; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 32px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(240,180,41,.12);
  color: var(--accent);
  border: 1px solid rgba(240,180,41,.25);
}

.live-badge {
  background: rgba(239,68,68,.15);
  color: #f87171;
  border-color: rgba(239,68,68,.3);
}

.new-badge {
  background: rgba(74,222,128,.12);
  color: #4ade80;
  border-color: rgba(74,222,128,.25);
}
