/* CryptoGamblingUSA — новая тема (корневой index) */

@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Instrument+Serif:ital@0;1&display=swap");

:root {
  --bg0: #070708;
  --bg1: #0f0f12;
  --bg2: #16161c;
  --stroke: rgba(255, 255, 255, 0.09);
  --stroke2: rgba(255, 255, 255, 0.14);
  --text: #f4f1ea;
  --muted: #a9a29a;
  --dim: #6f6a63;
  --gold: #e3c77a;
  --gold2: #c9a24a;
  --mint: #7ee0c0;
  --danger: #ff6b6b;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --max: 1120px;
  --font: "Instrument Sans", system-ui, sans-serif;
  --serif: "Instrument Serif", Georgia, serif;
  --ribbon-h: 64px;
  --anchor-nav-h: 38px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html:has(.anchor-nav) {
  scroll-padding-top: calc(var(--ribbon-h) + var(--anchor-nav-h) + 0.75rem);
}

/* Later siblings (main) paint above earlier ones by default; keep scrollable content under sticky sub-nav */
main,
footer.footer {
  position: relative;
  z-index: 0;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg0);
  background-image:
    radial-gradient(900px 420px at 12% -10%, rgba(227, 199, 122, 0.14), transparent 60%),
    radial-gradient(700px 380px at 92% 0%, rgba(126, 224, 192, 0.08), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 420px);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0 0 1rem;
  color: var(--muted);
}

ul,
ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.55rem;
  line-height: 1.15;
}

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* Top ribbon */
.ribbon {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--stroke);
  background: rgba(15, 15, 18, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ribbon__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  min-height: var(--ribbon-h);
}

/* In-page anchor nav: lives inside .ribbon so it sticks with the header (fixes mobile overlap) */
.anchor-nav {
  position: sticky;
  top: var(--ribbon-h);
  z-index: 950;
  border-bottom: 1px solid var(--stroke);
  background: rgba(10, 10, 12, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ribbon > .anchor-nav {
  position: static;
  top: auto;
  z-index: auto;
  border-top: 1px solid var(--stroke);
}

.ribbon:has(> .anchor-nav) {
  border-bottom: none;
}

.anchor-nav__inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.3rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.35rem 0;
  -webkit-overflow-scrolling: touch;
  /* Hide scrollbar but keep horizontal scroll (many links; avoids ugly track on Windows) */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.anchor-nav__inner::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.anchor-nav a {
  flex: 0 0 auto;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  color: var(--muted);
  white-space: nowrap;
  line-height: 1.2;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.anchor-nav a:hover {
  color: var(--text);
  border-color: var(--stroke2);
  background: rgba(255, 255, 255, 0.04);
}

.anchor-nav a.is-active {
  color: var(--text);
  border-color: rgba(227, 199, 122, 0.45);
  background: rgba(227, 199, 122, 0.1);
}

@media (max-width: 720px) {
  .anchor-nav a {
    font-size: 0.7rem;
    padding: 0.28rem 0.55rem;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111;
  background: linear-gradient(135deg, var(--gold), #fff2c8);
  box-shadow: 0 10px 30px rgba(227, 199, 122, 0.18);
}

.brand__name {
  font-weight: 700;
  letter-spacing: -0.02em;
}

.burger {
  display: none;
  border: 1px solid var(--stroke2);
  background: var(--bg2);
  color: var(--text);
  border-radius: 12px;
  padding: 0.45rem 0.65rem;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
}

.nav-wrap {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav > li > a,
.nav .drop > button {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
}

.nav > li > a:hover,
.nav .drop > button:hover {
  color: var(--text);
  border-color: var(--stroke);
  background: rgba(255, 255, 255, 0.03);
}

.drop {
  position: relative;
}

/* Без зазора между кнопкой и панелью — иначе при движении курсора вниз теряется :hover */
.drop__panel {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  padding: 0.55rem;
  border-radius: 14px;
  border: 1px solid var(--stroke2);
  background: rgba(22, 22, 28, 0.96);
  box-shadow: var(--shadow);
  z-index: 50;
}

.drop:hover .drop__panel,
.drop:focus-within .drop__panel {
  display: flex;
  flex-direction: column;
}

.drop__panel a {
  display: block;
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}

.drop__panel a:hover {
  color: var(--text);
  background: rgba(227, 199, 122, 0.08);
}

/* Keep Reviews dropdown order consistent on every page */
.drop__panel a[href*="crypto-casinos/mbit/"] { order: -3; }

/* Hero */
.hero {
  padding: 3.25rem 0 2.5rem;
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 0.85rem;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__lead {
  max-width: 62ch;
  font-size: 1.08rem;
  color: var(--muted);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
}

.btn--primary {
  color: #141416;
  background: linear-gradient(135deg, var(--gold), #fff1c8);
  box-shadow: 0 14px 40px rgba(227, 199, 122, 0.18);
}

.btn--primary:hover {
  filter: brightness(1.03);
}

.btn--ghost {
  color: var(--text);
  border-color: var(--stroke2);
  background: rgba(255, 255, 255, 0.03);
}

.btn--ghost:hover {
  border-color: rgba(227, 199, 122, 0.45);
}

/* Trust line (hero → filters) */
.trust-strip {
  padding: 0.65rem 0 0.55rem;
  border-bottom: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.02);
}

.trust-strip__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.trust-strip__text {
  margin: 0;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.trust-strip__dot {
  margin: 0 0.35rem;
  color: var(--gold2);
  opacity: 0.85;
}

.social-proof {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0.15rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--dim);
}

.social-proof__item {
  color: var(--muted);
}

.social-proof__num {
  font-weight: 900;
  color: var(--gold2);
  font-variant-numeric: tabular-nums;
}

.social-proof__dot {
  margin: 0 0.35rem;
  opacity: 0.7;
}

@media (max-width: 520px) {
  .trust-strip__text {
    font-size: 0.76rem;
    line-height: 1.45;
    padding: 0 0.25rem;
  }

  .trust-strip__dot {
    margin: 0 0.2rem;
  }

  .social-proof {
    font-size: 0.72rem;
    line-height: 1.45;
    padding: 0 0.35rem;
  }
}

/* Filters */
.filters {
  padding: 1.25rem 0 0.25rem;
}

.filters__label {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 800;
  margin-bottom: 0.85rem;
  text-align: center;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.chip {
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.02);
  color: var(--muted);
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
}

.chip.is-on {
  border-color: rgba(227, 199, 122, 0.55);
  color: var(--text);
  background: rgba(227, 199, 122, 0.08);
}

/* Casino grid */
.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  padding: 1.75rem 0 2.75rem;
}

.card {
  grid-column: span 4;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  overflow: hidden;
  min-width: 0;
}

.card--editor {
  border-color: rgba(227, 199, 122, 0.4);
  box-shadow: 0 0 0 1px rgba(227, 199, 122, 0.12), 0 12px 40px rgba(0, 0, 0, 0.25);
}

.card--editor .card__top {
  background: linear-gradient(165deg, rgba(227, 199, 122, 0.1), transparent 55%);
}

.card--bonuses {
  border-color: rgba(126, 224, 192, 0.35);
  box-shadow: 0 0 0 1px rgba(126, 224, 192, 0.1), 0 12px 40px rgba(0, 0, 0, 0.22);
}

.card--bonuses .card__top {
  background: linear-gradient(165deg, rgba(126, 224, 192, 0.09), transparent 55%);
}

.card--speed {
  border-color: rgba(125, 211, 252, 0.35);
  box-shadow: 0 0 0 1px rgba(125, 211, 252, 0.1), 0 12px 40px rgba(0, 0, 0, 0.22);
}

.card--speed .card__top {
  background: linear-gradient(165deg, rgba(56, 189, 248, 0.1), transparent 55%);
}

.card__top {
  padding: 1.1rem 1.1rem 0.9rem;
  border-bottom: 1px solid var(--stroke);
  position: relative;
}

.pill {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  max-width: min(72%, 11.5rem);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 1.25;
  text-align: right;
  color: #141416;
  background: var(--gold);
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
}

.pill--editor {
  background: linear-gradient(135deg, #f0d78c, var(--gold));
  color: #1a1508;
}

.pill--bonuses {
  background: linear-gradient(135deg, #9cf0d4, var(--mint));
  color: #0a1614;
  letter-spacing: 0.08em;
}

.pill--speed {
  background: linear-gradient(135deg, #bae6fd, #38bdf8);
  color: #0c141a;
  letter-spacing: 0.07em;
}

.logo-slot {
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 0.65rem;
}

.logo-slot img {
  max-height: 46px;
  width: auto;
}

.card__title {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.card__rating {
  margin-top: 0.35rem;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.95rem;
}

.card__body {
  padding: 1rem 1.1rem 1.05rem;
}

.k {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 900;
  margin: 0.85rem 0 0.45rem;
}

.k:first-child {
  margin-top: 0;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.22rem 0.45rem;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

a.badge {
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

a.badge:hover {
  color: var(--text);
  border-color: rgba(227, 199, 122, 0.45);
  background: rgba(227, 199, 122, 0.08);
}

a.badge:focus-visible {
  outline: 2px solid rgba(227, 199, 122, 0.65);
  outline-offset: 2px;
}

.bonus {
  color: var(--mint);
  font-weight: 900;
  font-size: 0.98rem;
}

.mini-list {
  margin: 0;
  padding-left: 1rem;
  font-size: 0.92rem;
}

.card__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  padding: 0.95rem 1.1rem 1.1rem;
  border-top: 1px solid var(--stroke);
}

.linkbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.65rem;
  border-radius: 12px;
  font-weight: 900;
  font-size: 0.82rem;
  border: 1px solid var(--stroke);
}

.linkbtn--a {
  background: linear-gradient(135deg, rgba(227, 199, 122, 0.95), #fff1c8);
  color: #141416;
  border-color: rgba(227, 199, 122, 0.35);
}

.linkbtn--b {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}

.linkbtn--b:hover {
  color: var(--text);
  border-color: var(--stroke2);
}

/* Section */
.section {
  padding: 3rem 0;
  border-top: 1px solid var(--stroke);
}

.section__head {
  text-align: center;
  margin-bottom: 2rem;
}

.section__title {
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.section__sub {
  max-width: 70ch;
  margin: 0 auto;
  color: var(--muted);
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
}

.tile {
  grid-column: span 6;
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.02);
}

.tile__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--stroke2);
  background: rgba(227, 199, 122, 0.06);
  margin-bottom: 0.85rem;
  font-size: 1.25rem;
}

.tile h3 {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* Methodology */
.criteria {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.85rem;
}

.crit {
  grid-column: span 6;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  padding: 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.02);
}

.crit h3 {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 0.55rem;
}

.crit p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.7;
}

.note {
  margin-top: 1.25rem;
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(227, 199, 122, 0.25);
  background: rgba(227, 199, 122, 0.06);
}

.note p {
  margin: 0 0 0.65rem;
  color: var(--muted);
}

.note p:last-child {
  margin-bottom: 0;
}

/* Compare section — primary decision table */
.compare-section {
  padding: 2.25rem 0 2rem;
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid rgba(227, 199, 122, 0.12);
  background:
    radial-gradient(720px 260px at 50% -30%, rgba(227, 199, 122, 0.14), transparent 58%),
    linear-gradient(180deg, rgba(18, 18, 22, 0.85), var(--bg0));
}

.compare-section__head {
  text-align: center;
  margin: 0 auto 1.75rem;
  max-width: 38rem;
}

.compare-section__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 900;
  color: var(--gold2);
}

.compare-section__title {
  margin: 0 0 0.65rem;
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text);
}

.compare-section__lead {
  margin: 0;
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.55;
}

.compare-section__table {
  border: 2px solid rgba(227, 199, 122, 0.38);
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.45);
  background: rgba(8, 8, 10, 0.55);
  /* Fit within .wrap — avoid horizontal scroll on desktop when min-width was > content area */
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.compare-section__table .data thead th {
  background: rgba(227, 199, 122, 0.1);
  color: var(--text);
  border-bottom-color: rgba(227, 199, 122, 0.28);
}

.compare-section__note {
  margin-top: 1.15rem;
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--muted);
}

.compare-section__note strong {
  color: var(--text);
}

table.data.data--compare {
  min-width: 0;
  width: 100%;
  max-width: 100%;
  font-size: 0.8rem;
  table-layout: fixed;
}

.compare-section__table .data thead th,
.compare-section__table .data tbody td {
  padding: 0.6rem 0.4rem;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  vertical-align: middle;
}

.compare-section__table .data thead th {
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

/* Column widths for table-layout: fixed (first row drives layout) */
.compare-section__table .data thead th:nth-child(1) {
  width: 12%;
}
.compare-section__table .data thead th:nth-child(2) {
  width: 8%;
}
.compare-section__table .data thead th:nth-child(3),
.compare-section__table .data thead th:nth-child(4) {
  width: 9%;
}
.compare-section__table .data thead th:nth-child(5) {
  width: 17%;
}
.compare-section__table .data thead th:nth-child(6) {
  width: 17%;
}
.compare-section__table .data thead th:nth-child(7) {
  width: 7%;
}
.compare-section__table .data thead th:nth-child(8) {
  width: 11%;
}
.compare-section__table .data thead th:nth-child(9) {
  width: 10%;
}

.compare-section__table .casino-inline {
  min-width: 0;
  gap: 0.45rem;
}

.compare-section__table .casino-inline span {
  word-break: break-word;
}

.coins-cell {
  font-size: 0.75rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  line-height: 1.35;
  max-width: none;
  min-width: 0;
}

.compare-section__table .coins-cell {
  font-size: 0.72rem;
}

/* Mobile: wide table scrolls horizontally — avoids 1-letter columns & overlap */
@media (max-width: 900px) {
  .compare-section__table {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    touch-action: pan-x;
    scrollbar-gutter: stable;
  }

  table.data.data--compare {
    table-layout: auto;
    min-width: 780px;
    width: max-content;
    max-width: none;
    font-size: 0.78rem;
  }

  /* Drop fixed % widths so columns size to content inside scroll area */
  .compare-section__table .data thead th:nth-child(n) {
    width: auto;
  }

  .compare-section__table .data thead th,
  .compare-section__table .data tbody td {
    hyphens: none;
    word-break: normal;
    overflow-wrap: normal;
    padding: 0.55rem 0.5rem;
  }

  /* Short cells: keep on one line inside the scrollable table */
  .compare-section__table .data thead th:nth-child(1),
  .compare-section__table .data thead th:nth-child(2),
  .compare-section__table .data thead th:nth-child(3),
  .compare-section__table .data thead th:nth-child(4),
  .compare-section__table .data thead th:nth-child(7),
  .compare-section__table .data thead th:nth-child(8),
  .compare-section__table .data thead th:nth-child(9),
  .compare-section__table .data tbody td:nth-child(2),
  .compare-section__table .data tbody td:nth-child(3),
  .compare-section__table .data tbody td:nth-child(4),
  .compare-section__table .data tbody td:nth-child(7),
  .compare-section__table .data tbody td:nth-child(8),
  .compare-section__table .data tbody td:nth-child(9) {
    white-space: nowrap;
  }

  .compare-section__table .data tbody td:nth-child(1) {
    min-width: 8.5rem;
  }

  .compare-section__table .casino-inline {
    flex-wrap: nowrap;
    align-items: center;
  }

  .compare-section__table .casino-inline span {
    white-space: nowrap;
    word-break: normal;
  }

  /* Coins + bonus: wrap naturally, sensible min width */
  .compare-section__table .data tbody td:nth-child(5),
  .compare-section__table .data tbody td:nth-child(6),
  .compare-section__table .data thead th:nth-child(5),
  .compare-section__table .data thead th:nth-child(6) {
    white-space: normal;
    min-width: 9rem;
    max-width: 14rem;
    vertical-align: top;
    line-height: 1.4;
  }

  .compare-section__table .coins-cell {
    word-break: break-word;
  }

  .compare-section__table .linkbtn--sm {
    display: inline-flex;
  }
}

.kyc-tag {
  display: inline-block;
  padding: 0.22rem 0.5rem;
  border-radius: 8px;
  font-weight: 900;
  font-size: 0.74rem;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.kyc-tag--no {
  background: rgba(126, 224, 192, 0.14);
  color: #b8f5e4;
  border: 1px solid rgba(126, 224, 192, 0.38);
}

.kyc-tag--soft {
  background: rgba(227, 199, 122, 0.12);
  color: var(--gold);
  border: 1px solid rgba(227, 199, 122, 0.3);
}

.rating-num {
  color: var(--muted);
  font-weight: 800;
  font-size: 0.84rem;
}

.linkbtn--sm {
  padding: 0.42rem 0.6rem;
  font-size: 0.76rem;
  white-space: nowrap;
}

.article-subtitle {
  margin-top: 1.35rem;
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
}

.callout-meta {
  margin: 0.75rem 0 0;
  color: var(--dim);
  font-size: 0.92rem;
}

.section--after-grid {
  padding-top: 2.25rem;
  padding-bottom: 2rem;
}

/* Top 3 quick picks */
.top-picks {
  border-top: 1px solid var(--stroke);
}

.top-picks .section__head {
  margin-bottom: 1.75rem;
}

.top-picks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .top-picks__grid {
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin-inline: auto;
  }
}

.top-pick {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.15rem 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.top-pick:hover {
  border-color: rgba(227, 199, 122, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.top-pick--overall {
  border-color: rgba(227, 199, 122, 0.35);
  background: linear-gradient(165deg, rgba(227, 199, 122, 0.07), rgba(255, 255, 255, 0.02));
}

.top-pick--bonus {
  border-color: rgba(126, 224, 192, 0.3);
  background: linear-gradient(165deg, rgba(126, 224, 192, 0.06), rgba(255, 255, 255, 0.02));
}

.top-pick--speed {
  border-color: rgba(125, 211, 252, 0.3);
  background: linear-gradient(165deg, rgba(56, 189, 248, 0.07), rgba(255, 255, 255, 0.02));
}

.top-pick__label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold2);
  margin-bottom: 0.75rem;
}

.top-pick--bonus .top-pick__label {
  color: var(--mint);
}

.top-pick--speed .top-pick__label {
  color: #7dd3fc;
}

.top-pick__logo {
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 0.65rem;
}

.top-pick__logo img {
  max-height: 40px;
  width: auto;
}

.top-pick__name {
  margin: 0 0 0.45rem;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text);
}

.top-pick__bonus {
  margin: 0 0 0.35rem;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--mint);
  line-height: 1.35;
}

.top-pick__meta {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  color: var(--dim);
}

.top-pick__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  width: 100%;
  margin-top: auto;
}

/* Table */
.table-wrap {
  overflow: auto;
  border-radius: var(--radius);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.02);
}

table.data {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.data thead th {
  text-align: left;
  padding: 0.95rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  border-bottom: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.02);
}

.data tbody td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid var(--stroke);
  color: var(--muted);
  vertical-align: middle;
}

.data tbody tr:hover td {
  background: rgba(227, 199, 122, 0.04);
}

.casino-inline {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 900;
  color: var(--text);
}

.casino-inline img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.06em;
  font-weight: 900;
}

.table-footnote {
  margin-top: 0.9rem;
  color: var(--dim);
  font-size: 0.9rem;
}

.table-footnote p {
  margin: 0;
}

/* SEO block */
.article {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
}

.article h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.factor-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.85rem;
  margin: 1.25rem 0;
}

.factor {
  grid-column: span 6;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  padding: 1rem;
  background: rgba(0, 0, 0, 0.15);
}

.factor h4 {
  margin: 0 0 0.45rem;
  font-size: 0.98rem;
}

.factor p {
  margin: 0;
  font-size: 0.92rem;
}

.callout {
  margin-top: 1.25rem;
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(126, 224, 192, 0.25);
  background: rgba(126, 224, 192, 0.06);
}

.callout h4 {
  margin: 0 0 0.45rem;
}

/* Deep cards */
.deep {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.deep-card {
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}

.deep-head {
  display: grid;
  grid-template-columns: 1.1fr 2fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.15rem 1.15rem;
  border-bottom: 1px solid var(--stroke);
}

.deep-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.deep-meta img {
  width: 72px;
  height: 44px;
  object-fit: contain;
}

.deep-title h3 {
  font-size: 1.05rem;
  font-weight: 950;
  letter-spacing: -0.02em;
  margin-bottom: 0.45rem;
}

.deep-bonus {
  display: inline-flex;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(126, 224, 192, 0.25);
  color: var(--mint);
  font-weight: 950;
  font-size: 0.92rem;
  background: rgba(126, 224, 192, 0.06);
}

.deep-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 170px;
}

.deep-shot img {
  width: 100%;
  height: auto;
  display: block;
  border-top: 1px solid var(--stroke);
}

.deep-body {
  padding: 1.15rem 1.15rem 1.25rem;
}

.cols {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.col {
  grid-column: span 4;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  padding: 0.95rem;
  background: rgba(0, 0, 0, 0.12);
}

.col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold2);
  font-weight: 950;
  margin-bottom: 0.55rem;
}

.col p,
.col ul {
  margin: 0;
  font-size: 0.92rem;
}

.prose {
  border-top: 1px solid var(--stroke);
  padding-top: 1rem;
  margin-top: 1rem;
}

.prose:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.prose h4 {
  margin: 0 0 0.55rem;
  color: var(--text);
  font-weight: 950;
}

.prose p {
  margin: 0;
  line-height: 1.75;
}

/* Article page block */
.page {
  padding: 2.5rem 0;
}

.page .wrap {
  max-width: 820px;
}

.page h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  margin: 2rem 0 0.85rem;
  color: var(--text);
}

.page h2:first-child {
  margin-top: 0;
}

.page h3 {
  margin: 1.5rem 0 0.65rem;
  font-size: 1.15rem;
}

.page a {
  color: var(--gold2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* FAQ */
.faq {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.faq details {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.85rem 1rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 950;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--gold2);
  font-weight: 900;
}

.faq details[open] summary::after {
  content: "–";
}

.faq details p {
  margin: 0.85rem 0 0;
}

/* Footer */
.footer {
  border-top: 1px solid var(--stroke);
  padding: 2.75rem 0 1.5rem;
  background: rgba(0, 0, 0, 0.25);
}

.fgrid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.25rem;
}

.fcol {
  grid-column: span 3;
}

.fcol h3 {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 950;
  margin-bottom: 0.85rem;
}

.flinks {
  list-style: none;
  margin: 0;
  padding: 0;
}

.flinks li {
  margin-bottom: 0.45rem;
}

.flinks a {
  color: var(--muted);
  font-weight: 650;
}

.flinks a:hover {
  color: var(--text);
}

.foot {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--stroke);
  text-align: center;
  color: var(--dim);
  font-size: 0.88rem;
}

.foot p {
  margin: 0;
  color: var(--dim);
}

.foot__links {
  margin-top: 0.75rem;
  line-height: 1.5;
}

.foot__links a {
  color: var(--muted);
  font-weight: 650;
  text-decoration: none;
}

.foot__links a:hover {
  color: var(--text);
  text-decoration: underline;
}

/* Static / legal content pages */
.page-static main {
  padding: 2rem 0 3rem;
}

.page-static .legal-block {
  max-width: 42rem;
  margin: 0 auto;
}

.page-static .legal-block h1 {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  margin-bottom: 0.75rem;
}

.page-static .legal-block .lead {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 1.75rem;
}

.page-static .legal-block h2 {
  font-size: 1.15rem;
  margin: 2rem 0 0.65rem;
  color: var(--text);
}

.page-static .legal-block p,
.page-static .legal-block li {
  color: var(--muted);
  line-height: 1.65;
}

.page-static .legal-block ul {
  margin: 0.5rem 0 1rem 1.25rem;
  padding: 0;
}

.page-static .legal-block li {
  margin-bottom: 0.4rem;
}

.page-static .legal-block .note {
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--stroke);
  background: rgba(0, 0, 0, 0.2);
  font-size: 0.92rem;
}

.page-static .legal-block .note p:last-child {
  margin-bottom: 0;
}

.page-static .legal-block .legal-block__more {
  margin-top: 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Visible inline links on static pages (theme resets global <a>) */
.page-static .legal-block a {
  color: var(--gold);
  font-weight: 650;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.2em;
  text-decoration-color: rgba(227, 199, 122, 0.75);
}

.page-static .legal-block a:hover {
  color: #fff2c8;
  text-decoration-color: var(--gold);
}

.page-static .foot__links a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-color: rgba(169, 162, 154, 0.55);
}

.page-static .foot__links a:hover {
  color: var(--text);
  text-decoration-color: var(--text);
}

.page-static .footer .flinks a {
  text-decoration: underline;
  text-underline-offset: 0.15em;
  text-decoration-color: rgba(169, 162, 154, 0.45);
}

.page-static .footer .flinks a:hover {
  text-decoration-color: var(--text);
}

.page-static .ribbon .nav > li > a,
.page-static .ribbon .drop__panel a {
  text-decoration: underline;
  text-underline-offset: 0.18em;
  text-decoration-color: rgba(169, 162, 154, 0.4);
}

.page-static .ribbon .nav > li > a:hover,
.page-static .ribbon .drop__panel a:hover {
  text-decoration-color: var(--text);
}

/* Responsive */
@media (max-width: 1100px) {
  .card {
    grid-column: span 6;
  }

  .tile {
    grid-column: span 12;
  }

  .crit {
    grid-column: span 12;
  }

  .factor {
    grid-column: span 12;
  }

  .col {
    grid-column: span 12;
  }

  .fcol {
    grid-column: span 6;
  }

  .deep-head {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .deep-meta {
    justify-content: center;
  }

  .deep-actions {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .burger {
    display: inline-flex;
  }

  .nav-wrap {
    width: 100%;
    flex-basis: 100%;
    order: 3;
    justify-content: stretch;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem 0 0.25rem;
  }

  .nav.is-open {
    display: flex;
  }

  .ribbon__inner {
    flex-wrap: wrap;
  }

  .nav-wrap {
    width: 100%;
  }

  .drop__panel {
    position: static;
    display: none;
    box-shadow: none;
    border: 1px solid var(--stroke);
    margin-top: 0.35rem;
  }

  .drop:hover .drop__panel,
  .drop:focus-within .drop__panel {
    display: none;
  }

  .drop.is-open .drop__panel {
    display: flex;
    flex-direction: column;
  }

  .card {
    grid-column: span 12;
  }

  .fcol {
    grid-column: span 12;
  }
}

/* 404 */
.error-page {
  min-height: 52vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.25rem 3.5rem;
}

.error-page__code {
  font-family: var(--serif);
  font-size: clamp(3.75rem, 13vw, 7rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--gold), #fff6df);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.4rem;
}

.error-page__title {
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.6rem;
}

.error-page__lead {
  max-width: 32rem;
  margin: 0 auto 1.65rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.error-page__links {
  margin-top: 2.25rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--stroke);
  max-width: 38rem;
  width: 100%;
}

.error-page__links h2 {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--dim);
  margin: 0 0 0.85rem;
  font-weight: 700;
}

.error-page__quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.1rem;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.error-page__quick a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}

.error-page__quick a:hover {
  color: var(--gold);
}
