* {
  box-sizing: border-box;
}

:root {
  --bg: #eef2f7;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --line: #d8e0ec;
  --line-strong: #c9d3e2;
  --text: #0f172a;
  --muted: #64748b;
  --navy: #0f172a;
  --navy-2: #16263d;
  --gold: #e7b24f;
  --gold-2: #f1c66e;
  --green: #16a34a;
  --green-soft: #e8fff1;
  --red: #b91c1c;
  --red-soft: #fff1f2;
  --blue: #1d4ed8;
  --shadow: 0 18px 48px rgba(13, 23, 43, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(231, 178, 79, 0.08), transparent 22%),
    linear-gradient(180deg, #f8fafc 0%, var(--bg) 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

.container {
  width: min(1320px, calc(100% - 28px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: white;
  font-weight: 800;
}

.brand__copy strong {
  display: block;
  font-size: 1.04rem;
}

.brand__copy small {
  display: block;
  color: var(--muted);
  font-size: 0.74rem;
}

.main-menu {
  position: relative;
  justify-self: center;
}

.main-menu summary {
  min-height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  background: white;
  color: #334155;
  font-size: 0.9rem;
  font-weight: 700;
}

.main-menu summary::-webkit-details-marker {
  display: none;
}

.main-menu[open] summary {
  border-color: rgba(29, 78, 216, 0.18);
  background: rgba(29, 78, 216, 0.08);
  color: var(--blue);
}

.main-menu__dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  padding: 10px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  display: grid;
  gap: 4px;
}

.main-menu__dropdown a {
  min-height: 40px;
  padding: 0 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  color: #334155;
  font-size: 0.9rem;
}

.main-menu__dropdown a:hover {
  background: #f3f6fb;
}

.site-header__actions,
.section-heading__actions,
.side-card__actions,
.bonus-hero__actions,
.app-cta__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.language-chip {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  background: white;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
}

.language-chip.is-active {
  border-color: rgba(29, 78, 216, 0.18);
  background: rgba(29, 78, 216, 0.08);
  color: var(--blue);
}

.button {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.button--solid {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: var(--navy);
}

.button--ghost {
  border: 1px solid var(--line-strong);
  background: white;
  color: var(--text);
}

.service-strip {
  padding: 16px 0 0;
}

.service-strip__grid,
.market-stats,
.bonus-stats,
.bonus-grid,
.proposal-grid,
.game-links,
.catalog-grid,
.market-movers,
.market-grid,
.site-footer__grid,
.app-cta__grid {
  display: grid;
  gap: 14px;
}

.service-strip__grid {
  grid-template-columns: repeat(6, 1fr);
}

.service-card,
.feature-card,
.mini-card,
.latest-panel,
.market-toolbar,
.market-stats article,
.market-lead,
.market-block,
.side-card,
.bonus-stats article,
.compare-table,
.compare-side,
.bonus-showcase,
.proposal-card,
.split-card,
.cover-card,
.rated-card,
.top-bonus-card,
.bonus-list-card,
.game-link-card,
.catalog-card,
.bonus-hero,
.bonus-mini,
.app-preview,
.site-footer {
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 16px;
}

.service-card small,
.market-stats small,
.bonus-stats small,
.market-lead__outcomes small,
.bonus-list-card__offer span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.service-card strong {
  display: block;
  margin-top: 8px;
}

.service-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.84rem;
}

.site-main {
  padding-bottom: 70px;
}

.editorial-front,
.markets-front,
.bonus-front,
.games-front,
.casino-catalog,
.app-cta {
  padding-top: 28px;
}

.section-heading h1,
.section-heading h2 {
  margin-top: 12px;
  font-family: "Source Serif 4", serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.98;
}

.section-heading p {
  margin-top: 10px;
  max-width: 72ch;
  color: var(--muted);
  line-height: 1.7;
}

.section-heading--split,
.market-toolbar,
.market-block__head,
.chart-card__head,
.bonus-hero__meta,
.stack-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.pill,
.status-pill,
.badge,
.market-card__tag,
.license {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
}

.pill--soft {
  background: rgba(15, 23, 42, 0.06);
  color: var(--muted);
}

.pill--editorial {
  background: rgba(231, 178, 79, 0.18);
  color: #976814;
}

.status-pill {
  background: #fff7e1;
  color: #8a6117;
}

.icon-badge,
.mini-card__icon,
.logo-block {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 62px;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 800;
}

.editorial-front__grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.7fr;
  gap: 18px;
}

.feature-card,
.mini-card,
.latest-panel,
.market-lead,
.market-block,
.side-card,
.compare-side,
.bonus-showcase,
.proposal-card,
.split-card,
.cover-card,
.rated-card,
.top-bonus-card,
.bonus-list-card,
.game-link-card,
.catalog-card,
.bonus-hero,
.bonus-mini,
.app-preview,
.site-footer {
  padding: 20px;
}

.feature-card {
  display: block;
  background:
    radial-gradient(circle at top right, rgba(231, 178, 79, 0.14), transparent 24%),
    linear-gradient(180deg, #ffffff, #f7f9fc);
}

.feature-card h2 {
  margin-top: 14px;
  font-family: "Source Serif 4", serif;
  font-size: 1.95rem;
  line-height: 1.05;
}

.feature-card p,
.mini-card small,
.latest-panel a em,
.latest-panel a span,
.market-lead p,
.side-card p,
.bonus-showcase small,
.proposal-card small,
.split-card__offer small,
.cover-card small,
.rated-card small,
.top-bonus-card small,
.top-bonus-card em,
.bonus-list-card__offer p,
.bonus-list-card__rating small,
.catalog-card small,
.compare-side p,
.compare-side small,
.compare-side__box span,
.game-link-card span {
  color: var(--muted);
}

.feature-card p {
  margin-top: 14px;
  line-height: 1.7;
}

.feature-card strong {
  display: inline-block;
  margin-top: 16px;
  color: var(--blue);
}

.editorial-front__stack {
  display: grid;
  gap: 18px;
}

.mini-card {
  display: grid;
  gap: 8px;
}

.mini-card__kicker {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 700;
}

.mini-card strong {
  line-height: 1.5;
}

.latest-panel__head {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
}

.latest-panel a,
.side-card a {
  display: block;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.latest-panel a:first-of-type,
.side-card a:first-of-type {
  border-top: 0;
}

.latest-panel a em {
  display: block;
  font-style: normal;
  font-size: 0.78rem;
}

.latest-panel a span {
  display: block;
  margin-top: 6px;
  line-height: 1.5;
}

.market-toolbar {
  margin-top: 20px;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.market-toolbar__search {
  flex: 1 1 auto;
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: var(--muted);
  display: flex;
  align-items: center;
  padding: 0 16px;
}

.market-toolbar__links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.market-toolbar__links a {
  color: #334155;
  font-size: 0.88rem;
}

.market-members,
.market-idea-card,
.market-utility-card,
.market-news-card,
.market-subpanel {
  margin-top: 14px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.market-members,
.market-idea-card,
.market-utility-card,
.market-news-card,
.market-subpanel {
  padding: 18px;
}

.market-members {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.market-members small,
.market-news-grid article small,
.heatmap-tile span,
.market-term-grid article small,
.market-compare-cards article small {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.market-members strong,
.market-idea-card h3,
.market-subpanel h3,
.market-news-grid article strong {
  display: block;
  margin-top: 8px;
}

.market-members__avatars {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.market-members__avatars span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: #f6f9ff;
  color: #334155;
  font-size: 0.76rem;
  font-weight: 800;
}

.market-members__avatars a {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  color: #334155;
  font-size: 0.82rem;
}

.market-pills,
.filter-row,
.bonus-hero__chips,
.bonus-actions-inline,
.data-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.market-pills {
  margin-top: 14px;
}

.market-pills span,
.chip-filter {
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: #f2f5fa;
  color: #425066;
  font-size: 0.84rem;
}

.market-pills .is-active {
  background: var(--navy);
  color: white;
}

.market-stats {
  margin-top: 14px;
  grid-template-columns: repeat(4, 1fr);
}

.market-stats article,
.bonus-stats article,
.compare-table,
.market-toolbar {
  box-shadow: var(--shadow);
}

.market-stats article,
.bonus-stats article {
  padding: 16px;
}

.market-idea-card__head,
.market-compare-selects,
.orderflow-head,
.orderflow-list article {
  display: grid;
  gap: 12px;
}

.market-idea-card__head {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.market-idea-card p,
.market-news-grid article p,
.comment-list article p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.market-idea-form {
  margin-top: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 12px;
}

.market-idea-form input,
.market-idea-form select,
.market-idea-form textarea,
.market-compare-selects div {
  min-height: 48px;
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  color: #334155;
  padding: 0 14px;
  font: inherit;
}

.market-idea-form textarea {
  grid-column: 1 / -1;
  min-height: 92px;
  padding: 14px;
  resize: none;
}

.market-idea-form .button {
  min-width: 0;
}

.market-utility-grid,
.market-news-grid,
.market-term-grid,
.market-duo-panels,
.market-compare-cards {
  display: grid;
  gap: 14px;
}

.market-utility-grid {
  margin-top: 14px;
  grid-template-columns: 1fr 1fr;
}

.heatmap-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.heatmap-tile {
  border-radius: 16px;
  padding: 12px;
  border: 1px solid var(--line);
}

.heatmap-tile strong {
  display: block;
  font-size: 0.92rem;
}

.heatmap-tile span {
  margin-top: 8px;
}

.heatmap-tile--up {
  background: rgba(22, 163, 74, 0.12);
  border-color: rgba(22, 163, 74, 0.28);
}

.heatmap-tile--down {
  background: rgba(185, 28, 28, 0.08);
  border-color: rgba(185, 28, 28, 0.2);
}

.heatmap-tile--flat {
  background: #f7f9fc;
}

.market-compare-selects {
  margin-top: 14px;
  grid-template-columns: 1fr 1fr;
}

.market-compare-selects div {
  display: flex;
  align-items: center;
}

.market-compare-cards {
  margin-top: 14px;
  grid-template-columns: 1fr 1fr;
}

.market-compare-cards article,
.market-news-grid article,
.market-term-grid article,
.top-outcomes-list article,
.comment-list article {
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.market-compare-cards article,
.market-news-grid article,
.market-term-grid article,
.top-outcomes-list article,
.comment-list article {
  padding: 14px;
}

.market-compare-cards p {
  font-weight: 700;
}

.market-compare-cards div,
.top-outcomes-list div {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.market-news-card {
  margin-top: 14px;
}

.market-news-grid {
  margin-top: 14px;
  grid-template-columns: repeat(3, 1fr);
}

.market-stats strong,
.bonus-stats strong,
.market-lead__outcomes strong {
  display: block;
  margin-top: 8px;
  font-size: 1.2rem;
}

.markets-layout,
.compare-layout {
  margin-top: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 18px;
}

.markets-layout__main,
.markets-layout__side,
.bonus-list {
  display: grid;
  gap: 18px;
}

.market-lead__kicker {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
}

.market-lead h3 {
  margin-top: 10px;
  font-size: 2rem;
  line-height: 1.04;
}

.market-lead p {
  margin-top: 8px;
}

.market-lead__outcomes {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.market-lead__outcomes div,
.chart-card,
.compare-markets article,
.bonus-hero__chips span,
.compare-side__box,
.proposal-card,
.split-card,
.cover-card,
.rated-card,
.catalog-card,
.game-link-card,
.bonus-mini,
.bonus-showcase,
.top-bonus-card {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.market-lead__outcomes div {
  padding: 14px;
}

.chart-card {
  margin-top: 18px;
  padding: 16px;
}

.market-term-grid {
  margin-top: 16px;
  grid-template-columns: repeat(4, 1fr);
}

.market-term-grid article strong {
  display: block;
  margin-top: 6px;
  font-size: 1.24rem;
}

.market-subpanel {
  margin-top: 16px;
}

.orderflow-head {
  margin-top: 12px;
  grid-template-columns: minmax(0, 1fr) 72px 72px 44px;
  padding: 0 2px;
  color: var(--muted);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.orderflow-list {
  margin-top: 8px;
  display: grid;
  gap: 8px;
}

.orderflow-list article {
  grid-template-columns: minmax(0, 1fr) 72px 72px 44px;
  align-items: center;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
  padding: 12px;
}

.orderflow-list b,
.orderflow-list small {
  justify-self: end;
}

.market-duo-panels {
  margin-top: 16px;
  grid-template-columns: 1fr 1fr;
}

.comment-list,
.top-outcomes-list {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.market-grid--resolved .market-card__tag {
  color: var(--green);
}

.floating-cta {
  position: fixed;
  left: 50%;
  bottom: 14px;
  z-index: 40;
  width: min(860px, calc(100% - 24px));
  transform: translateX(-50%);
  border-radius: 20px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 45px rgba(13, 23, 43, 0.18);
  backdrop-filter: blur(14px);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.floating-cta p {
  color: #334155;
  line-height: 1.5;
}

.floating-cta__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.chart-card__head span,
.market-block__head a {
  color: var(--muted);
  font-size: 0.82rem;
}

.chart-bars {
  margin-top: 14px;
  height: 140px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-items: end;
}

.chart-bars span {
  height: var(--value);
  min-height: 30px;
  border-radius: 14px 14px 7px 7px;
  background: linear-gradient(180deg, #22c55e, #16a34a);
}

.chart-axis {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--muted);
  font-size: 0.74rem;
}

.market-movers,
.market-grid,
.bonus-stats,
.bonus-grid--four,
.proposal-grid,
.game-links,
.catalog-grid,
.bonus-list--long {
  margin-top: 14px;
}

.market-movers,
.market-grid,
.bonus-grid--four,
.proposal-grid,
.catalog-grid {
  grid-template-columns: repeat(4, 1fr);
}

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

.market-movers a,
.market-card {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
}

.market-movers strong {
  display: block;
  margin-top: 10px;
  color: var(--green);
}

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

.market-card__tag {
  background: rgba(15, 23, 42, 0.06);
  color: #475569;
}

.market-card__tag--green {
  background: var(--green-soft);
  color: #166534;
}

.market-card__tag--red {
  background: var(--red-soft);
  color: var(--red);
}

.market-card h4 {
  margin-top: 12px;
  line-height: 1.5;
}

.market-card__watch,
.market-card__actions button {
  min-height: 28px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: white;
  color: #334155;
  font: inherit;
  font-size: 0.72rem;
  cursor: pointer;
}

.market-card__prices {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.yes,
.no {
  min-height: 34px;
  padding: 0 10px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 800;
}

.yes {
  background: var(--green-soft);
  color: #166534;
}

.no {
  background: var(--red-soft);
  color: var(--red);
}

.market-card__actions {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.market-card__actions a,
.market-card__actions button {
  min-height: 32px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #334155;
  font-size: 0.74rem;
  font-weight: 700;
}

.compare-markets {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.compare-markets article {
  padding: 14px;
}

.compare-markets div {
  margin-top: 10px;
  display: flex;
  gap: 8px;
}

.notice-banner {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid #f0df9d;
  background: #fff8df;
  display: flex;
  align-items: center;
  gap: 12px;
}

.notice-banner span {
  color: #7a5e18;
}

.bonus-stats {
  grid-template-columns: repeat(4, 1fr);
}

.bonus-stats span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
}

.filter-rows {
  margin-top: 18px;
  display: grid;
  gap: 10px;
}

.compare-table__head,
.compare-table__row {
  display: grid;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.compare-table__head {
  border-top: 0;
  color: var(--muted);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
}

.compare-table__head--wide,
.compare-table__row--wide {
  grid-template-columns: 1.2fr 1.45fr 0.75fr 0.75fr 0.7fr 0.9fr 0.8fr 0.9fr 1fr;
}

.compare-brand strong {
  display: block;
}

.compare-brand small,
.compare-table__row span,
.compare-table__row em,
.license {
  color: var(--muted);
  font-style: normal;
  font-size: 0.86rem;
}

.badge {
  justify-content: center;
}

.badge--watch {
  background: #fff5db;
  color: #8b6117;
}

.badge--new {
  background: var(--green-soft);
  color: #166534;
}

.license {
  background: #f4f7fc;
  color: #334155;
}

.compare-table__actions,
.bonus-list-card__actions,
.bonus-actions-inline {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.compare-table__actions a,
.bonus-list-card__actions a,
.bonus-actions-inline a,
.bonus-showcase a,
.proposal-card a,
.split-card a,
.cover-card a,
.rated-card a,
.game-link-card em {
  min-height: 34px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  font-style: normal;
}

.compare-side__box {
  margin-top: 14px;
  padding: 14px;
}

.compare-side__box b {
  display: block;
}

.compare-side__box span {
  display: block;
  margin-top: 8px;
}

.compare-side .button {
  margin-top: 16px;
}

.stack-section {
  margin-top: 26px;
}

.stack-section__head {
  margin-bottom: 14px;
}

.stack-section__head p {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.6;
}

.bonus-showcase,
.proposal-card,
.cover-card,
.rated-card,
.top-bonus-card,
.catalog-card {
  display: grid;
  gap: 10px;
}

.bonus-showcase b,
.proposal-card b,
.cover-card b,
.rated-card b,
.top-bonus-card b {
  color: #d79a1e;
}

.data-points b {
  min-height: 32px;
  padding: 0 10px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  background: white;
  color: var(--text);
  font-size: 0.8rem;
}

.split-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
}

.split-card__brand {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.split-card__brand span,
.cover-card span,
.rated-card span,
.top-bonus-card small,
.catalog-card small,
.bonus-mini small {
  color: var(--muted);
}

.split-card__offer {
  display: grid;
  gap: 8px;
}

.game-links {
  grid-template-columns: repeat(4, 1fr);
}

.game-link-card {
  display: grid;
  gap: 8px;
}

.game-link-card small {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
}

.bonus-list--long {
  display: grid;
  gap: 14px;
}

.bonus-list-card {
  display: grid;
  grid-template-columns: 52px 1fr 1.2fr 0.9fr 1fr;
  gap: 16px;
  align-items: center;
}

.bonus-list-card__rank {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--surface-soft);
  border: 1px solid var(--line);
  font-weight: 800;
}

.bonus-list-card__brand {
  display: grid;
  gap: 4px;
}

.bonus-list-card__brand small {
  color: var(--muted);
}

.bonus-list-card__offer h3 {
  margin-top: 8px;
  font-size: 1.08rem;
  line-height: 1.3;
}

.bonus-list-card__offer p {
  margin-top: 6px;
  line-height: 1.6;
}

.bonus-list-card__rating b {
  display: block;
  color: #d79a1e;
}

.bonus-list-card__rating small {
  display: block;
  margin-top: 6px;
}

.app-cta__grid {
  grid-template-columns: 1fr 380px;
  align-items: center;
}

.app-preview__screen {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(180deg, var(--navy), var(--navy-2));
  isolation: isolate;
}

.app-preview__ambient {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.app-preview__glow,
.app-preview__orbit {
  position: absolute;
}

.app-preview__glow {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.42;
  background: radial-gradient(circle, rgba(231, 178, 79, 0.28), rgba(231, 178, 79, 0));
  top: -46px;
  right: -24px;
  animation: appPreviewFloat 8s ease-in-out infinite;
}

.app-preview__glow--alt {
  width: 132px;
  height: 132px;
  background: radial-gradient(circle, rgba(126, 205, 176, 0.2), rgba(126, 205, 176, 0));
  top: 120px;
  left: -30px;
  animation-delay: -2.8s;
}

.app-preview__orbit {
  width: 240px;
  height: 240px;
  right: -82px;
  bottom: -92px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 16px rgba(255, 255, 255, 0.02);
  animation: appPreviewOrbit 16s linear infinite;
}

.app-preview__row,
.app-preview__card {
  position: relative;
  z-index: 1;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.app-preview__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.app-preview__row span {
  color: rgba(255, 255, 255, 0.72);
}

.app-preview__card {
  margin-top: 10px;
}

.app-preview__card--accent {
  background: linear-gradient(135deg, rgba(231, 178, 79, 0.22), rgba(241, 198, 110, 0.12));
  border-color: rgba(231, 178, 79, 0.32);
  color: white;
  font-weight: 800;
  animation: appPreviewPulse 5.6s ease-in-out infinite;
}

.app-preview__status,
.app-preview__actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.app-preview__progress {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

.app-preview__ticker {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.app-preview__ticker-item {
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.app-preview__pill,
.app-preview__action {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 800;
}

.app-preview__pill {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
}

.app-preview__pill--accent {
  border-color: rgba(231, 178, 79, 0.32);
  background: rgba(231, 178, 79, 0.16);
  color: white;
}

.app-preview__spotlight {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.app-preview__coin {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(231, 178, 79, 0.98), rgba(241, 198, 110, 0.86));
  color: #0f172a;
  font-weight: 900;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, 0.24), 0 10px 24px rgba(231, 178, 79, 0.2);
  animation: appPreviewCoinBob 4.8s ease-in-out infinite;
}

.app-preview__spotlight-copy span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.app-preview__spotlight-copy strong {
  display: block;
  margin-top: 6px;
}

.app-preview__spotlight-copy p {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.app-preview__meter {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.app-preview__meter-head,
.app-preview__footer,
.app-preview__footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.app-preview__meter-head span,
.app-preview__footer-copy span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.app-preview__meter-track {
  width: 100%;
  height: 10px;
  margin-top: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
}

.app-preview__meter-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(231, 178, 79, 0.96), rgba(126, 205, 176, 0.96));
  box-shadow: 0 0 24px rgba(231, 178, 79, 0.28);
  transition: width 280ms ease;
}

.app-preview__micro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 124px;
  gap: 14px;
  align-items: end;
  margin-top: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.app-preview__micro-copy span,
.app-preview__micro-copy small {
  color: rgba(255, 255, 255, 0.68);
}

.app-preview__micro-copy span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.app-preview__micro-copy strong {
  display: block;
  margin-top: 6px;
}

.app-preview__micro-copy small {
  display: block;
  margin-top: 8px;
  line-height: 1.55;
}

.app-preview__micro-chart {
  height: 88px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  align-items: end;
}

.app-preview__bar {
  width: 100%;
  min-height: 18px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(231, 178, 79, 0.96), rgba(126, 205, 176, 0.72));
  box-shadow: 0 6px 20px rgba(231, 178, 79, 0.16);
  transition: height 280ms ease, background 220ms ease, box-shadow 220ms ease;
  animation: appPreviewBarPulse 4.4s ease-in-out infinite;
}

.app-preview__bar:nth-child(2) {
  animation-delay: -0.4s;
}

.app-preview__bar:nth-child(3) {
  animation-delay: -0.8s;
}

.app-preview__bar:nth-child(4) {
  animation-delay: -1.2s;
}

.app-preview__bar:nth-child(5) {
  animation-delay: -1.6s;
}

.app-preview__bar:nth-child(6) {
  animation-delay: -2s;
}

.app-preview__action {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
}

.app-preview__action.is-active {
  border-color: rgba(231, 178, 79, 0.32);
  background: rgba(231, 178, 79, 0.18);
  color: white;
}

.app-preview__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.app-preview__dot.is-active {
  transform: scale(1.35);
  background: rgba(231, 178, 79, 0.96);
  box-shadow: 0 0 0 6px rgba(231, 178, 79, 0.14);
}

.app-preview__hooks {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.app-preview__hook {
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
}

.app-preview__hook span,
.app-preview__footer-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.app-preview__hook span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.app-preview__hook strong {
  display: block;
  margin-top: 6px;
  line-height: 1.45;
}

.app-preview__board {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.app-preview__board-head,
.app-preview__board-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 10px;
  align-items: center;
}

.app-preview__board-head span,
.app-preview__board-row span {
  color: rgba(255, 255, 255, 0.68);
}

.app-preview__board-head span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.app-preview__board-list {
  margin-top: 10px;
}

.app-preview__board-row {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.app-preview__board-row strong {
  text-align: right;
  line-height: 1.45;
}

.app-preview__board-badge {
  min-width: 58px;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.app-preview__board-badge.is-positive {
  background: rgba(126, 205, 176, 0.16);
  border-color: rgba(126, 205, 176, 0.24);
  color: white;
}

.app-preview__board-badge.is-neutral {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.84);
}

.app-preview__board-badge.is-alert {
  background: rgba(231, 178, 79, 0.18);
  border-color: rgba(231, 178, 79, 0.26);
  color: white;
}

.app-preview__footer {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.app-preview__footer-copy strong {
  display: block;
  margin-top: 6px;
}

.app-preview__footer-copy p {
  margin-top: 8px;
  line-height: 1.6;
}

.app-preview__cta {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.86);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
}

.app-preview__cta--primary {
  border-color: rgba(231, 178, 79, 0.32);
  background: linear-gradient(135deg, rgba(231, 178, 79, 0.2), rgba(241, 198, 110, 0.12));
  color: white;
}

.app-preview__screen--wallet .app-preview__coin {
  background: linear-gradient(145deg, rgba(231, 178, 79, 0.98), rgba(241, 198, 110, 0.86));
}

.app-preview__screen--wallet .app-preview__dot.is-active {
  background: rgba(231, 178, 79, 0.96);
  box-shadow: 0 0 0 6px rgba(231, 178, 79, 0.14);
}

.app-preview__screen--wallet .app-preview__ticker-item {
  border-color: rgba(231, 178, 79, 0.18);
}

.app-preview__screen--markets .app-preview__coin {
  background: linear-gradient(145deg, rgba(126, 205, 176, 0.98), rgba(96, 180, 161, 0.88));
}

.app-preview__screen--markets .app-preview__dot.is-active {
  background: rgba(126, 205, 176, 0.96);
  box-shadow: 0 0 0 6px rgba(126, 205, 176, 0.14);
}

.app-preview__screen--markets .app-preview__ticker-item {
  border-color: rgba(126, 205, 176, 0.18);
  background: rgba(126, 205, 176, 0.055);
}

.app-preview__screen--rewards .app-preview__coin {
  background: linear-gradient(145deg, rgba(251, 191, 36, 0.98), rgba(245, 158, 11, 0.86));
}

.app-preview__screen--rewards .app-preview__dot.is-active {
  background: rgba(245, 158, 11, 0.96);
  box-shadow: 0 0 0 6px rgba(245, 158, 11, 0.14);
}

.app-preview__screen--rewards .app-preview__ticker-item {
  border-color: rgba(245, 158, 11, 0.18);
  background: rgba(245, 158, 11, 0.055);
}

.app-preview__screen--shop .app-preview__coin {
  background: linear-gradient(145deg, rgba(240, 171, 252, 0.98), rgba(192, 132, 252, 0.86));
}

.app-preview__screen--shop .app-preview__dot.is-active {
  background: rgba(192, 132, 252, 0.96);
  box-shadow: 0 0 0 6px rgba(192, 132, 252, 0.14);
}

.app-preview__screen--shop .app-preview__ticker-item {
  border-color: rgba(192, 132, 252, 0.18);
  background: rgba(192, 132, 252, 0.055);
}

.app-preview__screen--markets .app-preview__pill--accent,
.app-preview__screen--markets .app-preview__action.is-active,
.app-preview__screen--markets .app-preview__cta--primary {
  border-color: rgba(126, 205, 176, 0.32);
  background: rgba(126, 205, 176, 0.16);
}

.app-preview__screen--rewards .app-preview__pill--accent,
.app-preview__screen--rewards .app-preview__action.is-active,
.app-preview__screen--rewards .app-preview__cta--primary {
  border-color: rgba(245, 158, 11, 0.32);
  background: rgba(245, 158, 11, 0.16);
}

.app-preview__screen--shop .app-preview__pill--accent,
.app-preview__screen--shop .app-preview__action.is-active,
.app-preview__screen--shop .app-preview__cta--primary {
  border-color: rgba(192, 132, 252, 0.32);
  background: rgba(192, 132, 252, 0.16);
}

.app-preview__screen--wallet .app-preview__spotlight,
.app-preview__screen--markets .app-preview__spotlight,
.app-preview__screen--rewards .app-preview__spotlight,
.app-preview__screen--shop .app-preview__spotlight {
  transition: border-color 220ms ease, background 220ms ease;
}

.app-preview__screen--markets .app-preview__spotlight {
  border-color: rgba(126, 205, 176, 0.18);
  background: rgba(126, 205, 176, 0.06);
}

.app-preview__screen--markets .app-preview__hook {
  border-color: rgba(126, 205, 176, 0.14);
  background: rgba(126, 205, 176, 0.055);
}

.app-preview__screen--markets .app-preview__board {
  border-color: rgba(126, 205, 176, 0.14);
  background: rgba(126, 205, 176, 0.045);
}

.app-preview__screen--markets .app-preview__micro {
  border-color: rgba(126, 205, 176, 0.14);
  background: rgba(126, 205, 176, 0.05);
}

.app-preview__screen--rewards .app-preview__spotlight {
  border-color: rgba(245, 158, 11, 0.18);
  background: rgba(245, 158, 11, 0.06);
}

.app-preview__screen--rewards .app-preview__hook {
  border-color: rgba(245, 158, 11, 0.14);
  background: rgba(245, 158, 11, 0.055);
}

.app-preview__screen--rewards .app-preview__board {
  border-color: rgba(245, 158, 11, 0.14);
  background: rgba(245, 158, 11, 0.045);
}

.app-preview__screen--rewards .app-preview__micro {
  border-color: rgba(245, 158, 11, 0.14);
  background: rgba(245, 158, 11, 0.05);
}

.app-preview__screen--shop .app-preview__spotlight {
  border-color: rgba(192, 132, 252, 0.18);
  background: rgba(192, 132, 252, 0.06);
}

.app-preview__screen--shop .app-preview__hook {
  border-color: rgba(192, 132, 252, 0.14);
  background: rgba(192, 132, 252, 0.055);
}

.app-preview__screen--shop .app-preview__board {
  border-color: rgba(192, 132, 252, 0.14);
  background: rgba(192, 132, 252, 0.045);
}

.app-preview__screen--shop .app-preview__micro {
  border-color: rgba(192, 132, 252, 0.14);
  background: rgba(192, 132, 252, 0.05);
}

.app-preview__screen--markets .app-preview__meter-fill {
  background: linear-gradient(90deg, rgba(126, 205, 176, 0.96), rgba(96, 180, 161, 0.96));
  box-shadow: 0 0 24px rgba(126, 205, 176, 0.24);
}

.app-preview__screen--markets .app-preview__bar {
  background: linear-gradient(180deg, rgba(126, 205, 176, 0.96), rgba(96, 180, 161, 0.72));
  box-shadow: 0 6px 20px rgba(126, 205, 176, 0.16);
}

.app-preview__screen--rewards .app-preview__meter-fill {
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.96), rgba(245, 158, 11, 0.96));
  box-shadow: 0 0 24px rgba(245, 158, 11, 0.24);
}

.app-preview__screen--rewards .app-preview__bar {
  background: linear-gradient(180deg, rgba(251, 191, 36, 0.96), rgba(245, 158, 11, 0.72));
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.16);
}

.app-preview__screen--shop .app-preview__meter-fill {
  background: linear-gradient(90deg, rgba(240, 171, 252, 0.96), rgba(192, 132, 252, 0.96));
  box-shadow: 0 0 24px rgba(192, 132, 252, 0.24);
}

.app-preview__screen--shop .app-preview__bar {
  background: linear-gradient(180deg, rgba(240, 171, 252, 0.96), rgba(192, 132, 252, 0.72));
  box-shadow: 0 6px 20px rgba(192, 132, 252, 0.16);
}

@keyframes appPreviewFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-8px, 10px, 0);
  }
}

@keyframes appPreviewOrbit {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes appPreviewCoinBob {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

@keyframes appPreviewPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(231, 178, 79, 0.08);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(231, 178, 79, 0.02);
  }
}

@keyframes appPreviewBarPulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.92;
  }

  50% {
    transform: translateY(-2px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-preview__glow,
  .app-preview__orbit,
  .app-preview__coin,
  .app-preview__card--accent,
  .app-preview__bar {
    animation: none;
  }
}

.site-footer {
  width: min(1320px, calc(100% - 28px));
  margin: 32px auto 44px;
}

.site-footer__grid {
  grid-template-columns: 1.2fr 0.7fr 0.7fr;
}

.site-footer__grid strong,
.site-footer__grid span {
  display: block;
}

.site-footer__grid p,
.site-footer__grid a {
  color: var(--muted);
  line-height: 1.7;
}

.site-footer__grid a {
  display: block;
  margin-top: 8px;
}

@media (max-width: 1220px) {
  .service-strip__grid,
  .market-stats,
  .heatmap-grid,
  .bonus-stats,
  .bonus-grid--four,
  .proposal-grid,
  .game-links,
  .catalog-grid,
  .site-footer__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .editorial-front__grid,
  .market-utility-grid,
  .markets-layout,
  .compare-layout,
  .app-cta__grid {
    grid-template-columns: 1fr;
  }

  .market-grid,
  .market-movers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 960px) {
  .site-header__inner {
    grid-template-columns: 1fr;
    padding: 14px 0;
  }

  .main-menu {
    justify-self: flex-start;
  }

  .service-strip__grid,
  .market-stats,
  .market-news-grid,
  .bonus-stats,
  .bonus-grid--four,
  .proposal-grid,
  .game-links,
  .catalog-grid,
  .site-footer__grid,
  .market-grid,
  .market-movers {
    grid-template-columns: 1fr 1fr;
  }

  .bonus-list-card,
  .market-compare-selects,
  .market-compare-cards,
  .market-term-grid,
  .market-duo-panels,
  .market-lead__outcomes,
  .split-card {
    grid-template-columns: 1fr 1fr;
  }

  .market-members,
  .market-idea-card__head {
    grid-template-columns: 1fr;
  }

  .market-idea-form {
    grid-template-columns: 1fr;
  }

  .market-members {
    flex-direction: column;
    align-items: flex-start;
  }

  .app-preview__hooks {
    grid-template-columns: 1fr;
  }

  .app-preview__board-head,
  .app-preview__board-row {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .app-preview__board-row strong {
    text-align: left;
  }

  .app-preview__micro {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .app-preview__footer,
  .app-preview__footer-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .compare-table {
    overflow-x: auto;
  }

  .compare-table__head--wide,
  .compare-table__row--wide {
    min-width: 1100px;
  }
}

@media (max-width: 700px) {
  .service-strip__grid,
  .market-stats,
  .heatmap-grid,
  .market-news-grid,
  .bonus-stats,
  .bonus-grid--four,
  .proposal-grid,
  .game-links,
  .catalog-grid,
  .site-footer__grid,
  .market-grid,
  .market-movers,
  .market-compare-selects,
  .market-compare-cards,
  .bonus-list-card,
  .market-term-grid,
  .market-duo-panels,
  .market-lead__outcomes,
  .split-card {
    grid-template-columns: 1fr;
  }

  .section-heading--split,
  .market-toolbar,
  .stack-section__head,
  .market-block__head {
    flex-direction: column;
    align-items: flex-start;
  }

  .orderflow-head,
  .orderflow-list article {
    grid-template-columns: 1fr 56px 56px 34px;
    gap: 8px;
  }

  .site-header__actions {
    width: 100%;
  }

  .site-header__actions .button {
    flex: 1 1 auto;
  }

  .market-card__top,
  .floating-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .app-preview__actions,
  .app-preview__status,
  .app-preview__progress,
  .app-preview__ticker {
    gap: 8px;
  }

  .app-preview__action,
  .app-preview__cta {
    width: 100%;
  }

  .app-preview__ticker-item {
    width: 100%;
    justify-content: center;
  }

  .app-preview__spotlight,
  .app-preview__meter,
  .app-preview__micro,
  .app-preview__board {
    padding: 12px;
  }

  .floating-cta {
    bottom: 10px;
  }
}
