:root {
  --status-hot: #f43f5e;
  --status-safe: #22c55e;
  --status-warn: #eab308;
  --status-offline: #6b7280;
  --surface-base: #0f1116;
  --surface-elevated: #1b1f28;
}

* {
  box-sizing: border-box;
}

body.app-shell {
  background: radial-gradient(1200px 600px at -5% -10%, rgba(244, 63, 94, 0.22), transparent 45%),
              radial-gradient(900px 600px at 110% 0%, rgba(34, 197, 94, 0.14), transparent 42%),
              linear-gradient(160deg, #0b0d11 0%, #151924 50%, #0b1118 100%);
}

.app-bg-glow {
  pointer-events: none;
  position: fixed;
  z-index: 0;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.35;
}

.app-bg-glow-top {
  top: -80px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: #f97316;
}

.app-bg-glow-bottom {
  bottom: 40px;
  left: -80px;
  width: 260px;
  height: 260px;
  background: #16a34a;
}

.tap-target {
  min-height: 44px;
  min-width: 44px;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-radius: 10px;
  color: #cbd5e1;
}

.nav-item-active {
  background: rgba(248, 113, 113, 0.12);
  color: #fecaca;
}

.status-pill {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.status-online {
  background: var(--status-safe);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}

.status-unstable {
  background: var(--status-warn);
  box-shadow: 0 0 0 4px rgba(234, 179, 8, 0.2);
}

.status-offline {
  background: var(--status-hot);
  box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.2);
}

.status-scam {
  background: var(--status-offline);
  box-shadow: 0 0 0 4px rgba(107, 114, 128, 0.2);
}

.winner-ticker .ticker-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: ticker-loop 45s linear infinite;
}

.winner-ticker .ticker-set {
  display: flex;
  gap: 10px;
}

.winner-ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.8);
  padding: 8px 12px;
  white-space: nowrap;
}

.platform-card {
  transform: translateY(0);
  transition: transform 200ms ease, border-color 200ms ease;
}

.platform-card-title {
  word-break: break-word;
}

.platform-card-aliases {
  margin-top: 4px;
  line-height: 1.35;
  word-break: break-word;
}

.platform-card-live-meta {
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  line-height: 1.2;
}

.platform-card-metric {
  min-width: 0;
}

.platform-card-amount-value {
  display: block;
  font-variant-numeric: tabular-nums;
  line-height: 1.25;
}

.platform-card-trend {
  margin-top: 3px;
  font-size: 11px;
  line-height: 1.2;
  word-break: break-word;
}

.platform-card-trend-positive {
  color: #6ee7b7;
}

.platform-card-trend-negative {
  color: #fca5a5;
}

.platform-card-trend-muted {
  color: #94a3b8;
}

.platform-card:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 640px) {
  .platform-card {
    padding: 14px;
  }

  .platform-card-amount-value {
    font-size: 13px;
  }

  .platform-card-trend {
    font-size: 10px;
  }
}

@keyframes ticker-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

body.low-end-device .winner-ticker .ticker-track {
  animation: none;
}

body.low-end-device .winner-ticker:hover .ticker-track {
  animation-play-state: running;
}

body.low-end-device .platform-card {
  transition: none;
}

body.low-end-device .platform-card:hover {
  transform: translateY(0);
}

body.low-end-device .app-bg-glow {
  display: none;
}

.heat-grid {
  display: grid;
  grid-template-columns: repeat(24, minmax(8px, 1fr));
  gap: 4px;
}

.heat-cell {
  height: 16px;
  border-radius: 6px;
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.heat-0 { background: rgba(15, 23, 42, 0.7); }
.heat-1 { background: rgba(30, 41, 59, 0.78); }
.heat-2 { background: rgba(30, 64, 175, 0.45); }
.heat-3 { background: rgba(37, 99, 235, 0.52); }
.heat-4 { background: rgba(14, 116, 144, 0.58); }
.heat-5 { background: rgba(8, 145, 178, 0.65); }
.heat-6 { background: rgba(6, 182, 212, 0.72); }
.heat-7 { background: rgba(45, 212, 191, 0.75); }
.heat-8 { background: rgba(74, 222, 128, 0.78); }
.heat-9 { background: rgba(250, 204, 21, 0.8); }
.heat-10 { background: rgba(251, 113, 133, 0.82); }

.alt-link-card {
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.8));
  padding: 10px 12px;
}

.alt-link-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.alt-link-meta {
  min-width: 0;
  flex: 1;
}

.alt-link-domain {
  color: #e2e8f0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  word-break: break-all;
}

.alt-link-url {
  margin-top: 2px;
  color: #94a3b8;
  font-size: 11px;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.alt-link-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.alt-link-chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 2px 9px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.alt-link-chip-good {
  color: #bbf7d0;
  border: 1px solid rgba(74, 222, 128, 0.45);
  background: rgba(34, 197, 94, 0.2);
}

.alt-link-chip-good-soft {
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.25);
  background: rgba(22, 163, 74, 0.14);
}

.alt-link-chip-warn {
  color: #fde68a;
  border: 1px solid rgba(251, 191, 36, 0.38);
  background: rgba(217, 119, 6, 0.16);
}

.alt-link-chip-bad {
  color: #fecaca;
  border: 1px solid rgba(248, 113, 113, 0.4);
  background: rgba(239, 68, 68, 0.18);
}

.alt-link-chip-muted {
  color: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(51, 65, 85, 0.55);
}

.alt-link-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: stretch;
  flex-shrink: 0;
  min-width: 260px;
}

.alt-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0 12px;
  min-height: 42px;
  font-size: 14px;
  font-weight: 700;
}

.alt-link-btn-primary {
  color: #f8fafc;
  border: 1px solid rgba(52, 211, 153, 0.6);
  background: linear-gradient(135deg, rgba(5, 150, 105, 0.88), rgba(16, 185, 129, 0.78));
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.25);
}

.alt-link-btn-secondary {
  color: #f1f5f9;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(51, 65, 85, 0.88);
}

.alt-link-copy-wrap {
  display: block;
  width: 100%;
}

.alt-link-copy-wrap .alt-link-btn {
  width: 100%;
}

.alt-link-copied {
  color: #86efac;
  font-size: 11px;
  font-weight: 600;
  display: block;
  margin-top: 3px;
  text-align: center;
}

.alt-link-added {
  margin-top: 4px;
  color: #cbd5e1;
  font-size: 10px;
  line-height: 1.2;
}

.alt-link-proof {
  margin-top: 2px;
  color: #94a3b8;
  font-size: 10px;
  line-height: 1.2;
}

@media (max-width: 640px) {
  .alt-link-main {
    flex-direction: column;
    align-items: stretch;
  }

  .alt-link-actions {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-width: 0;
  }
}

.channel-list {
  list-style: none;
  margin: 0;
  padding: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.channel-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.channel-count-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: #f8fafc;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.9), rgba(37, 99, 235, 0.9));
  border: 1px solid rgba(186, 230, 253, 0.5);
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.channel-card {
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(17, 24, 39, 0.86));
  border-radius: 14px;
  padding: 10px 12px;
}

.channel-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.channel-icon-box {
  width: 66px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(15, 23, 42, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  flex-shrink: 0;
}

.channel-icon-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 8px;
  flex-shrink: 0;
}

.channel-icon-fallback {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #e2e8f0;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.78), rgba(6, 182, 212, 0.66));
  border: 1px solid rgba(148, 163, 184, 0.24);
  flex-shrink: 0;
}

.channel-meta {
  min-width: 0;
}

.channel-name {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #e2e8f0;
  line-height: 1.2;
}

.channel-range {
  margin: 3px 0 0;
  font-size: 12px;
  color: #94a3b8;
  word-break: break-word;
}

.channel-bonus-badge {
  margin: 8px 0 0;
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(251, 191, 36, 0.45);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.9), rgba(251, 113, 133, 0.88));
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 0 16px rgba(251, 146, 60, 0.35);
}

.channel-empty {
  padding: 8px 4px;
  color: #94a3b8;
  font-size: 13px;
}

.feedback-panel {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.9), rgba(10, 19, 38, 0.82));
}

.feedback-vote-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.feedback-vote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(30, 41, 59, 0.72);
  padding: 10px 12px;
}

.feedback-vote-label {
  font-size: 13px;
  font-weight: 700;
  color: #e2e8f0;
  line-height: 1.2;
}

.feedback-vote-value {
  min-width: 28px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(51, 65, 85, 0.9);
  color: #f8fafc;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  padding: 5px 8px;
  text-align: center;
}

.feedback-flag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feedback-flag-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.feedback-flag-warn {
  color: #fde68a;
  border-color: rgba(251, 191, 36, 0.4);
  background: rgba(217, 119, 6, 0.16);
}

.feedback-flag-bad {
  color: #fecaca;
  border-color: rgba(251, 113, 133, 0.45);
  background: rgba(190, 24, 93, 0.2);
}

.feedback-flag-scam {
  color: #fca5a5;
  border-color: rgba(248, 113, 113, 0.5);
  background: rgba(127, 29, 29, 0.26);
}

.feedback-warning-note {
  margin-top: 8px;
  font-size: 12px;
  color: #fcd34d;
  line-height: 1.35;
}

@media (min-width: 640px) {
  .feedback-vote-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.game-tile {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.16);
  background: rgba(30, 41, 59, 0.66);
  padding: 6px;
}

.game-cover-frame {
  height: clamp(140px, 38vw, 180px);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  background: rgba(15, 23, 42, 0.78);
  overflow: hidden;
}

.game-cover-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: 6px;
}

.game-cover-image-portrait {
  width: 64%;
  object-fit: cover;
  object-position: center;
}

.game-name {
  margin: 6px 0 0;
  color: #e2e8f0;
  font-size: clamp(13px, 2.5vw, 15px);
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.games-empty {
  grid-column: 1 / -1;
  color: #94a3b8;
  font-size: 14px;
}

.bigwins-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.bigwins-stat-card {
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(15, 23, 42, 0.76);
  padding: 14px;
}

.bigwins-stat-label {
  margin: 0;
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.2;
}

.bigwins-stat-value {
  margin: 8px 0 0;
  display: block;
  width: 100%;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  line-height: 1.08;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.bigwins-stat-value-money {
  font-size: clamp(1.75rem, 7.2vw, 2.8rem);
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
}

.bigwins-stat-value-count {
  font-size: clamp(1.8rem, 7vw, 2.6rem);
}

.rankings-header-controls {
  margin-top: 14px;
  display: grid;
  gap: 10px;
  max-width: 460px;
}

.rankings-range-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(15, 23, 42, 0.45);
}

.rankings-range-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  color: #cbd5e1;
  background: rgba(15, 23, 42, 0.5);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  min-height: 44px;
  padding: 0 14px;
  transition: border-color 140ms ease, background-color 140ms ease, color 140ms ease;
}

.rankings-range-tab.is-active {
  border-color: rgba(148, 163, 184, 0.46);
  background: rgba(59, 130, 246, 0.2);
  color: #f8fafc;
}

.rankings-quick-links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.rankings-quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  min-height: 44px;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.rankings-quick-link-wide {
  grid-column: 1 / -1;
}

.rankings-quick-link-amber {
  color: #fcd34d;
  border-color: rgba(250, 204, 21, 0.4);
  background: rgba(217, 119, 6, 0.12);
}

.rankings-quick-link-rose {
  color: #fda4af;
  border-color: rgba(244, 114, 182, 0.36);
  background: rgba(190, 24, 93, 0.12);
}

.rankings-quick-link-emerald {
  color: #5eead4;
  border-color: rgba(45, 212, 191, 0.36);
  background: rgba(13, 148, 136, 0.12);
}

.ranking-row {
  backdrop-filter: blur(2px);
}

.ranking-row-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.ranking-row-link:focus-visible {
  outline: 2px solid rgba(56, 189, 248, 0.85);
  outline-offset: 4px;
  border-radius: 12px;
}

.ranking-row-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ranking-row-main {
  min-width: 0;
  flex: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.ranking-rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(3.5rem, 10vw, 4.6rem);
  height: 2.3rem;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(250, 204, 21, 0.35);
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.16), rgba(217, 119, 6, 0.08));
  color: #fcd34d;
  font-size: clamp(1.1rem, 3.7vw, 1.45rem);
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  flex-shrink: 0;
}

.ranking-row-meta {
  min-width: 0;
}

.ranking-platform-name {
  margin: 0;
  color: #f1f5f9;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ranking-win-count {
  margin: 2px 0 0;
  color: #94a3b8;
  font-size: 0.8rem;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}

.ranking-row-stats {
  min-width: 0;
  text-align: right;
}

.ranking-total-amount {
  margin: 0;
  color: #fda4af;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.ranking-trend {
  margin: 2px 0 0;
  font-size: 0.75rem;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
}

.metric-money-value {
  display: block;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  overflow-y: hidden;
}

.bonus-scroll-wrap {
  position: relative;
}

.bonus-scroll-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 8px;
  width: 44px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.95));
}

.bonus-scroll-list {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.bonus-scroll-list > * {
  scroll-snap-align: start;
}

.bonus-activity-card {
  flex: 0 0 min(72vw, 360px);
  max-width: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(15, 23, 42, 0.9);
}

.bonus-activity-card-tall {
  border-radius: 16px;
}

.bonus-activity-image {
  display: block;
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  background: rgba(2, 6, 23, 0.85);
  cursor: zoom-in;
}

.bonus-activity-image:focus-visible {
  outline: 2px solid rgba(56, 189, 248, 0.9);
  outline-offset: -2px;
}

.bonus-image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.bonus-image-lightbox.hidden {
  display: none;
}

.bonus-image-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(2, 6, 23, 0.82);
}

.bonus-image-lightbox-panel {
  position: relative;
  z-index: 1;
  max-width: min(96vw, 1200px);
  max-height: 90vh;
}

.bonus-image-lightbox-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 90vh;
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(2, 6, 23, 0.95);
}

.bonus-image-lightbox-close {
  position: absolute;
  top: -12px;
  right: -4px;
  border: 1px solid rgba(226, 232, 240, 0.28);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  color: #e2e8f0;
  font-size: 12px;
  line-height: 1;
  padding: 6px 10px;
  cursor: pointer;
}

.bonus-lightbox-open {
  overflow: hidden;
}

.bonus-scroll-hint {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  color: #cbd5e1;
  opacity: 0.9;
  animation: bonus-hint-pulse 1.8s ease-in-out infinite;
}

@keyframes bonus-hint-pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(2px);
  }
}

@media (min-width: 768px) {
  .games-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .game-cover-frame {
    height: clamp(160px, 16vw, 200px);
  }

  .game-name {
    font-size: 15px;
  }
}

@media (min-width: 1024px) {
  .games-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .game-cover-frame {
    height: 190px;
  }
}

@media (min-width: 768px) {
  .bonus-activity-card {
    flex-basis: min(36vw, 420px);
    max-width: 420px;
  }
}

@media (max-width: 460px) {
  .ranking-row-content {
    align-items: flex-start;
  }

  .ranking-rank-badge {
    min-width: 3.2rem;
    height: 2.1rem;
    font-size: 1.05rem;
  }

  .ranking-total-amount {
    font-size: 0.84rem;
  }
}

@media (min-width: 640px) {
  .bigwins-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .bigwins-stats-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rankings-header-controls {
    max-width: 620px;
  }

  .rankings-quick-links-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .rankings-quick-link-wide {
    grid-column: auto;
  }
}

#bottom-nav {
  transform: translateY(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#bottom-nav.nav-hidden {
  transform: translateY(100%);
}
