:root {
  --hub-bg: #080b10;
  --hub-surface: #111722;
  --hub-surface-2: #171e2b;
  --hub-line: #293346;
  --hub-text: #f6f8fb;
  --hub-muted: #9da9bb;
  --hub-accent: #ffd43b;
  --hub-accent-ink: #141000;
  --hub-green: #43d890;
  --hub-red: #ff646e;
  --hub-blue: #5ba7ff;
  --hub-radius: 8px;
  --hub-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body.hub-page {
  margin: 0;
  background: var(--hub-bg);
  color: var(--hub-text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  letter-spacing: 0;
}
.hub-page a {
  color: inherit;
}
.hub-container {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
}
.hub-compliance {
  background: #05070a;
  border-bottom: 1px solid #202938;
  color: #bdc5d2;
  font-size: 12px;
  text-align: center;
  padding: 8px 12px;
}
.hub-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(8, 11, 16, 0.94);
  border-bottom: 1px solid var(--hub-line);
  backdrop-filter: blur(14px);
}
.hub-nav {
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.hub-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  white-space: nowrap;
}
.hub-brand img {
  width: 38px;
  height: 38px;
}
.hub-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.hub-links > a {
  padding: 10px 12px;
  color: #cbd3df;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
}
.hub-links > a:hover,
.hub-links > a[aria-current="page"] {
  background: #1a2230;
  color: #fff;
}
.hub-account {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 8px;
}
.hub-points {
  display: none;
  color: var(--hub-accent);
  font-size: 13px;
  font-weight: 800;
}
.hub-menu {
  display: none;
  margin-left: auto;
  border: 1px solid var(--hub-line);
  background: var(--hub-surface);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 6px;
  font-size: 0;
}
.hub-menu:before {
  content: "";
  display: block;
  width: 20px;
  height: 14px;
  margin: auto;
  border-top: 2px solid;
  border-bottom: 2px solid;
}
.hub-menu:after {
  content: "";
  display: block;
  width: 20px;
  border-top: 2px solid;
  margin: -8px auto 0;
}
.hub-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 17px;
  border: 1px solid transparent;
  border-radius: 6px;
  font: 800 14px/1 inherit;
  text-decoration: none;
  cursor: pointer;
}
.hub-button:focus-visible,
.hub-page a:focus-visible,
.hub-page input:focus-visible,
.hub-page select:focus-visible {
  outline: 3px solid var(--hub-blue);
  outline-offset: 3px;
}
.hub-button-primary {
  background: var(--hub-accent);
  color: var(--hub-accent-ink);
}
.hub-button-secondary {
  background: var(--hub-surface);
  border-color: var(--hub-line);
  color: #fff;
}
.hub-button-danger {
  background: #40151a;
  border-color: #7c2932;
  color: #fff;
}
.hub-button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.hub-hero {
  min-height: 480px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--hub-line);
}
.hub-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(8, 11, 16, 0.97) 10%,
      rgba(8, 11, 16, 0.76) 55%,
      rgba(8, 11, 16, 0.24)
    ),
    url("/assets/hero/maingame-hub-stage-v1.webp") center/cover no-repeat;
}
.hub-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: 70px 0;
}
.hub-kicker {
  display: block;
  color: var(--hub-accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}
.hub-hero h1 {
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
  margin: 14px 0 18px;
  max-width: 700px;
}
.hub-hero p {
  font-size: 19px;
  line-height: 1.55;
  color: #d1d8e2;
  max-width: 650px;
  margin: 0 0 26px;
}
.hub-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.hub-hero-meta {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  color: #c3cbd7;
  font-size: 13px;
}
.hub-hero-meta strong {
  color: #fff;
}
.hub-hero-goated {
  min-height: 560px;
  background: #080b10;
}
.hub-hero-goated:before {
  background: #080b10;
}
.hub-goated-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 48px;
  align-items: center;
}
.hub-goated-hero-art {
  min-height: 400px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #dfff00;
  border: 1px solid #ecff62;
  color: #090b0d;
}
.hub-goated-logo {
  position: absolute;
  top: 34px;
  left: 34px;
  width: min(62%, 330px);
  height: auto;
  filter: brightness(0);
}
.hub-goated-chip {
  width: 258px;
  height: 204px;
  image-rendering: auto;
  transform: translate(70px, 8px) scale(1.28);
}
.hub-goated-hero-art > div {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  display: grid;
  gap: 3px;
  padding: 16px 18px;
  background: #090b0d;
  color: #fff;
}
.hub-goated-hero-art > div span,
.hub-goated-hero-art > div small {
  color: #b7c0c8;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}
.hub-goated-hero-art > div strong {
  color: #dfff00;
  font-size: 30px;
}
.hub-goated-focus {
  background: #0d1114;
}
.hub-goated-focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: 54px;
  align-items: center;
}
.hub-goated-focus h2 {
  max-width: 700px;
  margin: 8px 0 14px;
  font-size: 38px;
}
.hub-focus-lead {
  max-width: 720px;
  color: var(--hub-muted);
  font-size: 18px;
  line-height: 1.6;
}
.hub-goated-facts {
  margin: 0;
  border-top: 1px solid #3d4654;
}
.hub-goated-facts div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid #3d4654;
}
.hub-goated-facts dt {
  color: #dfff00;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.hub-goated-facts dd {
  margin: 0;
  color: #f5f7fa;
}
.hub-anti-ad {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  margin-top: 34px;
  padding: 20px 22px;
  background: #dfff00;
  color: #0a0d0e;
}
.hub-anti-ad strong {
  text-transform: uppercase;
}
.hub-section {
  padding: 66px 0;
  border-bottom: 1px solid #1b2330;
}
.hub-section-muted {
  background: #0c1119;
}
.hub-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}
.hub-heading h2 {
  font-size: 34px;
  line-height: 1.08;
  margin: 7px 0 0;
}
.hub-heading p {
  color: var(--hub-muted);
  margin: 8px 0 0;
  max-width: 650px;
  line-height: 1.55;
}
.hub-heading > a {
  color: var(--hub-accent);
  font-weight: 800;
  text-decoration: none;
}
.hub-board {
  background: var(--hub-surface);
  border: 1px solid var(--hub-line);
  border-radius: var(--hub-radius);
  box-shadow: var(--hub-shadow);
  overflow: hidden;
}
.hub-board-status {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 17px 20px;
  border-bottom: 1px solid var(--hub-line);
  color: var(--hub-muted);
  font-size: 13px;
}
.hub-board-status strong {
  color: var(--hub-green);
}
.hub-prize-bar {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 20px;
  background: #191807;
  border-bottom: 1px solid #5c5319;
}
.hub-prize-bar > div span {
  display: block;
  color: #d9c861;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.hub-prize-bar > div strong {
  display: block;
  margin-top: 5px;
  color: #ffe353;
  font-size: 20px;
  line-height: 1.25;
}
.hub-prize-bar p {
  margin: 0;
  color: #ded9b9;
  font-size: 13px;
  line-height: 1.55;
}
.hub-podium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 20px;
  background: #0c1119;
}
.hub-podium article {
  min-height: 230px;
  padding: 20px;
  border: 1px solid var(--hub-line);
  border-radius: 7px;
  background: var(--hub-surface);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.hub-podium article:first-child {
  border-color: #8c7416;
  background: linear-gradient(180deg, #211d0e, #111722);
}
.hub-rank {
  color: var(--hub-accent);
  font-size: 12px;
  font-weight: 900;
}
.hub-podium strong {
  font-size: 21px;
  margin: 8px 0;
}
.hub-podium span:last-child {
  color: var(--hub-muted);
  font-size: 13px;
}
.hub-podium-card {
  position: relative;
}
.hub-podium-card .hub-place-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--hub-muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.hub-player-avatar {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  margin-top: 22px;
  border: 1px solid #4b586c;
  background: #0a0f17;
  color: #fff;
  font-size: 25px;
  font-weight: 900;
}
.hub-podium-1 .hub-player-avatar {
  background: #ffe353;
  border-color: #ffe353;
  color: #171203;
}
.hub-podium-card .hub-player-sites {
  min-height: 20px;
}
.hub-podium-card small {
  display: block;
  margin-top: auto;
  padding-top: 16px;
  color: #c8cfda;
  font-size: 11px;
  line-height: 1.4;
}
.hub-table-wrap {
  overflow: auto;
}
.hub-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.hub-table th,
.hub-table td {
  text-align: left;
  padding: 16px 20px;
  border-top: 1px solid #202938;
  font-size: 14px;
}
.hub-table th {
  color: var(--hub-muted);
  font-size: 12px;
  text-transform: uppercase;
}
.hub-table .rank-cell {
  font-weight: 900;
  color: var(--hub-accent);
}
.hub-private {
  filter: blur(5px);
  user-select: none;
}
.hub-empty {
  padding: 32px;
  color: var(--hub-muted);
  text-align: center;
}
.hub-steps,
.hub-card-grid,
.hub-games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.hub-step,
.hub-card,
.hub-game {
  background: var(--hub-surface);
  border: 1px solid var(--hub-line);
  border-radius: var(--hub-radius);
  padding: 22px;
}
.hub-step b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--hub-accent);
  color: var(--hub-accent-ink);
  margin-bottom: 18px;
}
.hub-step h3,
.hub-card h3,
.hub-game h3 {
  font-size: 19px;
  margin: 0 0 8px;
}
.hub-step p,
.hub-card p,
.hub-game p {
  color: var(--hub-muted);
  line-height: 1.55;
  margin: 0;
}
.hub-offer {
  overflow: hidden;
  padding: 0;
}
.hub-offer-media {
  height: 150px;
  background: #0a0d13;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hub-offer-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hub-offer-body {
  padding: 20px;
}
.hub-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin: 14px 0;
}
.hub-tag {
  border: 1px solid var(--hub-line);
  color: #cbd3df;
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 11px;
  font-weight: 800;
}
.hub-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #0a0e15;
  border: 1px dashed #4b596e;
  border-radius: 6px;
  padding: 10px 12px;
  margin: 14px 0;
}
.hub-code strong {
  color: var(--hub-accent);
}
.hub-small {
  font-size: 12px;
  color: var(--hub-muted);
}
.hub-shop-balance {
  background: var(--hub-surface);
  border: 1px solid var(--hub-line);
  padding: 18px 20px;
  border-radius: var(--hub-radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.hub-shop-balance strong {
  font-size: 26px;
  color: var(--hub-accent);
}
.hub-reward-card img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #0b0f16;
  border-radius: 7px;
  padding: 8px;
}
.hub-reward-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hub-reward-meta {
  display: flex;
  justify-content: space-between;
  color: var(--hub-muted);
  font-size: 13px;
}
.hub-game {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}
.hub-game:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, #090c12 72%);
}
.hub-game > * {
  position: relative;
}
.hub-game-jackpot {
  background-image: url("/assets/case-golden-ticket-v1.webp");
}
.hub-game-million {
  background-image: url("/assets/hero/maingame-hub-stage-v1.webp");
}
.hub-video-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}
.hub-video {
  background: var(--hub-surface);
  border: 1px solid var(--hub-line);
  border-radius: var(--hub-radius);
  overflow: hidden;
  text-decoration: none;
}
.hub-video img {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.hub-video div {
  padding: 15px;
}
.hub-video strong {
  display: block;
  line-height: 1.35;
}
.hub-video span {
  display: block;
  color: var(--hub-muted);
  font-size: 12px;
  margin-top: 6px;
}
.hub-page-hero {
  padding: 54px 0 34px;
  border-bottom: 1px solid var(--hub-line);
  background: #0c1119;
}
.hub-page-hero h1 {
  font-size: 44px;
  margin: 10px 0;
}
.hub-page-hero p {
  color: var(--hub-muted);
  font-size: 17px;
  max-width: 720px;
  line-height: 1.55;
}
.hub-filterbar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hub-filterbar button {
  min-height: 38px;
  border: 1px solid var(--hub-line);
  border-radius: 6px;
  background: var(--hub-surface);
  color: #fff;
  padding: 0 13px;
  font-weight: 800;
}
.hub-filterbar button.active {
  background: var(--hub-accent);
  color: var(--hub-accent-ink);
}
.hub-form {
  display: grid;
  gap: 14px;
}
.hub-form label {
  display: grid;
  gap: 7px;
  color: #d5dce6;
  font-size: 13px;
  font-weight: 800;
}
.hub-input {
  width: 100%;
  min-height: 46px;
  border: 1px solid #354158;
  border-radius: 6px;
  background: #090d14;
  color: #fff;
  padding: 0 13px;
  font: inherit;
}
.hub-status {
  min-height: 20px;
  color: var(--hub-muted);
  font-size: 13px;
}
.hub-status.error {
  color: var(--hub-red);
}
.hub-status.success {
  color: var(--hub-green);
}
.hub-dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 18px;
}
.hub-panel {
  background: var(--hub-surface);
  border: 1px solid var(--hub-line);
  border-radius: var(--hub-radius);
  padding: 22px;
}
.hub-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hub-stat {
  padding: 14px;
  background: #0b1018;
  border: 1px solid #222c3c;
  border-radius: 6px;
}
.hub-stat span {
  display: block;
  color: var(--hub-muted);
  font-size: 12px;
}
.hub-stat strong {
  display: block;
  font-size: 22px;
  margin-top: 4px;
}
.hub-list {
  display: grid;
  gap: 10px;
}
.hub-list-item {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 13px;
  border: 1px solid #253044;
  border-radius: 6px;
  background: #0c1119;
}
.hub-list-item span {
  color: var(--hub-muted);
  font-size: 13px;
}
.hub-footer {
  padding: 44px 0 24px;
  background: #05070a;
}
.hub-footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 28px;
}
.hub-footer p {
  color: var(--hub-muted);
  line-height: 1.55;
  max-width: 420px;
}
.hub-footer strong {
  display: block;
  margin-bottom: 10px;
}
.hub-footer a:not(.hub-brand) {
  display: block;
  color: #aab5c5;
  text-decoration: none;
  margin: 8px 0;
  font-size: 13px;
}
.hub-footer-bottom {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid #1d2634;
  color: #8894a5;
  font-size: 12px;
}
.hub-dialog {
  border: 1px solid var(--hub-line);
  border-radius: 8px;
  background: var(--hub-surface);
  color: #fff;
  width: min(470px, calc(100% - 24px));
  padding: 0;
  box-shadow: var(--hub-shadow);
}
.hub-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
}
.hub-dialog-inner {
  padding: 24px;
}
.hub-dialog-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
.hub-dialog-head h2 {
  margin: 0;
}
.hub-icon-button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--hub-line);
  border-radius: 6px;
  background: #0b1018;
  color: white;
  font-size: 20px;
}
.hub-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--hub-line);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 16px;
}
.hub-tabs button {
  min-height: 42px;
  border: 0;
  background: #0b1018;
  color: #c5cedb;
  font-weight: 800;
}
.hub-tabs button.active {
  background: var(--hub-accent);
  color: var(--hub-accent-ink);
}
.hub-auth-form {
  display: none;
}
.hub-auth-form.active {
  display: grid;
}
.hub-toast {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  background: #161e2a;
  border: 1px solid #36445a;
  color: white;
  border-radius: 7px;
  padding: 13px 16px;
  box-shadow: var(--hub-shadow);
  transform: translateY(120px);
  transition: 0.2s;
}
.hub-toast.show {
  transform: translateY(0);
}
@media (max-width: 900px) {
  .hub-menu {
    display: block;
  }
  .hub-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #090d13;
    border-bottom: 1px solid var(--hub-line);
    padding: 12px 16px;
    flex-direction: column;
    align-items: stretch;
  }
  .hub-links.open {
    display: flex;
  }
  .hub-account {
    margin-left: 0;
    padding: 6px 10px;
  }
  .hub-account .hub-button {
    width: 100%;
  }
  .hub-hero h1 {
    font-size: 46px;
  }
  .hub-goated-hero-grid,
  .hub-goated-focus-grid {
    grid-template-columns: 1fr;
  }
  .hub-goated-hero-art {
    min-height: 330px;
    margin-bottom: 42px;
  }
  .hub-steps,
  .hub-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hub-games-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hub-video-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hub-video:first-child {
    grid-column: 1/-1;
  }
  .hub-dashboard-grid {
    grid-template-columns: 1fr;
  }
  .hub-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 620px) {
  .hub-container {
    width: min(100% - 22px, 1180px);
  }
  .hub-compliance {
    font-size: 10px;
    line-height: 1.35;
  }
  .hub-nav {
    min-height: 62px;
  }
  .hub-links {
    top: 62px;
  }
  .hub-brand span {
    font-size: 15px;
  }
  .hub-brand img {
    width: 34px;
    height: 34px;
  }
  .hub-account {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }
  .hub-points {
    text-align: center;
  }
  .hub-hero {
    min-height: 480px;
  }
  .hub-hero:before {
    background:
      linear-gradient(180deg, rgba(8, 11, 16, 0.74), rgba(8, 11, 16, 0.98) 74%),
      url("/assets/hero/maingame-hub-stage-v1.webp") center/cover no-repeat;
  }
  .hub-hero-goated:before {
    background: #080b10;
  }
  .hub-hero-goated {
    min-height: 0;
  }
  .hub-goated-hero-grid {
    gap: 4px;
  }
  .hub-goated-hero-art {
    display: none;
  }
  .hub-goated-logo {
    top: 24px;
    left: 24px;
  }
  .hub-goated-chip {
    transform: translate(44px, 5px) scale(1.08);
  }
  .hub-goated-focus h2 {
    font-size: 30px;
  }
  .hub-goated-facts div,
  .hub-anti-ad,
  .hub-prize-bar {
    grid-template-columns: 1fr;
  }
  .hub-hero-content {
    padding: 38px 0 42px;
  }
  .hub-hero h1 {
    font-size: 38px;
  }
  .hub-hero p {
    font-size: 16px;
  }
  .hub-hero-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .hub-actions .hub-button {
    width: 100%;
  }
  .hub-section {
    padding: 46px 0;
  }
  .hub-heading {
    align-items: start;
    flex-direction: column;
  }
  .hub-heading h2 {
    font-size: 29px;
  }
  .hub-podium {
    grid-template-columns: 1fr;
  }
  .hub-podium article {
    min-height: 210px;
  }
  .hub-steps,
  .hub-card-grid,
  .hub-games-grid,
  .hub-video-grid {
    grid-template-columns: 1fr;
  }
  .hub-video:first-child {
    grid-column: auto;
  }
  .hub-page-hero h1 {
    font-size: 36px;
  }
  .hub-footer-grid {
    grid-template-columns: 1fr;
  }
  .hub-stat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hub-shop-balance {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }
  .hub-list-item {
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hub-toast {
    transition: none;
  }
}
.skip-link {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: #fff;
  color: #000;
  padding: 10px 14px;
  border-radius: 4px;
}
.skip-link:focus {
  transform: translateY(0);
}
@media (min-width: 621px) {
  .hub-hero-content {
    padding: 42px 0;
  }
  .hub-hero h1 {
    font-size: 52px;
    margin: 12px 0 16px;
  }
  .hub-hero p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .hub-hero-meta {
    margin-top: 20px;
  }
}
