.home .hero {
  padding: 14px 0 12px;
}

.home main {
  display: grid;
  gap: clamp(24px, 3.6vw, 42px);
  padding: clamp(10px, 1.6vw, 18px) 0 clamp(42px, 5vw, 64px);
}

.home main > section {
  margin: 0;
  order: 20;
}

.home .page-section {
  padding-block: 0;
}

.home .hero > .section-shell,
.home #top-picks > .section-shell,
.home #rankings > .section-shell,
.home #compare-table > .section-shell,
.home #intent > .section-shell,
.home #quiz > .section-shell,
.home #crypto-convenience > .section-shell,
.home #faq > .section-shell,
.home #studios > .section-shell {
  padding: clamp(14px, 2.2vw, 24px);
  border-radius: clamp(16px, 2.2vw, 24px);
  border: 1px solid rgba(0, 187, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(16, 23, 44, 0.58);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.22);
}

.home .table-block {
  gap: clamp(16px, 2.2vw, 24px);
  padding-top: 0;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 16px;
  margin-top: 0;
  align-items: start;
}

.hero__copy {
  display: grid;
  gap: 10px;
  width: min(100%, 580px);
  padding-top: 0;
  margin-top: 0;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  width: fit-content;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(189, 238, 0, 0.12), rgba(0, 199, 177, 0.12), rgba(0, 187, 255, 0.1));
  border: 1px solid rgba(0, 187, 255, 0.18);
  color: var(--text-primary);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 13ch;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

.hero__lead {
  margin: 0;
  max-width: 40ch;
  color: var(--text-secondary);
  font-size: 0.96rem;
}

.hero--minimal {
  position: relative;
  overflow: hidden;
  padding: 0 0 16px;
}

.hero--minimal::before,
.hero--minimal::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero--minimal::before {
  background:
    radial-gradient(circle at 12% 8%, rgba(189, 238, 0, 0.12), transparent 18%),
    radial-gradient(circle at 84% 18%, rgba(0, 199, 177, 0.12), transparent 20%),
    radial-gradient(circle at 50% 50%, rgba(0, 187, 255, 0.06), transparent 40%);
}

.hero--minimal::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
}

.hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.hero__facts span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__facts span + span::before {
  content: "•";
  color: rgba(255, 255, 255, 0.3);
  margin-right: 12px;
}

.hero__brands {
  display: grid;
  gap: 8px;
  padding-top: 0;
  margin-top: 0;
}

.hero__brands-label {
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__brands-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.hero__brands-controls {
  display: none;
}

.hero__brands-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(20, 30, 52, 0.7);
  color: rgba(235, 244, 255, 0.96);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.hero__brands-btn:hover {
  background: rgba(26, 40, 67, 0.9);
  border-color: rgba(0, 187, 255, 0.45);
}

.hero__brands-btn:disabled {
  opacity: 0.42;
  cursor: default;
}

.hero__brand-rack {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.hero__brand-rack::-webkit-scrollbar {
  display: none;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-height: 56px;
  padding: 8px 14px 8px 8px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: none;
  color: var(--text-primary);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
  scroll-snap-align: start;
}

.hero-brand:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(0, 187, 255, 0.22);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.hero-brand__logo {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 0 0 1px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  flex: 0 0 auto;
}

.hero-brand__logo img {
  width: 100%;
  height: 100%;
  padding: 3px;
  object-fit: contain;
  border-radius: 10px;
}

.hero-brand__text {
  display: grid;
  gap: 2px;
}

.hero-brand__text strong {
  font-size: 0.88rem;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  color: var(--text-secondary);
  font-size: 0.88rem;
}

.hero__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__meta span + span::before {
  content: "\2022";
  color: rgba(255, 255, 255, 0.3);
  margin-right: 12px;
}

.hero-stat {
  padding: 12px 14px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 84% 116%, rgba(0, 187, 255, 0.1), transparent 36%),
    linear-gradient(160deg, rgba(19, 29, 50, 0.84), rgba(11, 18, 34, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat__value {
  display: block;
  color: var(--card-accent, var(--brand-primary));
  font-size: 1.1rem;
  font-weight: 900;
}

.hero-stat__label {
  display: block;
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.hero--plinko {
  position: relative;
  overflow: hidden;
  padding: 16px 0 12px;
  min-height: 86svh;
}

.hero__scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(189, 238, 0, 0.16), transparent 20%),
    radial-gradient(circle at 82% 22%, rgba(0, 199, 177, 0.16), transparent 22%),
    radial-gradient(circle at 50% 50%, rgba(0, 187, 255, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(13, 16, 29, 0.98), rgba(18, 23, 40, 0.98));
}

.hero__scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0)),
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.08), transparent 42%);
  pointer-events: none;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  mix-blend-mode: screen;
}

.hero__scene-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 36%, rgba(0, 187, 255, 0.08), transparent 38%),
    radial-gradient(circle at 50% 76%, rgba(0, 199, 177, 0.14), transparent 20%);
  pointer-events: none;
}

.hero__slot-rack {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 6px;
  width: min(1300px, calc(100% - 24px));
  transform: translateX(-50%);
}

.hero-slot {
  display: grid;
  place-items: center;
  gap: 3px;
  min-height: 62px;
  padding: 6px 8px 7px;
  border-radius: 13px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(17, 21, 37, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.03);
  color: var(--text-primary);
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.hero-slot:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 187, 255, 0.26);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(0, 187, 255, 0.12) inset;
}

.hero-slot.is-active {
  border-color: rgba(189, 238, 0, 0.42);
  box-shadow: 0 0 0 1px rgba(189, 238, 0, 0.18) inset, 0 0 28px rgba(189, 238, 0, 0.22);
  transform: translateY(-1px) scale(1.01);
}

.hero-slot__logo {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-slot__logo img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.hero-slot__name {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  line-height: 1.05;
}

.trust-strip {
  padding-bottom: 8px;
}

.trust-strip__inner {
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 187, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(0, 187, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(22, 28, 49, 0.82);
  box-shadow: var(--shadow-soft);
}

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

.trust-item {
  padding: 12px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 84% 116%, rgba(0, 187, 255, 0.1), transparent 36%),
    linear-gradient(160deg, rgba(19, 29, 50, 0.84), rgba(11, 18, 34, 0.9));
  border: 1px solid rgba(255, 255, 255, 0.08);
  min-height: 100%;
}

.trust-item strong {
  display: block;
  color: var(--card-accent, var(--brand-primary));
  font-size: 0.92rem;
}

.trust-item span {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.trust-strip__payments {
  display: grid;
  gap: 10px;
}

.trust-strip__payments .payment-row {
  gap: 10px;
  flex-wrap: wrap;
  overflow: visible;
  padding-bottom: 0;
  align-items: stretch;
}

.trust-strip__payments .coin-pill {
  width: 58px;
  height: 58px;
  padding: 6px;
}

.section-row {
  display: grid;
  gap: clamp(16px, 2.2vw, 26px);
}

.rank-head,
.intent-head,
.quiz-head,
.faq-head {
  display: grid;
  gap: clamp(10px, 1.4vw, 14px);
  padding-inline-start: 18px;
  border-inline-start: 3px solid rgba(0, 187, 255, 0.2);
}

.rank-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.rank-toolbar__chips {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-top: 2px;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.rank-toolbar__chips .chip:hover,
.rank-toolbar__chips .chip:focus-visible,
.rank-toolbar .sort-btn:hover {
  transform: none;
}

.rank-toolbar__chips::-webkit-scrollbar {
  display: none;
}

.rank-list {
  display: grid;
  gap: clamp(12px, 1.8vw, 18px);
}

.rank-list .rank-card[data-hidden="true"] {
  display: none;
}

.rank-card__fineprint {
  color: var(--text-muted);
  font-size: 0.84rem;
}

.rank-card__angle {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.42;
}

.rank-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(0, 199, 177, 0.18), rgba(0, 187, 255, 0.18));
  border: 1px solid rgba(0, 187, 255, 0.16);
  color: var(--text-primary);
  font-size: 0.74rem;
  font-weight: 800;
}

.intent-grid {
  display: grid;
  gap: clamp(14px, 1.9vw, 20px);
}

.intent-card {
  display: grid;
  gap: 14px;
  padding: clamp(14px, 2vw, 20px);
}

.intent-card__title {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.intent-card__body {
  margin: 0;
  color: var(--text-secondary);
}

.quiz-card {
  display: grid;
  gap: clamp(14px, 2vw, 20px);
  padding: clamp(14px, 2vw, 22px);
}

.quiz-steps {
  display: grid;
  gap: clamp(12px, 1.7vw, 16px);
}

.quiz-step {
  display: grid;
  gap: 12px;
  padding: clamp(12px, 1.8vw, 16px);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--border-soft);
}

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

.quiz-step__count {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.quiz-step__title {
  margin: 0;
  font-size: 1rem;
}

.quiz-options {
  display: grid;
  gap: 10px;
}

.quiz-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-soft);
  color: var(--text-secondary);
  font-weight: 700;
  text-align: left;
}

.quiz-option.is-selected {
  background: rgba(189, 238, 0, 0.14);
  color: var(--text-primary);
  border-color: rgba(189, 238, 0, 0.36);
}

.quiz-results {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(0, 199, 177, 0.1), rgba(0, 187, 255, 0.08));
  border: 1px solid rgba(0, 187, 255, 0.16);
}

.quiz-results__title {
  margin: 0;
  color: var(--brand-info);
  font-size: 1rem;
}

.quiz-results__list {
  display: grid;
  gap: 10px;
}

.quiz-results__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(17, 21, 37, 0.55);
  border: 1px solid rgba(0, 199, 177, 0.14);
}

.faq-item__title {
  margin: 0;
  font-size: 0.98rem;
}

.faq-item__body {
  display: grid;
  gap: 10px;
  padding-top: 2px;
  color: var(--text-secondary);
}

.faq-item__body ul {
  margin: 0;
  padding-left: 18px;
}

.footer-top {
  display: grid;
  gap: 16px;
}

.footer-summary {
  display: grid;
  gap: 12px;
}

.footer-summary p {
  margin: 0;
}

.footer-legal {
  display: grid;
  gap: 8px;
}

.footer-legal a {
  color: var(--text-secondary);
}

.footer-legal a:hover {
  color: var(--text-primary);
}

.footer-utility {
  display: grid;
  gap: 12px;
}

.provider-wall {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: clamp(12px, 1.8vw, 18px);
}

.provider-wall::before {
  content: "";
  position: absolute;
  inset: -24% -18% auto;
  height: 54%;
  background:
    radial-gradient(60% 76% at 14% 30%, rgba(189, 238, 0, 0.09), rgba(189, 238, 0, 0)),
    radial-gradient(72% 86% at 86% 28%, rgba(0, 187, 255, 0.11), rgba(0, 187, 255, 0));
  pointer-events: none;
  z-index: 0;
}

.provider-wall > * {
  position: relative;
  z-index: 1;
}

.provider-wall__head {
  display: grid;
  gap: 10px;
}

.provider-wall__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.provider-wall__chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0)),
    rgba(10, 20, 36, 0.62);
  color: rgba(233, 240, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.provider-wall__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: clamp(10px, 1.6vw, 16px);
}

.provider-wall__grid .provider-pill {
  position: relative;
  display: grid;
  grid-template-rows: 48px auto;
  justify-items: center;
  align-content: start;
  gap: 9px;
  min-height: 104px;
  padding: 12px 10px 11px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    linear-gradient(160deg, rgba(12, 24, 44, 0.92), rgba(9, 18, 34, 0.88));
  border: 1px solid rgba(90, 118, 156, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.provider-wall__grid .provider-pill:hover {
  transform: translateY(-2px);
  border-color: rgba(148, 220, 233, 0.55);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0)),
    linear-gradient(160deg, rgba(13, 25, 47, 0.95), rgba(10, 19, 37, 0.92));
}

.provider-wall__grid .provider-pill img {
  max-width: 50px;
  max-height: 50px;
  padding: 4px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 12, 24, 0.58);
  object-fit: contain;
}

.provider-wall__grid .provider-pill::after {
  content: attr(data-provider);
  display: -webkit-box;
  max-width: 108px;
  min-height: 2.5em;
  font-size: 0.74rem;
  line-height: 1.25;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.01em;
  color: rgba(240, 247, 255, 0.94);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
}

.bottom-spacer {
  height: 26px;
}

@media (min-width: 700px) {
  .home .hero {
    padding-top: 10px;
  }

  .home .hero > .section-shell,
  .home #top-picks > .section-shell,
  .home #rankings > .section-shell,
  .home #compare-table > .section-shell,
  .home #intent > .section-shell,
  .home #quiz > .section-shell,
.home #crypto-convenience > .section-shell,
  .home #faq > .section-shell,
  .home #studios > .section-shell {
    padding: clamp(18px, 2.2vw, 28px);
  }

  .trust-strip__inner {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: center;
  }

  .trust-strip__meta {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .intent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quiz-card {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    align-items: start;
  }

  .provider-wall__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

}

@media (max-width: 479px) {
  .hero__brand-rack {
    margin-inline: calc(var(--page-pad) * -1);
    padding-inline: var(--page-pad);
    -webkit-overflow-scrolling: touch;
  }

  .hero-brand {
    width: 168px;
  }

  .hero-brand__text strong {
    white-space: nowrap;
  }

  .trust-strip__payments .payment-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .provider-wall__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .provider-wall__chips {
    gap: 6px;
  }

  .provider-wall__chips span {
    padding: 6px 10px;
    font-size: 0.68rem;
  }
}

@media (min-width: 900px) {
  .rank-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rank-list .rank-card:first-child,
  .rank-list .rank-card:nth-child(2),
  .rank-list .rank-card:nth-child(3) {
    grid-column: span 1;
  }

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

  .quiz-card {
    padding: 20px;
  }
}

@media (max-width: 699px) {
  .home main {
    gap: 14px;
    padding: 8px 0 30px;
  }

  .hero--plinko {
    min-height: 44svh;
  }

  .hero__scene {
    min-height: 44svh;
  }

  .hero__brands {
    display: none;
  }

  .home .hero {
    padding: 10px 0 8px;
  }

  .home .hero > .section-shell,
  .home #top-picks > .section-shell,
  .home #rankings > .section-shell,
  .home #compare-table > .section-shell,
  .home #intent > .section-shell,
  .home #quiz > .section-shell,
.home #crypto-convenience > .section-shell,
  .home #faq > .section-shell,
  .home #studios > .section-shell {
    padding: 12px;
    border-radius: 16px;
  }

  .hero--minimal {
    padding-bottom: 12px;
  }

  .hero__inner {
    gap: 12px;
  }

  .hero__copy {
    gap: 8px;
  }

  .hero__kicker {
    display: none;
  }

  .hero__lead,
  .hero__facts,
  .hero-actions .btn-secondary {
    display: none;
  }

  .hero h1 {
    font-size: clamp(1.55rem, 7.4vw, 2.15rem);
    line-height: 0.9;
    max-width: 11ch;
  }

  .hero-actions {
    gap: 8px;
  }

  .hero-actions .btn-primary {
    min-height: 42px;
    padding-inline: 14px;
    font-size: 0.9rem;
  }

  #rankings .section-lead {
    display: none;
  }

  #rankings .section-title {
    margin-top: 4px;
    font-size: 1.05rem;
  }

  #rankings,
  #rankings .section-shell,
  #rankings .section-row,
  #rankings .rank-head,
  #rankings .rank-toolbar,
  #rankings .rank-toolbar__chips,
  #rankings .rank-list,
  #rankings .rank-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
  }

  #rankings .rank-list {
    grid-template-columns: minmax(0, 1fr);
  }

  #rankings .rank-card {
    align-self: stretch;
    justify-self: stretch;
  }

  #rankings .rank-card__top,
  #rankings .rank-card__brand,
  #rankings .rank-card__brand > div,
  #rankings .rank-card__actions {
    min-width: 0;
    max-width: 100%;
  }

  .rank-toolbar {
    gap: 8px;
  }

  .rank-toolbar__chips {
    gap: 6px;
  }

  .chip {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.78rem;
  }

  .sort-btn {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.78rem;
  }

  .rank-list {
    gap: 14px;
  }

  .home .rank-card__score,
  .home .rank-card__mobile-score,
  .home .rank-card__fineprint,
  .home .rank-card__angle,
  .home .rank-card__tags,
  .home .rank-card__rail {
    display: none !important;
  }

  .home .rank-card__facts {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
  }

  .home .rank-card__details {
    display: block !important;
  }

  .home .rank-card__details[open] .rank-card__details-summary {
    margin-bottom: 16px;
  }

  .home .rank-card__details[open] .rank-card__expanded {
    display: grid;
    gap: 12px;
    padding-top: 2px;
  }

  .home .rank-card__expanded .provider-row {
    align-items: stretch;
    gap: 10px;
  }

  .home .rank-card__expanded .provider-pill {
    justify-items: center;
    align-content: start;
  }

  .home .rank-card__expanded .provider-pill img {
    display: block;
    margin: 0 auto;
    place-self: center;
  }

  .home .rank-card__actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home .rank-card {
    padding: 12px;
    gap: 10px;
  }

  .home .rank-card__top {
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .rank-head,
  .intent-head,
  .quiz-head,
  .faq-head {
    padding-inline-start: 14px;
    gap: 8px;
  }

  .home .rank-card__meta {
    display: block;
    font-size: 0.78rem;
  }

  .home .rank-card__badges {
    display: flex;
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .home .rank-card__badges::-webkit-scrollbar {
    display: none;
  }

  .home .rank-card__badge {
    min-height: 22px;
    padding: 0 8px;
    font-size: 0.64rem;
  }

  .home .rank-card__score {
    display: inline-flex;
    align-self: flex-start;
    min-width: 62px;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 18px;
    white-space: nowrap;
  }

  #rankings .rank-card__actions {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  #rankings .rank-card__actions > * {
    min-width: 0;
    width: 100%;
  }

  .home .rank-card__score span {
    font-size: 0.69rem;
  }

  .home .rank-card__score strong {
    font-size: 1.1rem;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: clamp(1.9rem, 8.5vw, 3rem);
  }

  .hero-slot {
    min-height: 68px;
  }
}


.home {
  --home-panel-bg: rgba(14, 22, 42, 0.58);
  --home-panel-bg-soft: rgba(14, 22, 42, 0.42);
  --home-panel-border: rgba(255, 255, 255, 0.1);
  --home-panel-shadow: 0 12px 30px rgba(2, 6, 18, 0.28);
}

.home main {
  gap: clamp(18px, 3.2vw, 36px);
  padding: clamp(10px, 1.6vw, 20px) 0 clamp(40px, 5vw, 70px);
}

.home .page-section {
  padding-block: 0;
}

.home .hero > .section-shell,
.home #top-picks > .section-shell,
.home #rankings > .section-shell,
.home #compare-table > .section-shell,
.home #intent > .section-shell,
.home #quiz > .section-shell,
.home #crypto-convenience > .section-shell,
.home #faq > .section-shell,
.home #studios > .section-shell {
  padding: clamp(16px, 2.2vw, 30px);
  border-radius: 22px;
  border: 1px solid var(--home-panel-border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    var(--home-panel-bg);
  box-shadow: var(--home-panel-shadow);
}

.home .hero > .section-shell {
  background:
    radial-gradient(circle at 82% 12%, rgba(0, 187, 255, 0.08), transparent 40%),
    radial-gradient(circle at 18% 0%, rgba(189, 238, 0, 0.07), transparent 34%),
    var(--home-panel-bg);
}

.home .table-block {
  gap: clamp(16px, 2.2vw, 24px);
  padding-top: 0;
}

.home .section-row {
  gap: clamp(16px, 2vw, 24px);
}

.home .rank-head,
.home .intent-head,
.home .quiz-head,
.home .faq-head {
  padding-inline-start: 0;
  border-inline-start: 0;
  gap: 10px;
}

.home .eyebrow {
  gap: 7px;
  border-color: rgba(0, 187, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(9, 49, 82, 0.86), rgba(8, 35, 63, 0.76)),
    rgba(8, 35, 63, 0.7);
  box-shadow:
    inset 0 1px 0 rgba(173, 228, 255, 0.18),
    0 8px 18px rgba(1, 10, 28, 0.24);
}

.home .eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9dec37, #19d3d7);
  box-shadow: 0 0 0 2px rgba(157, 236, 55, 0.18);
  flex: 0 0 auto;
}

.home .section-title {
  font-size: clamp(1.32rem, 2.1vw, 2.2rem);
  letter-spacing: -0.03em;
}

.home .section-lead {
  max-width: 70ch;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.48;
}

.home .rank-list,
.home .intent-grid,
.home .quiz-steps,
.home .accordion-list,
.home .provider-wall__grid {
  gap: clamp(14px, 1.9vw, 20px);
}

.home .rank-card,
.home .intent-card,
.home .quiz-card,
.home .faq-item,
.home .quiz-step,
.home .provider-pill,
.home .trust-item {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(15, 24, 45, 0.7);
  box-shadow: 0 10px 24px rgba(4, 8, 20, 0.24);
}

.home .rank-card,
.home .intent-card,
.home .quiz-card {
  padding: clamp(14px, 1.8vw, 20px);
}

.home .intent-card {
  min-height: 72px;
}

.home .rank-card__badges {
  display: none !important;
}

.home .rank-card:hover,
.home .intent-card:hover,
.home .review-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 187, 255, 0.22);
  box-shadow: 0 16px 34px rgba(4, 8, 20, 0.3);
}


@media (min-width: 700px) {
  .home #top-picks .rank-card,
  .home #rankings .rank-card {
    height: 100%;
    align-content: start;
  }

  .home #top-picks .rank-card__angle,
  .home #rankings .rank-card__angle {
    min-height: 2.8em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .home #top-picks .rank-card__facts,
  .home #rankings .rank-card__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(92px, auto);
    align-items: stretch;
  }

  .home #top-picks .fact,
  .home #rankings .fact {
    min-height: 92px;
    display: flex;
    flex-direction: column;
  }

  .home #top-picks .fact__value,
  .home #rankings .fact__value {
    margin-top: 6px;
    line-height: 1.34;
    min-height: 2.68em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .home #top-picks .fact--languages,
  .home #rankings .fact--languages {
    min-height: 128px;
  }

  .home #top-picks .fact--wide,
  .home #rankings .fact--wide {
    grid-column: 1 / -1;
    min-height: 118px;
  }

  .home #top-picks .fact--bonus .fact__value,
  .home #rankings .fact--bonus .fact__value {
    -webkit-line-clamp: 3;
    min-height: 4.02em;
  }

  .home #top-picks .fact--languages .fact__value,
  .home #rankings .fact--languages .fact__value {
    margin-top: 6px;
    font-size: 0.88rem;
    line-height: 1.35;
    min-height: 4.02em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }
}

.home .rank-toolbar {
  padding: 10px 12px;
  border: 1px solid var(--home-panel-border);
  border-radius: 14px;
  background: var(--home-panel-bg-soft);
}

.home .chip {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.home .chip.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #9dec37, #19d3d7);
  color: #07141f;
}

.home .btn-primary,
.home .btn-secondary {
  min-height: 42px;
  border-radius: 12px;
  box-shadow: none;
}

.home .btn-primary {
  background: linear-gradient(135deg, #9dec37, #19d3d7);
  color: #08131e;
}

.home .btn-secondary {
  border-color: rgba(0, 187, 255, 0.22);
  background: rgba(11, 26, 49, 0.75);
}

.home #compare-table .table-scroll {
  border: 1px solid var(--home-panel-border);
  border-radius: 16px;
  background: rgba(11, 18, 37, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.home #compare-table .compare-table thead th {
  background: rgba(8, 16, 33, 0.92);
}

.home #compare-table .compare-table tbody tr:nth-child(odd) td,
.home #compare-table .compare-table tbody tr:nth-child(odd) th[scope="row"] {
  background: rgba(255, 255, 255, 0.02);
}

.home #compare-table .table-note {
  color: rgba(255, 255, 255, 0.72);
}

.home #compare-table .table-variant-picker,
.home #compare-table .table-variant-copy {
  display: none;
}

@media (max-width: 699px) {
  .home main {
    gap: 12px;
    padding: 8px 0 30px;
  }

  .home .hero > .section-shell,
  .home #top-picks > .section-shell,
  .home #rankings > .section-shell,
  .home #compare-table > .section-shell,
  .home #intent > .section-shell,
  .home #quiz > .section-shell,
.home #crypto-convenience > .section-shell,
  .home #faq > .section-shell,
  .home #studios > .section-shell {
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(4, 8, 20, 0.22);
  }

  .home .section-title {
    font-size: clamp(1.22rem, 5.9vw, 1.55rem);
  }

  .home .rank-head,
  .home .intent-head,
  .home .quiz-head,
  .home .faq-head {
    gap: 8px;
  }

  .home .rank-toolbar {
    padding: 8px;
  }

  .home .rank-card,
  .home .intent-card,
  .home .quiz-card {
    padding: 12px;
  }

  .home #compare-table .compare-table tbody tr {
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(4, 8, 20, 0.22);
  }

  .home #compare-table .compare-table tbody th[scope="row"],
  .home #compare-table .compare-table tbody td {
    padding-left: 86px;
  }
}


@media (max-width: 699px) {
  .home {
    --ticker-h: 36px;
  }

  .home .ticker {
    display: grid;
    min-height: var(--ticker-h);
    padding-inline: 10px;
  }

  .home .ticker__label {
    min-height: 22px;
    padding: 0 8px;
    font-size: 0.66rem;
  }

  .home .ticker__item {
    min-height: 22px;
    padding: 0 10px;
    font-size: 0.78rem;
  }

  .home .app-header {
    top: var(--ticker-h);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(10, 16, 32, 0.94);
    backdrop-filter: blur(14px);
  }

  .home main {
    gap: 10px;
    padding: 8px 0 calc(86px + env(safe-area-inset-bottom));
  }

  .home .hero > .section-shell,
  .home #top-picks > .section-shell,
  .home #rankings > .section-shell,
  .home #compare-table > .section-shell,
  .home #intent > .section-shell,
  .home #quiz > .section-shell,
.home #crypto-convenience > .section-shell,
  .home #faq > .section-shell,
  .home #studios > .section-shell {
    width: auto;
    margin-inline: 10px;
    padding: 12px;
    border-radius: 14px;
    border-color: rgba(255, 255, 255, 0.1);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
      rgba(13, 20, 40, 0.86);
    box-shadow: 0 8px 18px rgba(2, 6, 18, 0.2);
  }

  .home .section-title {
    font-size: clamp(1.2rem, 5.5vw, 1.45rem);
    line-height: 1.08;
  }

  .home .section-lead {
    font-size: 1rem;
    line-height: 1.5;
  }

  .home .rank-head,
  .home .intent-head,
  .home .quiz-head,
  .home .faq-head {
    gap: 8px;
  }

  .home .eyebrow {
    min-height: 30px;
    padding: 0 12px;
  }

  .home .rank-toolbar {
    padding: 8px;
    border-radius: 12px;
  }

  .home .chip {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 0.76rem;
  }

  .home .sort-btn {
    min-height: 40px;
    padding-inline: 12px;
  }

  .home .rank-card,
  .home .intent-card,
  .home .quiz-card {
    padding: 12px;
    border-radius: 14px;
  }

  .home .rank-card__actions {
    gap: 8px;
  }

  .home .rank-card__actions > * {
    min-height: 40px;
  }

  .home #compare-table {
    --tv-label-w: 78px;
  }

  .home #compare-table .table-variant-picker {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .home #compare-table .table-variant-btn {
    min-height: 36px;
    border-radius: 11px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.01em;
  }

  .home #compare-table .table-variant-btn.is-active {
    border-color: rgba(25, 211, 215, 0.3);
    background: linear-gradient(135deg, rgba(157, 236, 55, 0.22), rgba(25, 211, 215, 0.2));
    color: #effff6;
  }

  .home #compare-table .table-variant-copy {
    display: block;
    margin: -2px 0 2px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.79rem;
    line-height: 1.42;
  }

  .home #compare-table .table-scroll {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .home #compare-table .table-scroll table {
    min-width: 0;
    width: 100%;
    table-layout: auto;
    border-collapse: separate;
    border-spacing: 0;
  }

  .home #compare-table .compare-table {
    display: block;
  }

  .home #compare-table .compare-table thead,
  .home #compare-table .compare-table caption {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .home #compare-table .compare-table tbody {
    display: grid;
    gap: 10px;
  }

  .home #compare-table .compare-table tbody tr {
    display: block;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0)),
      rgba(11, 18, 37, 0.88);
    box-shadow: none;
  }

  .home #compare-table .compare-table tbody tr:nth-child(odd) td,
  .home #compare-table .compare-table tbody tr:nth-child(odd) th[scope="row"],
  .home #compare-table .compare-table tbody tr:hover td,
  .home #compare-table .compare-table tbody tr:hover th[scope="row"] {
    background: transparent !important;
  }

  .home #compare-table .compare-table tbody th[scope="row"],
  .home #compare-table .compare-table tbody td {
    position: relative;
    display: block;
    width: 100%;
    padding: 8px 0 9px var(--tv-label-w);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    background: transparent !important;
    text-align: left;
    vertical-align: top;
  }

  .home #compare-table .compare-table tbody tr > *:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .home #compare-table .compare-table tbody th[scope="row"] {
    padding-top: 0;
    margin-bottom: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .home #compare-table .compare-table tbody th[scope="row"]::before,
  .home #compare-table .compare-table tbody td::before {
    content: attr(data-label);
    position: absolute;
    left: 0;
    top: 9px;
    width: calc(var(--tv-label-w) - 8px);
    color: rgba(194, 208, 235, 0.72);
    font-size: 0.61rem;
    line-height: 1.2;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }

  .home #compare-table .compare-table tbody th[scope="row"]::before {
    top: 3px;
  }

  .home #compare-table .compare-table tbody td[data-label="Rating"] strong {
    font-size: 0.95rem;
  }

  .home #compare-table .compare-table tbody td[data-label="Best for"] strong {
    display: block;
    font-size: 0.83rem;
    line-height: 1.32;
  }

  .home #compare-table .table-subline {
    display: block;
    margin-top: 4px;
    color: rgba(194, 208, 235, 0.78);
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .home #compare-table .table-chip-row {
    gap: 5px;
  }

  .home #compare-table .table-chip {
    min-height: 22px;
    padding: 0 7px;
    font-size: 0.68rem;
  }

  .home #compare-table .table-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    align-items: stretch;
  }

  .home #compare-table .table-actions .btn-primary,
  .home #compare-table .table-actions .btn-secondary {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    border-radius: 11px;
    padding-inline: 10px;
    font-size: 0.76rem;
  }

  .home #compare-table[data-table-variant="v1"] .compare-table tbody tr {
    border-color: rgba(0, 187, 255, 0.16);
    background:
      radial-gradient(circle at 96% 6%, rgba(0, 187, 255, 0.14), transparent 38%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
      rgba(11, 19, 38, 0.9);
  }

  .home #compare-table[data-table-variant="v1"] .table-subline {
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .home #compare-table[data-table-variant="v2"] .compare-table tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "rank rating"
      "casino casino"
      "speed bonus"
      "best best"
      "actions actions";
    gap: 7px 8px;
    padding: 10px;
    border-radius: 12px;
    border-color: rgba(157, 236, 55, 0.18);
    background:
      linear-gradient(180deg, rgba(157, 236, 55, 0.06), rgba(157, 236, 55, 0)),
      rgba(9, 17, 33, 0.95);
  }

  .home #compare-table[data-table-variant="v2"] .compare-table tbody th[scope="row"],
  .home #compare-table[data-table-variant="v2"] .compare-table tbody td {
    padding: 0;
    border-bottom: 0;
  }

  .home #compare-table[data-table-variant="v2"] .compare-table tbody th[scope="row"]::before,
  .home #compare-table[data-table-variant="v2"] .compare-table tbody td::before {
    display: none;
  }

  .home #compare-table[data-table-variant="v2"] .compare-table tbody th[scope="row"] {
    grid-area: rank;
  }

  .home #compare-table[data-table-variant="v2"] .compare-table tbody td[data-label="Casino"] {
    grid-area: casino;
  }

  .home #compare-table[data-table-variant="v2"] .compare-table tbody td[data-label="Rating"] {
    grid-area: rating;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 0.92rem;
    color: #f1f8ff;
    font-weight: 800;
    white-space: nowrap;
  }

  .home #compare-table[data-table-variant="v2"] .compare-table tbody td[data-label="Rating"] strong {
    font-size: 1.4rem;
    line-height: 1;
    color: #f8fdff;
    text-shadow:
      0 1px 8px rgba(0, 0, 0, 0.28),
      0 0 10px rgba(157, 236, 55, 0.22);
  }

  .home #compare-table[data-table-variant="v2"] .compare-table tbody td[data-label="Withdrawal"] {
    grid-area: speed;
  }

  .home #compare-table[data-table-variant="v2"] .compare-table tbody td[data-label="Bonuses"] {
    grid-area: bonus;
  }

  .home #compare-table[data-table-variant="v2"] .compare-table tbody td[data-label="Withdrawal"] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 32px;
    padding: 0 8px;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.76rem;
    font-weight: 700;
  }

  .home #compare-table[data-table-variant="v2"] .compare-table tbody td[data-label="Withdrawal"]::before {
    display: block;
    content: attr(data-label);
    position: static;
    width: auto;
    margin-right: 6px;
    font-size: 0.6rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(194, 208, 235, 0.72);
  }

  .home #compare-table[data-table-variant="v2"] .compare-table tbody td[data-label="Bonuses"] {
    display: block;
    min-height: 32px;
    padding: 6px 8px;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.03);
    font-size: 0.69rem;
    line-height: 1.3;
    color: rgba(234, 242, 255, 0.88);
  }

  .home #compare-table[data-table-variant="v2"] .compare-table tbody td[data-label="Bonuses"]::before {
    display: block;
    content: attr(data-label);
    position: static;
    width: auto;
    margin-bottom: 4px;
    font-size: 0.6rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(194, 208, 235, 0.72);
  }

  .home #compare-table[data-table-variant="v2"] .compare-table tbody td[data-label="Best for"] {
    grid-area: best;
    padding: 8px 10px;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
  }

  .home #compare-table[data-table-variant="v2"] .compare-table tbody td[data-label="Best for"] strong {
    font-size: 0.82rem;
  }

  .home #compare-table[data-table-variant="v2"] .compare-table tbody td[data-label="Best for"] .table-subline {
    display: none;
  }

  .home #compare-table[data-table-variant="v2"] .compare-table tbody td[data-label="Tags"] {
    display: none;
  }

  .home #compare-table[data-table-variant="v2"] .compare-table tbody td[data-label="Action"] {
    grid-area: actions;
  }

  .home #compare-table[data-table-variant="v2"] .table-rank {
    min-width: 64px;
    min-height: 42px;
    padding-inline: 14px;
    font-size: 1rem;
    border: 1px solid rgba(176, 245, 78, 0.52);
    white-space: nowrap;
    box-shadow:
      0 9px 20px rgba(0, 0, 0, 0.24),
      0 0 0 1px rgba(179, 250, 94, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.26);
  }

  .home #compare-table[data-table-variant="v3"] .compare-table tbody {
    gap: 8px;
  }

  .home #compare-table[data-table-variant="v3"] .compare-table tbody tr {
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
    border-color: rgba(0, 187, 255, 0.18);
    background: rgba(10, 18, 36, 0.95);
  }

  .home #compare-table[data-table-variant="v3"] .compare-table tbody th[scope="row"],
  .home #compare-table[data-table-variant="v3"] .compare-table tbody td {
    padding: 10px 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .home #compare-table[data-table-variant="v3"] .compare-table tbody th[scope="row"] {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 187, 255, 0.12), rgba(25, 211, 215, 0.05)) !important;
  }

  .home #compare-table[data-table-variant="v3"] .compare-table tbody th[scope="row"]::before {
    display: none;
  }

  .home #compare-table[data-table-variant="v3"] .compare-table tbody td::before {
    position: static;
    display: block;
    width: auto;
    margin-bottom: 4px;
    font-size: 0.6rem;
    letter-spacing: 0.07em;
    color: rgba(194, 208, 235, 0.72);
  }

  .home #compare-table[data-table-variant="v3"] .compare-table tbody td[data-label="Tags"] {
    display: none;
  }

  .home #compare-table[data-table-variant="v3"] .compare-table tbody td[data-label="Best for"] strong {
    font-size: 0.82rem;
  }

  .home .mobile-actions {
    display: grid !important;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(8, 14, 28, 0.96);
    backdrop-filter: blur(16px);
  }

  .home .mobile-actions button,
  .home .mobile-actions a {
    min-height: 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.74rem;
    font-weight: 700;
    box-shadow: none;
  }

  .home .mobile-actions .cta-primary {
    border-color: rgba(25, 211, 215, 0.24);
    background: linear-gradient(135deg, #9dec37, #19d3d7);
    color: #07131f;
  }
}

.home #compare-table .table-v1 td[data-label="Bonuses"],
.home #compare-table .table-v1 td[data-label="Withdrawal"] {
  font-size: 0.84rem;
  line-height: 1.4;
}

.home #compare-table .table-v1 td[data-label="Best for"] strong {
  text-wrap: balance;
}

@media (max-width: 699px) {
  .home #compare-table .table-v1 tbody td[data-label="Bonuses"],
  .home #compare-table .table-v1 tbody td[data-label="Best for"],
  .home #compare-table .table-v1 tbody td[data-label="Tags"] {
    line-height: 1.42;
    text-wrap: pretty;
  }
}

.home .hero {
  position: relative;
}

.home .hero > .section-shell {
  position: relative;
  overflow: hidden;
}

.home .hero > .section-shell::before {
  content: "";
  position: absolute;
  inset: -22% -30% auto auto;
  width: min(420px, 76vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 40%, rgba(157, 236, 55, 0.2), rgba(157, 236, 55, 0)),
    radial-gradient(circle at 62% 62%, rgba(25, 211, 215, 0.24), rgba(25, 211, 215, 0));
  pointer-events: none;
  z-index: 0;
}

.home .hero__inner,
.home .hero__copy,
.home .hero__brands {
  position: relative;
  z-index: 1;
}

.home .hero__inner {
  gap: clamp(14px, 2.2vw, 24px);
}

.home .hero__copy {
  gap: 14px;
}

.home .hero__copy > * {
  margin: 0;
}

.home .hero h1 {
  max-width: 15.5ch;
  line-height: 0.97;
  letter-spacing: -0.05em;
}

.home .hero__lead {
  max-width: 46ch;
  color: rgba(235, 244, 255, 0.88);
  font-size: 0.97rem;
  line-height: 1.48;
}

.home .hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 440px);
  margin-top: 2px;
}

.home .hero-actions > * {
  width: 100%;
}

.home .hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 4px 0 2px;
}

.home .hero__stat {
  display: grid;
  align-content: start;
  gap: 4px;
  min-height: 76px;
  padding: 11px 12px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0)),
    rgba(9, 16, 33, 0.64);
}

.home .hero__stat strong {
  color: #f4fbff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.home .hero__stat span {
  color: rgba(197, 215, 236, 0.86);
  font-size: 0.72rem;
  line-height: 1.34;
}

.home .hero__facts {
  gap: 8px 10px;
  color: rgba(208, 221, 239, 0.84);
  font-size: 0.83rem;
  margin-top: 2px;
}

.home .hero__facts span {
  min-height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(9, 18, 37, 0.56);
}

.home .hero__facts span + span::before {
  content: none;
  margin: 0;
}

.home .hero__brands {
  gap: 11px;
  margin-top: 4px;
}

.home .hero__brands-label {
  color: rgba(196, 212, 235, 0.9);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
}

.home .hero .hero-brand:hover {
  transform: none;
}

@media (max-width: 699px) {
  .home .hero {
    padding: 0 0 6px;
  }

  .home .hero > .section-shell {
    width: 100%;
    margin-inline: 0;
    padding: 16px 14px 18px;
    border-top: 0;
    border-inline: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0 0 20px 20px;
    background:
      radial-gradient(circle at 100% 0%, rgba(25, 211, 215, 0.2), rgba(25, 211, 215, 0) 48%),
      radial-gradient(circle at 12% -8%, rgba(157, 236, 55, 0.14), rgba(157, 236, 55, 0) 42%),
      linear-gradient(180deg, rgba(12, 20, 39, 0.96), rgba(12, 19, 37, 0.93));
    box-shadow: 0 14px 28px rgba(2, 6, 18, 0.26);
  }

  .home .hero__inner {
    gap: 14px;
  }

  .home .hero__copy {
    width: 100%;
    gap: 12px;
  }

  .home .hero__kicker {
    display: inline-flex;
    min-height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 0.63rem;
    letter-spacing: 0.08em;
  }

  .home .hero h1 {
    max-width: 100%;
    font-size: clamp(1.84rem, 8.1vw, 2.34rem);
    line-height: 1.04;
    letter-spacing: -0.035em;
    text-wrap: balance;
  }

  .home .hero__lead {
    display: block;
    max-width: 36ch;
    font-size: 0.91rem;
    line-height: 1.5;
    color: rgba(217, 230, 248, 0.92);
  }

  .home .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    margin-top: 2px;
  }

  .home .hero-actions .btn-primary,
  .home .hero-actions .btn-secondary {
    display: inline-flex;
    min-height: 44px;
    padding-inline: 12px;
    border-radius: 12px;
    font-size: 0.84rem;
  }

  .home .hero__stats {
    gap: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2px;
  }

  .home .hero__stat {
    min-height: 70px;
    padding: 10px 10px 11px;
    border-radius: 13px;
  }

  .home .hero__stat strong {
    font-size: 0.79rem;
  }

  .home .hero__stat span {
    font-size: 0.7rem;
    line-height: 1.38;
  }

  .home .hero__facts {
    display: flex;
    gap: 6px 8px;
    font-size: 0.74rem;
    margin-top: 2px;
  }

  .home .hero__facts span {
    min-height: 22px;
    padding: 0 7px;
  }

  .home .hero__facts span + span::before {
    content: none;
    margin: 0;
  }

  .home .hero__brands {
    display: grid;
    gap: 8px;
    margin-top: 4px;
  }

  .home .hero__brands-label {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }

  .home .hero__brand-rack {
    margin-inline: 0;
    padding-inline: 6px;
    gap: 8px;
    padding-bottom: 4px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 6px;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .home .hero-brand {
    width: auto;
    min-width: clamp(116px, 34vw, 134px);
    min-height: 48px;
    padding: 6px 10px 6px 6px;
    border-radius: 12px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .home .hero-brand__logo {
    width: 34px;
    height: 34px;
    border-radius: 10px;
  }

  .home .hero-brand__text strong {
    font-size: 0.78rem;
  }
}

@media (max-width: 420px) {
  .home .hero h1 {
    font-size: clamp(1.72rem, 8.6vw, 2.14rem);
  }

  .home .hero__stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home .hero__stat:last-child {
    grid-column: 1 / -1;
  }
}

@media (min-width: 900px) {
  .home .hero__brands {
    gap: 10px;
  }

  .home .hero__brands-controls[hidden] {
    display: none !important;
  }

  .home .hero__brands-controls {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
  }

  .home .hero__brand-rack {
    padding-inline: 2px;
    padding-bottom: 8px;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 187, 255, 0.38) rgba(255, 255, 255, 0.08);
  }

  .home .hero__brand-rack.is-desktop-scrollable {
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 22px, #000 calc(100% - 22px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 22px, #000 calc(100% - 22px), transparent 100%);
  }

  .home .hero__brand-rack.is-desktop-scrollable:focus-visible {
    outline: none;
    box-shadow: inset 0 0 0 2px rgba(0, 187, 255, 0.34);
    border-radius: 14px;
  }

  .home .hero__brand-rack::-webkit-scrollbar {
    display: block;
    height: 7px;
  }

  .home .hero__brand-rack::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(0, 187, 255, 0.65), rgba(0, 199, 177, 0.58));
  }

  .home .hero__brand-rack::-webkit-scrollbar-track {
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
  }
}

.home #faq .accordion-list {
  gap: 10px;
}

.home #faq .faq-head {
  margin-bottom: 14px;
}

.home #faq .section-lead {
  max-width: 62ch;
  line-height: 1.52;
}

.home #faq .faq-item {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(13, 22, 42, 0.75);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 8px 18px rgba(4, 8, 20, 0.2);
}

.home #faq .accordion-trigger {
  min-height: 58px;
  padding: 0 14px;
  gap: 10px;
  font-size: 0.98rem;
  line-height: 1.3;
}

.home #faq .accordion-trigger span:last-child {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--brand-primary);
  border: 1px solid rgba(0, 199, 177, 0.34);
  background: rgba(0, 199, 177, 0.1);
}

.home #faq .faq-item[data-open="true"] .accordion-trigger span:last-child {
  color: #d8ff75;
  border-color: rgba(189, 238, 0, 0.42);
  background: rgba(189, 238, 0, 0.16);
}

.home #faq .accordion-panel {
  padding: 0 14px 14px;
  font-size: 0.94rem;
  line-height: 1.55;
}

@media (min-width: 980px) {
  .home #faq .accordion-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (max-width: 699px) {
  .home #faq .faq-head {
    margin-bottom: 12px;
  }

  .home #faq .section-lead {
    max-width: 100%;
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .home #faq .accordion-trigger {
    min-height: 52px;
    padding: 0 12px;
    font-size: 0.93rem;
  }

  .home #faq .accordion-panel {
    padding: 0 12px 12px;
    font-size: 0.9rem;
  }
}

@media (max-width: 699px) {
  .home .rank-card__rail {
    display: grid !important;
    gap: 6px;
    margin-top: 2px;
    padding: 8px 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.028);
    border-color: rgba(255, 255, 255, 0.11);
  }

  .home .rank-card__rail-head {
    gap: 8px;
  }

  .home .rank-card__rail-label {
    font-size: 0.62rem;
    letter-spacing: 0.07em;
  }

  .home .rank-card__rail-count {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 0 7px;
    border-radius: 999px;
    background: rgba(0, 199, 177, 0.14);
    border: 1px solid rgba(0, 199, 177, 0.28);
    color: rgba(235, 246, 255, 0.92);
    font-size: 0.67rem;
    line-height: 1;
  }

  .home .rank-card__rail .payment-row {
    gap: 6px;
    overflow: visible;
    padding-right: 0;
  }

  .home .rank-card__rail .coin-pill {
    width: 32px;
    height: 32px;
    padding: 3px;
    border-radius: 10px;
  }

.home .rank-card__rail .coin-pill::before {
    font-size: 0.52rem;
    padding: 0 4px;
  }
}

.home .hero > .section-shell,
.home #top-picks > .section-shell,
.home #rankings > .section-shell,
.home #compare-table > .section-shell,
.home #intent > .section-shell,
.home #quiz > .section-shell,
.home #crypto-convenience > .section-shell,
.home #faq > .section-shell,
.home #studios > .section-shell {
  background:
    linear-gradient(168deg, rgba(17, 27, 49, 0.9), rgba(11, 18, 34, 0.95)),
    var(--home-panel-bg);
  border-color: rgba(145, 184, 224, 0.2);
  box-shadow:
    0 10px 22px rgba(2, 8, 18, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.home .rank-card,
.home .intent-card,
.home .quiz-card,
.home .faq-item,
.home .quiz-step,
.home .provider-pill,
.home .trust-item {
  background: linear-gradient(170deg, rgba(22, 33, 58, 0.82), rgba(12, 20, 38, 0.9));
  border-color: rgba(255, 255, 255, 0.11);
  box-shadow:
    0 10px 22px rgba(4, 8, 20, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.home .hero > .section-shell::before {
  opacity: 0.6;
}

.home main {
  gap: clamp(14px, 2.2vw, 26px);
}

.home .section-title {
  line-height: 1.1;
}

.home .section-lead {
  line-height: 1.54;
}

.home .rank-card,
.home .intent-card,
.home .quiz-card {
  gap: clamp(12px, 1.6vw, 18px);
}

.home .rank-card__facts {
  gap: 10px;
}

@media (max-width: 699px) {
  .home main {
    gap: 12px;
  }

  .home .hero > .section-shell,
  .home #top-picks > .section-shell,
  .home #rankings > .section-shell,
  .home #compare-table > .section-shell,
  .home #intent > .section-shell,
  .home #quiz > .section-shell,
  .home #crypto-convenience > .section-shell,
  .home #faq > .section-shell,
  .home #studios > .section-shell {
    width: auto;
    margin-inline: 12px;
    padding: 12px;
  }
}

.home .hero > .section-shell {
  background:
    linear-gradient(168deg, rgba(8, 14, 27, 0.62), rgba(8, 14, 27, 0.88)),
    url("/Images/Hero/hero-desktop.webp?v=20260325a") center / cover no-repeat;
}

@media (max-width: 699px) {
  .home .hero > .section-shell {
    background:
      linear-gradient(178deg, rgba(8, 14, 27, 0.56), rgba(8, 14, 27, 0.86)),
      url("/Images/Hero/hero-mobile.webp?v=20260325a") center top / cover no-repeat;
  }
}

.home #cluster-map .best-page__note {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 2.6vw, 34px);
  overflow: visible;
}

.home #cluster-map .best-page__note > p {
  margin-top: 2px;
  max-width: 90ch;
}

.home #cluster-map .best-page__link-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: 2px;
}

.home #cluster-map .best-page__link {
  display: grid;
  gap: 6px;
  padding: 14px 15px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 86% -18%, rgba(0, 187, 255, 0.08), transparent 46%),
    rgba(21, 30, 52, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.home #cluster-map .best-page__link:hover,
.home #cluster-map .best-page__link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(157, 236, 55, 0.35);
  background:
    radial-gradient(circle at 86% -18%, rgba(157, 236, 55, 0.12), transparent 48%),
    rgba(24, 34, 59, 0.82);
}

.home #cluster-map .best-page__link strong {
  font-size: 0.96rem;
  line-height: 1.28;
}

.home #cluster-map .best-page__link span {
  color: var(--text-secondary);
  font-size: 0.84rem;
  line-height: 1.45;
}

@media (min-width: 900px) {
  .home #cluster-map .best-page__link-grid--home {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 14px;
  }
}

@media (max-width: 699px) {
  .home #cluster-map .best-page__note {
    padding: 18px;
  }
}

/* FAQ polish pass: cleaner visual hierarchy and centered +/- controls on home. */
.home #faq .faq-head {
  gap: 10px;
}

.home #faq .section-title {
  font-size: clamp(1.3rem, 2vw, 2rem);
  letter-spacing: -0.03em;
}

.home #faq .section-lead {
  max-width: 68ch;
}

.home #faq .faq-item {
  border-radius: 16px;
  border: 1px solid rgba(140, 188, 234, 0.24);
  background:
    radial-gradient(circle at 92% 10%, rgba(0, 187, 255, 0.12), transparent 34%),
    linear-gradient(165deg, rgba(17, 30, 52, 0.88), rgba(9, 16, 32, 0.94));
}

.home #faq .accordion-trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 12px 14px;
}

.home #faq .accordion-trigger .faq-item__title {
  font-size: 1.02rem;
  line-height: 1.34;
}

.home #faq .accordion-trigger span:last-child {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  font-size: 0;
  line-height: 1;
  display: grid;
  place-items: center;
}

.home #faq .accordion-trigger span:last-child::before {
  content: "+";
  font-size: 1rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(207, 245, 255, 0.98);
}

.home #faq .faq-item[data-open="true"] .accordion-trigger span:last-child::before {
  content: "−";
  transform: translateY(-1px);
  color: rgba(236, 255, 179, 0.98);
}

.home #faq .accordion-panel {
  padding: 0 14px 14px;
}

@media (max-width: 699px) {
  .home #faq .accordion-trigger {
    min-height: 54px;
    padding: 10px 12px;
  }

  .home #faq .accordion-trigger .faq-item__title {
    font-size: 0.95rem;
  }

  .home #faq .accordion-panel {
    padding: 0 12px 12px;
    font-size: 0.92rem;
    line-height: 1.54;
  }
}

.home #market-volume > .section-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(16px, 2.3vw, 24px);
  border-radius: clamp(16px, 2.2vw, 24px);
  border: 1px solid rgba(0, 187, 255, 0.2);
  background:
    radial-gradient(circle at 90% 10%, rgba(0, 187, 255, 0.18), transparent 36%),
    radial-gradient(circle at 12% 90%, rgba(189, 238, 0, 0.14), transparent 42%),
    linear-gradient(160deg, rgba(16, 24, 44, 0.9), rgba(8, 14, 30, 0.95));
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.24);
}

.market-volume__shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
}

.market-volume__head {
  margin-bottom: 2px;
}

.market-volume__head .section-title {
  max-width: 20ch;
}

.market-volume__head .section-lead {
  max-width: 62ch;
}

.market-volume__fallback {
  margin: 8px 0 0;
  color: #ffe7a6;
  font-size: 0.92rem;
}

.market-volume__panel {
  display: grid;
  gap: 10px;
  padding: clamp(12px, 1.8vw, 18px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(8, 14, 30, 0.5);
  backdrop-filter: blur(8px);
}

.market-volume__status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 12px;
}

.market-volume__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(189, 238, 0, 0.35);
  background: rgba(189, 238, 0, 0.14);
  color: #eaffaa;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.market-volume__asof {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.market-volume__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.market-volume__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px 14px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.02);
}

.market-volume__item--leader {
  border-color: rgba(189, 238, 0, 0.38);
  background:
    linear-gradient(120deg, rgba(189, 238, 0, 0.11), rgba(0, 187, 255, 0.08)),
    rgba(255, 255, 255, 0.02);
}

.market-volume__rank {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  min-height: 34px;
  padding: 0 8px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(13, 22, 42, 0.88);
  color: #ebf5ff;
  font-weight: 800;
}

.market-volume__brand {
  display: grid;
  gap: 4px;
}

.market-volume__brand strong {
  font-size: 1.03rem;
  letter-spacing: -0.01em;
}

.market-volume__cta {
  color: #9de5ff;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.market-volume__cta:hover {
  color: #cbf7ff;
}

.market-volume__metric {
  display: grid;
  justify-items: end;
  gap: 2px;
}

.market-volume__metric span {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.market-volume__metric strong {
  color: #f1ffe0;
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
}

.market-volume__source {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.market-volume__loading {
  margin: 0;
  color: var(--text-secondary);
}

@media (max-width: 699px) {
  .market-volume__item {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
  }

  .market-volume__metric {
    grid-column: 1 / -1;
    justify-items: start;
    padding-left: 54px;
  }

  .market-volume__head .section-title {
    max-width: 16ch;
  }

  .market-volume__source {
    font-size: 0.76rem;
  }
}





