:root {
  --bg: #0f172a;
  --bg-soft: #111827;
  --panel: rgba(15, 23, 42, 0.88);
  --panel-border: rgba(148, 163, 184, 0.18);
  --text: #e5eefc;
  --muted: #94a3b8;
  --accent: #3b82f6;
  --accent-soft: rgba(59, 130, 246, 0.14);
  --good: #22c55e;
  --warn: #f59e0b;
  --danger: #ef4444;
  --shadow: 0 12px 32px rgba(2, 6, 23, 0.35);
  --radius: 18px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.12), transparent 22%),
    linear-gradient(180deg, #020617 0%, #0f172a 100%);
  color: var(--text);
}

body {
  min-height: 100vh;
}

a {
  color: #93c5fd;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page-shell {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
  padding: 20px 0 40px;
}

.hero,
.panel {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.hero {
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: #93c5fd;
  margin: 0 0 8px;
}

h1, h2 {
  margin: 0;
}

h1 {
  font-size: clamp(30px, 6vw, 42px);
}

h2 {
  font-size: 20px;
  margin-bottom: 4px;
}

.hero-text,
.muted,
.timestamp {
  color: var(--muted);
}

.hero-text {
  max-width: 720px;
  line-height: 1.6;
  margin: 10px 0 0;
}

.hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.primary-btn,
.ghost-btn,
.controls input,
.controls select {
  border-radius: 14px;
  min-height: 44px;
  font-size: 15px;
}

.primary-btn,
.ghost-btn {
  border: 1px solid transparent;
  padding: 0 16px;
  cursor: pointer;
}

.primary-btn {
  background: var(--accent);
  color: white;
  font-weight: 600;
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 41, 59, 0.85);
  border-color: var(--panel-border);
  color: var(--text);
}

.dashboard {
  display: grid;
  gap: 18px;
}

.panel {
  padding: 18px;
}

.panel-head {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(158px, 1fr));
  gap: 12px;
}

.stat-card {
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: 16px;
  min-height: 118px;
}

.stat-card .label {
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 10px;
}

.stat-card .value {
  font-size: clamp(24px, 5vw, 34px);
  font-weight: 700;
  margin-bottom: 8px;
}

.stat-card .meta {
  font-size: 13px;
  color: #cbd5e1;
}

.controls-panel {
  display: flex;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.controls input,
.controls select {
  border: 1px solid var(--panel-border);
  background: rgba(15, 23, 42, 0.92);
  color: var(--text);
  padding: 0 14px;
  min-width: min(280px, 100%);
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip,
.pill {
  border: 1px solid var(--panel-border);
  background: rgba(30, 41, 59, 0.7);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--panel-border);
  border-radius: 14px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 920px;
}

thead {
  background: rgba(30, 41, 59, 0.72);
}

th,
td {
  padding: 12px 10px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
  text-align: left;
  vertical-align: top;
  font-size: 14px;
}

tbody tr:hover {
  background: rgba(59, 130, 246, 0.05);
}

.raw-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.raw-links a {
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 10px 12px;
  background: rgba(15, 23, 42, 0.82);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
}

.badge.good {
  background: rgba(34, 197, 94, 0.14);
  color: #86efac;
}

.badge.warn {
  background: rgba(245, 158, 11, 0.14);
  color: #fcd34d;
}

.badge.danger {
  background: rgba(239, 68, 68, 0.14);
  color: #fca5a5;
}

.empty-row {
  text-align: center;
  color: var(--muted);
  padding: 22px;
}

.skeleton,
.skeleton-chip {
  position: relative;
  overflow: hidden;
}

.skeleton::after,
.skeleton-chip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: translateX(-100%);
  animation: shimmer 1.6s infinite;
}

.skeleton-chip {
  width: 140px;
  min-height: 38px;
}

@keyframes shimmer {
  100% { transform: translateX(100%); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 14px, 1180px);
    padding-top: 10px;
  }

  .hero,
  .panel {
    padding: 14px;
    border-radius: 14px;
  }

  table {
    min-width: 860px;
  }

  .controls input,
  .controls select {
    width: 100%;
    min-width: 100%;
  }
}

.hidden {
  display: none !important;
}


/* Center table data */
table th,
table td {
  text-align: center;
  vertical-align: middle;
}

/* Keep match names left-aligned for readability */
table th:nth-child(2),
table td:nth-child(2) {
  text-align: left;
}


/* Keep the single refresh button in the previous right-side action position */
.hero-actions {
  margin-left: auto;
}


/* Compact filters layout */
.compact-controls {
  align-items: center;
}

.compact-controls .controls {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(220px, 260px) minmax(220px, 260px);
  gap: 10px;
  align-items: center;
  flex: 1;
}

.compact-controls .controls input,
.compact-controls .controls select {
  width: 100%;
  min-width: 0;
}

@media (max-width: 900px) {
  .compact-controls .controls {
    grid-template-columns: 1fr;
  }
}


/* Image banner header */
.hero-banner {
  position: relative;
  padding: 0;
  overflow: hidden;
  min-height: 180px;
  align-items: stretch;
}

.hero-banner-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 180px;
  object-fit: cover;
}

.banner-actions {
  position: absolute;
  top: 18px;
  right: 18px;
  margin-left: 0;
}

.banner-actions .primary-btn {
  box-shadow: 0 10px 24px rgba(2, 6, 23, 0.35);
}

@media (max-width: 760px) {
  .hero-banner {
    min-height: 120px;
  }

  .hero-banner-image {
    min-height: 120px;
  }

  .banner-actions {
    top: 10px;
    right: 10px;
  }

  .banner-actions .primary-btn {
    min-height: 38px;
    font-size: 13px;
    padding: 0 12px;
  }
}


/* Subtle column separators */
table th,
table td {
  border-right: 1px solid rgba(148, 163, 184, 0.12);
  padding: 16px 14px;
}

table th:last-child,
table td:last-child {
  border-right: none;
}


/* ── Footer ── */
.site-footer {
  margin-top: 32px;
  border-top: 1px solid var(--panel-border);
  padding: 28px 0 20px;
  text-align: center;
}

.footer-content {
  width: min(720px, calc(100% - 24px));
  margin: 0 auto;
}

.footer-content p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 8px;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 16px 0 10px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #93c5fd;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-sep {
  color: var(--panel-border);
  font-size: 14px;
}

.copyright {
  font-size: 12px !important;
  color: #475569 !important;
  margin-top: 8px !important;
}


/* ── Member Nav ──────────────────────────────────────────────────────────── */
.member-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  flex-wrap: wrap;
  gap: 10px;
}

.member-nav-brand {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
}

.member-nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.credits-badge {
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  color: #93c5fd;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
}

.credits-badge.pro {
  background: rgba(245,158,11,0.15);
  border-color: rgba(245,158,11,0.3);
  color: #fcd34d;
}


/* ── Auth Modal ──────────────────────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.75);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-box {
  background: #0f172a;
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  padding: 28px;
  width: 100%;
  max-width: 420px;
  position: relative;
  box-shadow: 0 24px 60px rgba(2,6,23,0.6);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}

.modal-close:hover { color: var(--text); }

.modal-title {
  margin: 0 0 18px;
  font-size: 18px;
}

.auth-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  background: rgba(30,41,59,0.6);
  border-radius: 12px;
  padding: 4px;
}

.auth-tab {
  flex: 1;
  border: none;
  background: none;
  color: var(--muted);
  border-radius: 10px;
  padding: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.auth-tab.active {
  background: var(--accent);
  color: white;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.auth-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
}

.auth-form input {
  border: 1px solid var(--panel-border);
  background: rgba(15,23,42,0.9);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 15px;
  min-height: 44px;
}

.auth-form input:focus {
  outline: none;
  border-color: var(--accent);
}

.auth-submit {
  width: 100%;
  margin-top: 4px;
}

.auth-error {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.3);
  color: #fca5a5;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 12px;
}

.auth-success {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  color: #86efac;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  margin-bottom: 12px;
}

.auth-switch {
  text-align: center;
  margin: 14px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.full-width { width: 100%; }


/* ── Profile Modal ───────────────────────────────────────────────────────── */
.profile-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.profile-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--panel-border);
}

.profile-row span { color: var(--muted); }
.text-pro { color: #fcd34d; }


/* ── Pricing Section ─────────────────────────────────────────────────────── */
.pricing-panel { }

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.pricing-card {
  background: rgba(15,23,42,0.82);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-card-pro {
  border-color: rgba(245,158,11,0.4);
  background: rgba(245,158,11,0.04);
}

.pricing-badge {
  font-size: 13px;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 14px;
  display: inline-block;
  width: fit-content;
}

.free-badge {
  background: rgba(59,130,246,0.15);
  color: #93c5fd;
}

.pro-badge {
  background: rgba(245,158,11,0.2);
  color: #fcd34d;
}

.pricing-price {
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
}

.pricing-price span {
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: #cbd5e1;
  flex: 1;
}

.pricing-features li { line-height: 1.4; }


/* ── Locked Rows ─────────────────────────────────────────────────────────── */
.locked-row {
  opacity: 0.85;
}

.locked-cell {
  background: rgba(15,23,42,0.4);
}

.locked-blur {
  color: transparent;
  text-shadow: 0 0 8px rgba(148,163,184,0.5);
  user-select: none;
  letter-spacing: 4px;
  font-size: 16px;
}

.unlock-btn {
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  border: none;
  border-radius: 999px;
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.1s;
}

.unlock-btn:hover {
  opacity: 0.88;
  transform: scale(1.03);
}

.unlock-btn:disabled {
  opacity: 0.5;
  cursor: wait;
}

/* ── Filters inside pricing panel ── */
.pricing-filters {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--panel-border);
}

.pricing-filters .controls {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(180px, 240px) minmax(200px, 240px);
  gap: 10px;
}

.pricing-filters input,
.pricing-filters select {
  border: 1px solid var(--panel-border);
  background: rgba(15, 23, 42, 0.92);
  color: var(--text);
  border-radius: 14px;
  padding: 0 14px;
  min-height: 44px;
  font-size: 14px;
  width: 100%;
}

@media (max-width: 900px) {
  .pricing-filters .controls {
    grid-template-columns: 1fr;
  }
}

/* ── Promo code banner ── */
.pricing-promo {
  background: rgba(245, 158, 11, 0.12);
  border: 1px dashed rgba(245, 158, 11, 0.4);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 13px;
  color: #fcd34d;
  text-align: center;
}

.pricing-promo strong {
  color: #fbbf24;
  letter-spacing: 0.05em;
}

/* ── Predictions timestamp ── */
.predictions-timestamp {
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
}

/* ── Footer partner links ── */
.footer-partners {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--panel-border);
}

.footer-partners-title {
  font-size: 11px !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #475569 !important;
  margin-bottom: 10px !important;
}

.footer-partners-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
}

.footer-partners-links a {
  font-size: 12px;
  color: #64748b;
  transition: color 0.2s;
}

.footer-partners-links a:hover {
  color: #93c5fd;
  text-decoration: none;
}


/* ── Bet Slip ────────────────────────────────────────────────────────────── */
.bet-slip {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  background: #0f172a;
  border: 1px solid rgba(59,130,246,0.35);
  border-radius: 16px;
  box-shadow: 0 20px 48px rgba(2,6,23,0.6);
  z-index: 500;
  overflow: hidden;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}

.bet-slip-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(59,130,246,0.12);
  border-bottom: 1px solid rgba(59,130,246,0.2);
  flex-shrink: 0;
}

.bet-slip-title {
  font-weight: 700;
  font-size: 14px;
  color: #e5eefc;
}

.bet-slip-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.bet-slip-help-btn {
  background: rgba(59,130,246,0.2);
  border: 1px solid rgba(59,130,246,0.3);
  color: #93c5fd;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bet-slip-clear {
  background: none;
  border: none;
  color: #ef4444;
  font-size: 12px;
  cursor: pointer;
  padding: 0;
}

.bet-slip-toggle {
  background: none;
  border: none;
  color: var(--muted);
  font-size: 12px;
  cursor: pointer;
  padding: 0;
}

/* How To Banner */
.slip-howto {
  background: rgba(59,130,246,0.08);
  border-bottom: 1px solid rgba(59,130,246,0.15);
  padding: 14px;
  flex-shrink: 0;
}

.slip-howto-inner {
  font-size: 12px;
  color: #cbd5e1;
  line-height: 1.5;
}

.slip-howto-inner strong {
  display: block;
  color: #e5eefc;
  margin-bottom: 8px;
  font-size: 13px;
}

.slip-howto-inner ol {
  margin: 0 0 10px;
  padding-left: 18px;
}

.slip-howto-inner li { margin-bottom: 4px; }

.slip-howto-note {
  color: var(--muted);
  font-size: 11px;
  margin: 4px 0;
}

.slip-howto-close {
  width: 100%;
  margin-top: 10px;
  min-height: 36px;
  font-size: 13px;
  border-radius: 10px;
}

/* Slip Body */
.bet-slip-body {
  overflow-y: auto;
  flex: 1;
}

.slip-empty {
  padding: 20px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.slip-items {
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.slip-item {
  background: rgba(30,41,59,0.8);
  border: 1px solid var(--panel-border);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.slip-item-kicked {
  border-color: rgba(245,158,11,0.3);
  background: rgba(245,158,11,0.05);
}

.slip-item-main { flex: 1; min-width: 0; }

.slip-item-match {
  font-size: 13px;
  font-weight: 600;
  color: #e5eefc;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.slip-item-meta {
  font-size: 11px;
  color: var(--muted);
  margin: 2px 0 6px;
}

.slip-item-pick {
  display: flex;
  align-items: center;
  gap: 8px;
}

.slip-pick-badge {
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  color: #93c5fd;
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 700;
}

.slip-odds {
  font-size: 11px;
  color: #fcd34d;
  font-weight: 600;
}

.slip-remove-btn {
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  font-size: 14px;
  padding: 0;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}

.slip-remove-btn:hover { color: #ef4444; }

/* Slip Footer */
.slip-footer {
  padding: 12px 14px;
  border-top: 1px solid var(--panel-border);
  background: rgba(15,23,42,0.9);
  flex-shrink: 0;
}

.slip-footer-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 4px 0;
  color: #cbd5e1;
}

.slip-odds-row strong {
  color: #fcd34d;
  font-size: 16px;
}

.slip-disclaimer {
  font-size: 10px;
  color: #475569;
  margin: 8px 0 0;
  text-align: center;
}

/* Add to Slip button */
.add-slip-btn {
  background: rgba(59,130,246,0.15);
  border: 1px solid rgba(59,130,246,0.3);
  color: #93c5fd;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}

.add-slip-btn:hover {
  background: rgba(59,130,246,0.25);
}

.add-slip-btn.in-slip {
  background: rgba(34,197,94,0.15);
  border-color: rgba(34,197,94,0.3);
  color: #86efac;
}

/* Pick Chooser Modal */
.pick-modal-box {
  max-width: 340px;
}

.pick-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.pick-option-btn {
  background: rgba(30,41,59,0.8);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.2s;
  color: var(--text);
  font-family: inherit;
}

.pick-option-btn:hover {
  border-color: rgba(59,130,246,0.4);
  background: rgba(59,130,246,0.08);
}

.pick-option-name {
  font-size: 14px;
  font-weight: 600;
}

.pick-option-odds {
  font-size: 13px;
  color: #fcd34d;
  font-weight: 700;
}

/* Mobile slip */
@media (max-width: 600px) {
  .bet-slip {
    width: calc(100% - 24px);
    right: 12px;
    bottom: 12px;
  }
}


/* ── Banner slot ── */
.banner-slot {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex: 1;
  max-width: 728px;
}

.banner-img {
  width: 100%;
  max-width: 728px;
  height: 60px;
  border-radius: 8px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.banner-link {
  display: block;
}

.banner-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 4px;
}
