:root {
  --bg: #19212a;
  --bg-deep: #111923;
  --bar: #242f38;
  --panel: #232f3a;
  --panel-2: #293742;
  --panel-3: #1d2833;
  --line: #354651;
  --line-soft: rgba(116, 164, 210, 0.26);
  --text: #ffffff;
  --muted: #b9c7d3;
  --blue: #2f99ff;
  --blue-2: #1376da;
  --blue-soft: #93cbff;
  --yellow: #ffc66d;
  --red: #ff7474;
  --shadow: rgba(4, 9, 16, 0.35);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  height: 100%;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  background:
    radial-gradient(circle at 82% 0, rgba(47, 153, 255, 0.14), transparent 390px),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.45;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: 34px;
  line-height: 1.18;
}

h2 {
  font-size: 25px;
  line-height: 1.18;
}

h3 {
  font-size: 16px;
  line-height: 1.22;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 62px;
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(0, 1fr) 236px;
  align-items: center;
  gap: 16px;
  padding: 0 max(13px, calc((100vw - var(--max)) / 2 + 13px));
  border-bottom: 1px solid #31414c;
  background: #202b34;
  box-shadow: none;
  backdrop-filter: none;
}

.brand,
.wordmark,
.topnav,
.header-search,
.header-search-submit,
.filter-row,
.score-line,
.game-row,
.method-row {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-height: 42px;
  color: #f5fbff;
  font-size: 18px;
  font-weight: 900;
}

.wordmark {
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  min-width: 132px;
  height: 62px;
  color: #f8fbff;
}

.wordmark-logo {
  display: block;
  width: auto;
  height: 38px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(147, 203, 255, 0.72);
  border-radius: 8px;
  background: linear-gradient(180deg, #2895ff, #0d5eb7);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-size: 12px;
}

.topnav {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  grid-row: 1;
  justify-self: center;
  justify-content: center;
  gap: 54px;
  width: max-content;
  min-width: 0;
  height: 62px;
  overflow: visible;
  scrollbar-width: none;
}

.topnav::-webkit-scrollbar {
  display: none;
}

.topnav a,
.nav-trigger {
  position: relative;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 0;
  background: transparent;
  color: #8097a4;
  padding: 2px 0 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
}

.topnav a:focus,
.nav-trigger:focus,
.nav-menu-section a:focus {
  outline: 0;
}

.topnav a:focus-visible,
.nav-trigger:focus-visible,
.nav-menu-section a:focus-visible {
  border-radius: 5px;
  outline: 1px solid rgba(105, 191, 255, 0.58);
  outline-offset: 3px;
}

.nav-trigger::after {
  content: "";
  width: 0;
  height: 0;
  margin-top: 2px;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-top: 4px solid currentColor;
  opacity: 0.82;
}

.topnav a:hover,
.nav-trigger:hover,
.nav-item.active .nav-trigger,
.nav-item.is-open .nav-trigger {
  color: #b8cbd5;
}

.nav-item {
  position: relative;
  height: 62px;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 70;
  width: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 0 0 6px 6px;
  background: #1b2530;
  box-shadow: 0 18px 38px rgba(4, 9, 16, 0.42);
  padding: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
  visibility: hidden;
}

.nav-dropdown.compact {
  width: 270px;
  grid-template-columns: 1fr;
}

.nav-dropdown.crypto-menu {
  width: 790px;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.8fr) minmax(0, 0.95fr);
}

.nav-item.is-open .nav-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-menu-section {
  overflow: hidden;
  border: 1px solid rgba(116, 164, 210, 0.16);
  border-radius: 5px;
  background: #202c35;
}

.nav-menu-title {
  min-height: 34px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(116, 164, 210, 0.14);
  background: #2b3943;
  color: #f5fbff;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
}

.nav-menu-title i {
  width: 13px;
  color: #93cbff;
  font-size: 11px;
  text-align: center;
}

.nav-menu-section a {
  min-height: 31px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(116, 164, 210, 0.08);
  color: #91a6b4;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
}

.nav-menu-section a:last-child {
  border-bottom: 0;
}

.nav-menu-section a:hover,
.nav-menu-section a:focus {
  background: rgba(105, 191, 255, 0.08);
  color: #e8f6ff;
}

.topnav > a.active {
  color: #b8cbd5;
}

.new-site-dot {
  width: 18px;
  height: 18px;
  display: inline-grid;
  flex: 0 0 18px;
  place-items: center;
  margin-right: 7px;
  border-radius: 50%;
  background: #172634;
  color: #8ed0ff;
  font-size: 9px;
  font-weight: 900;
}

.header-search {
  position: relative;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  justify-content: center;
  width: 236px;
  min-height: 62px;
  z-index: 90;
}

.header-search.is-open,
.header-search:focus-within {
  width: 236px;
}

.header-search-field {
  position: absolute;
  top: 50%;
  right: 0;
  width: 44px;
  height: 34px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 5px;
  background: transparent;
  pointer-events: none;
  transform: translateY(-50%);
  transition: width 170ms ease, border-color 170ms ease, background-color 170ms ease;
}

.header-search.is-open .header-search-field,
.header-search:focus-within .header-search-field {
  width: 236px;
  border-color: #31414c;
  background: #202b34;
  pointer-events: auto;
}

.header-search-input,
.header-search-ghost {
  position: absolute;
  inset: 0;
  border: 0;
  height: 100%;
  min-height: 0;
  padding: 0 40px 0 12px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  line-height: 32px;
  letter-spacing: 0;
  white-space: nowrap;
}

.header-search-input {
  width: 100%;
  display: block;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  color: #edf8ff;
  opacity: 0;
  outline: 0;
  transition: opacity 120ms ease;
}

.header-search.is-open .header-search-input,
.header-search:focus-within .header-search-input {
  opacity: 1;
}

.header-search-input::placeholder {
  color: #8da2ad;
}

.header-search-input::-webkit-search-cancel-button {
  display: none;
}

.header-search-ghost {
  display: flex;
  align-items: center;
  color: rgba(139, 167, 181, 0.42);
  pointer-events: none;
}

.header-search-submit {
  position: absolute;
  top: 0;
  right: 0;
  justify-content: center;
  width: 44px;
  min-height: 62px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #8aa5ad;
  padding: 0;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.header-search-submit span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.header-search-submit:hover,
.header-search.is-open .header-search-submit {
  background: transparent;
  color: #69bfff;
}

.icon-button {
  width: 40px;
  height: 40px;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--panel-3);
  cursor: pointer;
}

.icon-button span {
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 10px;
  background: var(--text);
}

main {
  padding-top: 24px;
}

#top {
  scroll-margin-top: 76px;
}

.mega-strip,
.hero-section,
.category-hub,
.filter-row,
.site-list-section,
.content-shell,
.faq-section,
.footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.mega-strip {
  display: grid;
  grid-template-columns: minmax(350px, 2fr) repeat(2, minmax(170px, 1fr));
  gap: 12px;
}

.mega-card {
  overflow: hidden;
  min-height: 126px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    radial-gradient(circle at 15% 0, rgba(47, 153, 255, 0.13), transparent 170px),
    #1b2530;
}

.mega-title {
  display: flex;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid var(--line);
  background: #2f3e47;
  padding: 11px 14px;
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
}

.mega-title i {
  width: 14px;
  color: #93cbff;
  font-size: 12px;
  text-align: center;
}

.mega-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px 12px;
  padding: 13px 14px;
}

.mega-links.compact {
  grid-template-columns: 1fr;
}

.mega-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.mega-links a:hover {
  color: var(--blue-soft);
}

.category-hub {
  padding: 8px 0 26px;
}

.category-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.category-panel {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  overflow: hidden;
  min-height: 238px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(39, 57, 70, 0.76), rgba(25, 36, 47, 0.94)),
    #1b2530;
}

.category-panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(116, 164, 210, 0.18);
  background: #2c3a44;
  padding: 13px 14px;
}

.category-icon {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 34px;
  place-items: center;
  border: 1px solid rgba(105, 191, 255, 0.32);
  border-radius: 5px;
  background: #172634;
  color: #69bfff;
}

.category-kicker {
  display: block;
  color: #8fa5b6;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.category-panel h3 {
  margin-top: 5px;
  font-size: 17px;
}

.category-panel p {
  margin: 0;
  padding: 14px 14px 8px;
  color: var(--muted);
  font-size: 13px;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 0 14px 14px;
}

.category-tags span {
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(116, 164, 210, 0.2);
  border-radius: 4px;
  background: rgba(19, 31, 42, 0.72);
  color: #9fb3c0;
  padding: 0 8px;
  font-size: 11px;
  font-weight: 900;
}

.category-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  border-top: 1px solid rgba(116, 164, 210, 0.16);
  background: rgba(18, 30, 41, 0.84);
  color: #8ed0ff;
  padding: 0 14px;
  font-size: 12px;
  font-weight: 900;
}

.category-cta::after {
  color: #5eb8ff;
  content: ">";
}

.category-cta:hover {
  color: #ffffff;
  background: rgba(27, 47, 64, 0.94);
}

.hero-section {
  padding: 38px 0 18px;
}

.hero-art {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background-color: #17222b;
  background-position: center right;
  background-size: cover;
  isolation: isolate;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(16, 25, 35, 0.98) 0%, rgba(16, 25, 35, 0.9) 44%, rgba(16, 25, 35, 0.34) 100%),
    linear-gradient(180deg, rgba(13, 21, 30, 0.06), rgba(13, 21, 30, 0.34));
}

.category-hero.hero-art {
  min-height: 250px;
  align-content: center;
  padding: 34px;
}

.hero-art-cs2 {
  background-image: url("assets/hero/hero-cs2-gambling.png");
}

.hero-art-marketplaces {
  background-image: url("assets/hero/hero-skin-marketplaces.png");
}

.hero-art-trading {
  background-image: url("assets/hero/hero-trading-bots.png");
}

.hero-art-dota {
  background-image: url("assets/hero/hero-dota-gambling.png");
}

.hero-art-crypto {
  background-image: url("assets/hero/hero-crypto-gambling.png");
}

.crumbs {
  margin: 0 0 10px;
  color: var(--blue-soft);
  font-size: 13px;
  font-weight: 900;
}

.hero-copy p:last-child,
.section-head p,
.guide-content p,
.feature-list p,
.info-grid p,
.footer p {
  color: var(--muted);
}

.hero-copy p:last-child {
  max-width: 760px;
  margin: 12px 0 0;
  font-size: 16px;
}

input,
select {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: #121b24;
  color: var(--text);
  padding: 9px 11px;
}

input::placeholder {
  color: #7e94a8;
}

.filter-row {
  position: relative;
  overflow-x: auto;
  justify-content: safe center;
  gap: 0;
  width: fit-content;
  max-width: min(var(--max), calc(100% - 32px));
  margin: 18px auto 0;
  padding: 6px;
  border: 1px solid rgba(116, 164, 210, 0.14);
  border-radius: 14px;
  background: #131c24;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.02),
    0 8px 22px rgba(4, 9, 16, 0.28);
  isolation: isolate;
  scrollbar-width: none;
  --filter-slider-left: 6px;
  --filter-slider-width: 0px;
}

.filter-row::-webkit-scrollbar {
  display: none;
}

.filter-row::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 6px;
  bottom: 6px;
  border-radius: 9px;
  pointer-events: none;
  left: var(--filter-slider-left);
  width: var(--filter-slider-width);
  border: 1px solid rgba(105, 191, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(37, 59, 74, 0.96), rgba(25, 43, 57, 0.96)),
    #1d3040;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 18px rgba(105, 191, 255, 0.14);
  transition: left 180ms ease, width 180ms ease, border-color 180ms ease;
}

.filter {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  min-height: 38px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #667b88;
  padding: 0 17px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  transition: color 150ms ease;
}

.filter:hover {
  color: #a6bdca;
}

.filter:focus {
  outline: 0;
}

.filter:focus-visible {
  outline: 1px solid rgba(105, 191, 255, 0.5);
  outline-offset: -4px;
}

.filter.active {
  background: transparent;
  color: #69bfff;
  text-shadow: 0 0 12px rgba(105, 191, 255, 0.16);
}

.mobile-filter-shell {
  display: none;
}

.site-list-section {
  padding: 30px 0 30px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 16px;
}

.section-head p {
  max-width: 520px;
  margin: 0;
  font-size: 14px;
}

.site-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(214px, 1fr));
  justify-items: start;
  gap: 12px;
}

.grid-empty {
  grid-column: 1 / -1;
  justify-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 48px 24px;
  border: 1px dashed #354651;
  border-radius: 8px;
  background: rgba(35, 45, 54, 0.55);
  text-align: center;
}

.grid-empty h3 {
  margin: 0;
  font-size: 18px;
}

.grid-empty p {
  margin: 0;
  max-width: 460px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.grid-empty .btn {
  margin-top: 10px;
  padding: 0 20px;
}

.casino-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 227px;
  min-height: 300px;
  border: 1px solid #354651;
  border-radius: 8px;
  background: linear-gradient(180deg, #29373f, #232d36);
  box-shadow: none;
  text-align: center;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.casino-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.casino-card:hover,
.casino-card:focus-within {
  border-color: #354651;
  box-shadow: none;
  transform: none;
}

.card-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 16px 88px;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.card-front {
  gap: 8px;
  padding-top: 28px;
}

.card-hover {
  gap: 0;
  align-items: stretch;
  justify-content: flex-start;
  background: transparent;
  opacity: 0;
  transform: translateX(100%);
  visibility: hidden;
  padding: 22px 12px 86px;
}

.casino-card:hover .card-front,
.casino-card:focus-within .card-front,
.casino-card.is-hovered .card-front {
  opacity: 0;
  transform: translateX(-32px);
  visibility: hidden;
}

.casino-card:hover .card-hover,
.casino-card:focus-within .card-hover,
.casino-card.is-hovered .card-hover {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.operator-logo {
  position: relative;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
}

.operator-logo img {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 4px;
}

.operator-logo span {
  position: absolute;
  display: none;
  color: var(--blue-soft);
  font-size: 19px;
  font-weight: 900;
}

.operator-logo .operator-monogram {
  position: static;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background:
    radial-gradient(circle at 28% 22%, rgba(105, 191, 255, 0.22), transparent 38%),
    linear-gradient(145deg, #27465a, #172b39);
  color: #dff3ff;
  font-size: 21px;
  letter-spacing: -0.04em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.32);
}

.operator-logo img.broken {
  display: none;
}

.operator-logo img.broken + span {
  display: block;
}

.casino-card h3 {
  width: 100%;
  min-height: 20px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
}

.score-line {
  justify-content: center;
  gap: 0;
}

.score-pill {
  display: none;
  min-width: 50px;
  border-radius: 999px;
  background: rgba(47, 153, 255, 0.18);
  color: var(--blue-soft);
  padding: 3px 8px;
  font-size: 12px;
  font-weight: 900;
}

.star-meter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  height: 18px;
}

.card-star {
  display: block;
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
}

.card-star-empty {
  fill: rgba(105, 191, 255, 0.26);
}

.card-star-fill {
  fill: #69bfff;
}

.bonus-box {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(117, 142, 157, 0.18);
  border-radius: 4px;
  background: rgba(29, 44, 55, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  padding: 7px 10px;
  overflow: hidden;
  text-align: center;
}

.bonus-box span {
  display: none;
}

.bonus-box strong {
  display: -webkit-box;
  max-width: 170px;
  margin: 0;
  color: #8f9eaa;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.18;
  overflow: hidden;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.game-row,
.method-row {
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.hover-block {
  display: grid;
  gap: 7px;
  text-align: left;
}

.hover-block + .hover-block {
  margin-top: 8px;
}

.hover-title {
  color: #8fa9bc;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.card-hover .game-row {
  display: grid;
  grid-template-columns: repeat(3, 68px);
  gap: 7px;
  justify-content: center;
}

.card-hover .game-row.chip-count-1 {
  grid-template-columns: minmax(0, 194px);
}

.card-hover .game-row.chip-count-2 {
  grid-template-columns: repeat(2, minmax(0, 94px));
}

.card-hover .method-row {
  display: grid;
  grid-template-columns: repeat(3, 62px);
  gap: 7px;
  justify-content: center;
}

.game-chip,
.method-chip {
  position: relative;
  height: 31px;
  display: grid;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  border-radius: 3px;
  background: #1d2d38;
  color: #d9efff;
  padding: 0 5px;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.game-chip {
  grid-template-columns: auto minmax(0, auto);
  gap: 4px;
  background:
    linear-gradient(90deg, rgba(43, 74, 91, 0.9), rgba(22, 38, 49, 0.97)),
    #1b2a35;
  color: #e4f4ff;
}

.game-chip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(105, 191, 255, 0.1), transparent 62%);
  opacity: 0.52;
  pointer-events: none;
}

.game-chip span:not(.more-count) {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-chip i,
.game-chip svg {
  width: 13px;
  height: 13px;
  justify-self: center;
  color: #73c3ff;
  fill: currentColor;
  filter: drop-shadow(0 1px 0 rgba(0, 0, 0, 0.25));
}

.game-chip i {
  display: grid;
  place-items: center;
  font-size: 11px;
  line-height: 13px;
}

.game-chip .fa-times {
  font-size: 12px;
}

.game-chip .fa-briefcase,
.game-chip .fa-chart-line,
.game-chip .fa-file-contract {
  font-size: 10px;
}

.method-chip {
  grid-template-rows: 1fr;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: transparent;
  padding: 0;
}

.method-chip img {
  width: 62px;
  height: 31px;
  max-width: 62px;
  max-height: 31px;
  object-fit: contain;
  justify-self: center;
}

.method-chip span:not(.more-count) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

/* Methods with no brand SVG render as wordmark badges cloned from the icon
   art: same rounded rect, vertical gradient, and #CCC lettering (VISA, ...). */
.method-chip.text-chip {
  border-radius: 4px;
  background: linear-gradient(180deg, #2c3944, #384348);
  color: #cccccc;
  padding: 0 4px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 100%;
}

.method-chip.text-chip span:not(.more-count) {
  position: static;
  width: auto;
  height: auto;
  overflow: hidden;
  clip: auto;
  max-width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
}

.more-chip {
  grid-template-rows: 1fr;
  place-items: center;
  gap: 0;
  color: #9cd7ff;
  background:
    linear-gradient(180deg, rgba(47, 75, 91, 0.84), rgba(25, 44, 56, 0.96)),
    #1d2d38;
}

.game-chip.more-chip {
  grid-template-columns: 1fr;
  width: 62px;
  height: 31px;
  border: 0;
  border-radius: 3px;
  background:
    linear-gradient(90deg, rgba(53, 84, 96, 0.86), rgba(34, 55, 67, 0.96)),
    #223743;
}

.method-chip.more-chip {
  width: 62px;
  height: 31px;
  grid-template-rows: 1fr;
  border: 0;
  border-radius: 3px;
  background:
    linear-gradient(90deg, rgba(53, 84, 96, 0.86), rgba(34, 55, 67, 0.96)),
    #223743;
  color: #80caff;
  padding: 0;
}

.more-count {
  display: block;
  align-self: center;
  justify-self: center;
  font-size: 12px;
  line-height: 1;
}

.more-label {
  display: none;
  color: #a7bacb;
  font-size: 8px;
  text-transform: uppercase;
}

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  padding: 0 13px;
  font-size: 14px;
  font-weight: 900;
}

.btn.primary {
  width: 100%;
  margin-top: 0;
  border: 0;
  background: linear-gradient(180deg, #369fff, #1684ef);
  color: #ffffff;
  box-shadow: none;
}

.card-actions {
  position: absolute;
  right: 12px;
  bottom: 16px;
  left: 12px;
  z-index: 4;
}

.review-link {
  display: inline-flex;
  justify-content: center;
  width: 100%;
  margin-top: 8px;
  color: #67bdf8;
  font-size: 11px;
  font-weight: 900;
}

.review-link:hover {
  color: #9fd7ff;
}

.content-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 26px;
  align-items: start;
  padding-top: 16px;
  padding-bottom: 58px;
}

.guide-content {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #1b2530;
  padding: 28px;
}

.guide-content h2 {
  margin-top: 32px;
}

.guide-content h2:first-child {
  margin-top: 0;
}

.guide-content p {
  margin: 12px 0 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.info-grid section,
.feature-list div {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #202d38;
  padding: 16px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.feature-list span {
  color: var(--blue-soft);
  font-size: 12px;
  font-weight: 900;
}

.toc {
  position: sticky;
  top: 84px;
  display: grid;
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #1b2530;
  padding: 14px;
}

.toc-title {
  margin-bottom: 6px;
  color: var(--text);
  font-weight: 900;
}

.toc a {
  border-radius: 5px;
  color: var(--muted);
  padding: 8px;
  font-size: 14px;
  font-weight: 800;
}

.toc a:hover {
  background: #243444;
  color: var(--blue-soft);
}

.faq-section {
  padding-bottom: 60px;
}

.faq-section h2 {
  margin-bottom: 16px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  display: grid;
  gap: 6px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #1b2530;
  color: var(--text);
  padding: 16px;
  text-align: left;
  cursor: pointer;
}

.faq-item span:first-child {
  font-weight: 900;
}

.faq-item span:last-child {
  color: var(--muted);
}

.footer {
  margin-top: 40px;
  padding: 0 0 34px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.75fr);
  gap: 34px;
  border-top: 1px solid #31414c;
  border-bottom: 1px solid rgba(116, 164, 210, 0.12);
  padding: 30px 0 26px;
}

.footer-brand-block {
  max-width: 390px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  height: 38px;
}

.footer-logo img {
  display: block;
  width: auto;
  height: 34px;
  object-fit: contain;
}

.footer-brand-block p {
  margin: 14px 0 0;
  color: #9fb1bf;
  font-size: 13px;
  line-height: 1.58;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 16px;
}

.footer-badges span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(105, 191, 255, 0.2);
  border-radius: 4px;
  background: #17232d;
  color: #91cfff;
  padding: 0 9px;
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
  min-width: 0;
}

.footer-heading {
  color: #f5fbff;
  font-size: 12px;
  font-weight: 900;
}

.footer-column a {
  width: max-content;
  max-width: 100%;
  color: #899fac;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
}

.footer-column a:hover,
.footer-bottom-links a:hover {
  color: var(--blue-soft);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 15px;
  color: #758b98;
  font-size: 11px;
  font-weight: 800;
}

.footer-bottom p {
  margin: 0;
  color: #758b98;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.footer-bottom-links a {
  color: #8da2ad;
}

.link-button {
  color: inherit;
}

.review-page {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding-top: 0;
}

.review-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 20px;
  align-items: stretch;
}

.review-hero-copy,
.rating-panel,
.review-summary-grid article,
.review-article,
.verdict-card,
.pros-cons section,
.screenshot-card,
.sources-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #1b2530;
}

.review-hero-copy {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background:
    linear-gradient(90deg, rgba(17, 25, 35, 0.95), rgba(17, 25, 35, 0.72)),
    url("assets/reviews/rustyloot-home.png") center / cover;
}

.review-hero-copy h1 {
  max-width: 760px;
}

.review-hero-copy p:last-of-type {
  max-width: 760px;
  margin: 12px 0 0;
  color: #d7e7f5;
  font-size: 16px;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.review-actions .btn {
  width: auto;
  min-width: 156px;
}

.btn.secondary {
  border: 1px solid var(--line);
  background: #22303b;
  color: var(--text);
}

.rating-panel {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 10px;
  padding: 22px;
  text-align: center;
}

.review-logo {
  width: 86px;
  height: 86px;
  object-fit: contain;
  border: 1px solid #3f7eaa;
  border-radius: 8px;
  background: #203241;
  padding: 10px;
}

.review-logo-shell {
  position: relative;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid #3f7eaa;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(48, 84, 108, 0.78), rgba(24, 39, 51, 0.98)),
    #203241;
  color: #9bd7ff;
  font-size: 22px;
  font-weight: 900;
}

.review-logo-shell .review-logo {
  position: absolute;
  inset: 0;
  border: 0;
  background: transparent;
}

.review-logo-shell span {
  position: relative;
  z-index: 0;
}

.rating-score {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
}

.rating-score span {
  color: var(--muted);
  font-size: 19px;
}

.rating-label {
  color: var(--blue-soft);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.star-meter.large {
  width: 106px;
  height: 25px;
  font-size: 24px;
  line-height: 25px;
}

.review-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  height: 24px;
}

.review-stars svg {
  display: block;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.review-stars .filled {
  fill: #69bfff;
}

.review-stars .empty {
  fill: #36566b;
}

.rating-panel p,
.review-summary-grid p,
.screenshot-card figcaption,
.review-article p,
.sources-section p,
.pros-cons li {
  color: var(--muted);
}

.rating-panel p {
  margin: 4px 0 0;
  font-size: 13px;
}

.review-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.review-summary-grid article {
  padding: 16px;
}

.review-summary-grid span {
  color: var(--blue-soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-summary-grid strong {
  display: block;
  margin-top: 5px;
  color: var(--text);
  font-size: 16px;
}

.review-summary-grid p {
  margin: 8px 0 0;
  font-size: 13px;
}

.review-section {
  margin-top: 30px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.screenshot-card {
  overflow: hidden;
  margin: 0;
}

.screenshot-card.wide {
  grid-column: span 2;
}

.screenshot-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.4;
  object-fit: cover;
  object-position: top center;
  background: #101723;
}

.screenshot-card figcaption {
  border-top: 1px solid var(--line);
  padding: 11px 13px;
  font-size: 13px;
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 20px;
  align-items: start;
  margin-top: 30px;
}

.review-article {
  padding: 28px;
}

.review-article h2 {
  margin-top: 32px;
}

.review-article h2:first-child {
  margin-top: 0;
}

.review-article p {
  margin: 12px 0 0;
}

.review-state-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
  color: #a8bdca;
  font-size: 13px;
  font-weight: 800;
}

.review-state {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(105, 191, 255, 0.24);
  background: rgba(105, 191, 255, 0.13);
  color: #8fd2ff;
  text-transform: uppercase;
  letter-spacing: 0;
}

.review-state.state-partial {
  border-color: rgba(255, 190, 96, 0.24);
  background: rgba(255, 190, 96, 0.12);
  color: #ffc978;
}

.review-state.state-watch {
  border-color: rgba(255, 126, 126, 0.24);
  background: rgba(255, 126, 126, 0.12);
  color: #ffa0a0;
}

.review-disclosure,
.review-warning {
  border: 1px solid rgba(255, 190, 96, 0.2);
  border-radius: 8px;
  background: rgba(255, 190, 96, 0.08);
  padding: 11px 12px;
}

.review-warning {
  color: #ffc978;
}

.review-evidence-box {
  margin-top: 18px;
  border: 1px solid rgba(105, 191, 255, 0.18);
  border-radius: 8px;
  background: rgba(15, 31, 43, 0.72);
  padding: 14px;
}

.review-evidence-box div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-evidence-box span,
.evidence-check-grid span {
  color: #8ba4b3;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.review-evidence-box strong,
.evidence-check-grid strong {
  color: var(--text);
}

.evidence-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.evidence-check-grid div {
  min-height: 150px;
  border: 1px solid rgba(116, 164, 210, 0.16);
  border-radius: 8px;
  background: rgba(12, 25, 35, 0.56);
  padding: 13px;
}

.evidence-check-grid .is-checked {
  border-color: rgba(105, 191, 255, 0.22);
}

.evidence-check-grid .is-checked span {
  color: #8fd2ff;
}

.evidence-check-grid .is-unchecked {
  border-color: rgba(255, 190, 96, 0.18);
}

.evidence-check-grid .is-unchecked span {
  color: #ffc978;
}

.evidence-check-grid p {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.5;
}

.fact-table,
.score-breakdown {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.fact-table div,
.score-breakdown div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #202d38;
  padding: 12px;
}

.fact-table span,
.score-breakdown span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.fact-table strong,
.score-breakdown strong {
  color: var(--text);
  text-align: right;
}

.review-sidebar {
  position: sticky;
  top: 84px;
  display: grid;
  gap: 12px;
}

.verdict-card,
.pros-cons section,
.sources-section {
  padding: 18px;
}

.verdict-card h2 {
  font-size: 20px;
}

.pros-cons {
  display: grid;
  gap: 12px;
}

.pros-cons h3 {
  margin-bottom: 10px;
}

.pros-cons ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
}

.source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.source-list a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #202d38;
  color: var(--blue-soft);
  padding: 0 12px;
  font-size: 13px;
  font-weight: 900;
}

.review-limit-list {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.sources-section {
  margin-bottom: 42px;
}

.category-page {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 56px;
}

.category-hero {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(27, 37, 48, 0.98), rgba(27, 37, 48, 0.88)),
    radial-gradient(circle at 90% 0, rgba(47, 153, 255, 0.2), transparent 310px);
  padding: 30px;
}

.category-hero h1 {
  max-width: 760px;
}

.category-hero p:last-child {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.category-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
  border: 1px solid rgba(116, 164, 210, 0.18);
  border-radius: 6px;
  background: #17222b;
  padding: 8px;
}

.category-switcher a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #7d95a5;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.category-switcher i {
  width: 14px;
  color: #69bfff;
  font-size: 12px;
  text-align: center;
}

.category-switcher a:hover,
.category-switcher a.active {
  border-color: rgba(105, 191, 255, 0.32);
  background: #22313c;
  color: #eaf6ff;
}

.category-ranked {
  margin-top: 26px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.category-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(38, 54, 67, 0.84), rgba(24, 35, 46, 0.96)),
    #1b2530;
  padding: 20px;
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(105, 191, 255, 0.22);
}

.category-card span {
  color: var(--blue-soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.category-card h2 {
  margin-top: 8px;
  font-size: 20px;
}

.category-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.seo-content-section {
  width: min(var(--max), calc(100% - 32px));
  margin: 18px auto 58px;
}

.category-page .seo-content-section {
  width: 100%;
  margin: 22px 0 58px;
}

.seo-content-section .section-head {
  margin-bottom: 18px;
}

.seo-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 40px;
  align-items: start;
}

.seo-copy h3 {
  grid-column: 1 / -1;
  margin: 26px 0 0;
  font-size: 20px;
}

.seo-copy p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.seo-copy h3 + p:last-child,
.seo-copy .seo-screenshot + p + p:last-child {
  grid-column: 1 / -1;
}

.seo-screenshot {
  margin: 20px 0 4px;
  border: 1px solid rgba(116, 164, 210, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background: #131e28;
}

.seo-copy .seo-screenshot {
  grid-row: span 2;
  margin: 12px 0 0;
}

.seo-screenshot img {
  display: block;
  width: 100%;
  height: auto;
}

.seo-screenshot figcaption {
  border-top: 1px solid rgba(116, 164, 210, 0.16);
  padding: 10px 14px;
  color: #8fa5b6;
  font-size: 12px;
  font-weight: 700;
}

.blog-page {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding-bottom: 56px;
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: 18px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(26, 36, 47, 0.98), rgba(21, 31, 41, 0.92)),
    radial-gradient(circle at 100% 0, rgba(47, 153, 255, 0.2), transparent 330px);
  padding: 30px;
}

.blog-hero h1 {
  max-width: 720px;
}

.blog-hero p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.blog-hero-panel,
.blog-featured,
.blog-card,
.blog-sidebar {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #1b2530;
}

.blog-hero-panel {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 18px;
}

.blog-hero-stat {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(116, 164, 210, 0.14);
  padding-bottom: 10px;
  color: #8da5b4;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-hero-stat:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.blog-hero-stat strong {
  color: #f4fbff;
  font-size: 15px;
  text-transform: none;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(270px, 0.72fr);
  gap: 14px;
  margin-top: 18px;
}

.blog-featured {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--blue-soft);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-featured h2,
.blog-card h2,
.blog-sidebar h2 {
  margin: 0;
}

.blog-featured p,
.blog-card p,
.blog-sidebar p {
  margin: 0;
  color: var(--muted);
}

.blog-featured h2 a:hover {
  color: var(--blue-soft);
}

.blog-read {
  color: var(--blue-soft);
  font-size: 12px;
  font-weight: 900;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.blog-card {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.blog-card h2 {
  font-size: 18px;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.blog-tags span {
  border: 1px solid rgba(116, 164, 210, 0.2);
  border-radius: 4px;
  background: #172634;
  color: #a7bdc9;
  padding: 5px 7px;
  font-size: 11px;
  font-weight: 900;
}

.blog-sidebar {
  position: sticky;
  top: 82px;
  align-self: start;
  display: grid;
  gap: 12px;
  padding: 18px;
}

.blog-sidebar-list {
  display: grid;
  gap: 8px;
}

.blog-sidebar-list a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  border: 1px solid rgba(116, 164, 210, 0.14);
  border-radius: 4px;
  background: #16232d;
  color: #a9becb;
  padding: 10px;
  font-size: 12px;
  font-weight: 900;
}

.blog-sidebar-list a:hover {
  border-color: rgba(105, 191, 255, 0.32);
  color: #e8f6ff;
}

.blog-post-layout {
  margin-top: 24px;
}

.blog-post {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #1b2530;
  padding: 26px 30px 30px;
}

.blog-post .crumbs a {
  color: inherit;
}

.blog-post .blog-meta {
  margin-top: 12px;
}

.blog-post h1 {
  margin: 10px 0 0;
  max-width: 760px;
  font-size: clamp(24px, 3.4vw, 34px);
  line-height: 1.18;
}

.blog-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  border-bottom: 1px solid rgba(116, 164, 210, 0.14);
  padding-bottom: 16px;
  color: #8da5b4;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-byline > span:not(.blog-byline-avatar):not(:last-child)::after {
  content: "\00b7";
  margin-left: 10px;
  color: rgba(141, 165, 180, 0.6);
}

.blog-byline strong {
  color: #f4fbff;
}

.blog-byline-avatar {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(105, 191, 255, 0.35);
  border-radius: 50%;
  background: #172634;
  color: var(--blue-soft);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.4px;
}

.blog-post-body {
  display: grid;
  gap: 14px;
  margin: 18px 0 20px;
  max-width: 760px;
}

.blog-post-body p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.blog-post-body h2 {
  margin: 12px 0 0;
  font-size: 21px;
}

.blog-post-body ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.blog-post-body strong {
  color: #e8f6ff;
}

.blog-post-callout {
  border: 1px solid rgba(105, 191, 255, 0.3);
  border-left: 3px solid var(--blue-soft);
  border-radius: 4px;
  background: #16232d;
  padding: 14px 16px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.blog-post .blog-tags {
  margin-bottom: 16px;
}

.blog-post .blog-read i {
  margin-right: 6px;
  font-size: 10px;
}

.blog-author-card {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-author-card div {
  display: grid;
  gap: 2px;
}

.blog-author-card strong {
  color: #f4fbff;
  font-size: 14px;
}

.blog-author-card div span {
  color: #8da5b4;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1040px) {
  .topbar {
    grid-template-columns: minmax(130px, 190px) minmax(0, 1fr) 206px;
    gap: 12px;
  }

  .topnav {
    gap: 30px;
  }

  .header-search,
  .header-search.is-open,
  .header-search:focus-within,
  .header-search.is-open .header-search-field,
  .header-search:focus-within .header-search-field {
    width: 206px;
  }

  .mega-strip,
  .content-shell,
  .review-hero,
  .review-layout {
    grid-template-columns: 1fr;
  }

  .toc,
  .review-sidebar {
    position: static;
  }

  .review-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-hub-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero,
  .blog-layout,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .seo-copy {
    display: block;
  }

  .blog-sidebar {
    position: static;
  }
}

@media (min-width: 761px) and (max-width: 840px) {
  .topnav {
    gap: 18px;
  }
}

@media (max-width: 760px) {
  body {
    height: 100%;
    overflow-y: auto;
    touch-action: pan-y;
  }

  .topbar {
    min-height: 94px;
    grid-template-columns: minmax(100px, 1fr) minmax(140px, 190px);
    grid-template-rows: 54px 40px;
    gap: 0 10px;
    align-items: stretch;
    padding: 0 12px;
  }

  .topnav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    display: flex;
    justify-content: space-between;
    gap: 0;
    width: auto;
    max-width: none;
    height: 40px;
    margin: 0 -12px;
    border-top: 1px solid rgba(116, 164, 210, 0.16);
    border-bottom: 1px solid rgba(116, 164, 210, 0.12);
    padding: 0 12px;
    overflow: visible;
  }

  .icon-button {
    display: none;
  }

  .wordmark {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    height: 54px;
  }

  .wordmark-logo {
    height: 29px;
  }

  .topnav a,
  .nav-trigger {
    min-height: 40px;
    padding: 0 4px;
    font-size: 12px;
  }

  .nav-item {
    height: 40px;
  }

  .nav-item:first-child .nav-trigger {
    font-size: 0;
  }

  .nav-item:first-child .nav-trigger::before {
    content: "CS2";
    font-size: 12px;
  }

  .nav-dropdown,
  .nav-dropdown.compact,
  .nav-dropdown.crypto-menu {
    position: fixed;
    top: 94px;
    right: 0;
    left: 0;
    width: auto;
    max-height: min(430px, calc(100vh - 94px));
    grid-template-columns: 1fr;
    gap: 8px;
    border: 0;
    border-top: 1px solid rgba(116, 164, 210, 0.14);
    border-bottom: 1px solid rgba(105, 191, 255, 0.18);
    border-radius: 0 0 12px 12px;
    background:
      linear-gradient(180deg, #202b34 0, #1a2630 44%, #121f29 100%);
    box-shadow: 0 18px 32px rgba(3, 8, 14, 0.46);
    padding: 8px 10px 10px;
    overflow-y: auto;
    transform: translateY(-6px);
    transform-origin: top center;
    scrollbar-width: none;
  }

  .nav-dropdown::-webkit-scrollbar {
    display: none;
  }

  .nav-item.is-open .nav-dropdown {
    transform: translateY(0);
  }

  .nav-menu-section {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    border: 1px solid rgba(116, 164, 210, 0.1);
    border-radius: 7px;
    background: rgba(17, 29, 39, 0.64);
    padding: 6px;
  }

  .nav-menu-title {
    grid-column: 1 / -1;
    min-height: 30px;
    margin: -6px -6px 1px;
    border-bottom: 1px solid rgba(116, 164, 210, 0.12);
    border-radius: 7px 7px 0 0;
    background:
      linear-gradient(90deg, rgba(48, 67, 80, 0.92), rgba(31, 45, 56, 0.9));
    color: #f4fbff;
    padding: 0 11px;
    font-size: 12px;
  }

  .nav-menu-title i {
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    border-radius: 5px;
    background: rgba(105, 191, 255, 0.13);
    color: #8fd0ff;
    font-size: 9px;
  }

  .nav-menu-section a {
    min-height: 33px;
    justify-content: space-between;
    border: 1px solid rgba(116, 164, 210, 0.07);
    border-radius: 5px;
    background: rgba(10, 20, 29, 0.3);
    color: #afc4d1;
    padding: 0 9px;
    font-size: 11.5px;
    line-height: 1.15;
  }

  .nav-menu-section a:last-child {
    border-bottom: 1px solid rgba(116, 164, 210, 0.08);
  }

  .nav-menu-section .new-site-dot {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
    margin-right: 6px;
    font-size: 8px;
  }

  .nav-menu-section a::after {
    content: "";
    width: 5px;
    height: 5px;
    flex: 0 0 5px;
    margin-left: 8px;
    border-top: 2px solid rgba(105, 191, 255, 0.52);
    border-right: 2px solid rgba(105, 191, 255, 0.52);
    transform: rotate(45deg);
  }

  .nav-menu-section a:hover,
  .nav-menu-section a:focus {
    border-color: rgba(105, 191, 255, 0.2);
    background: rgba(105, 191, 255, 0.09);
    color: #f3fbff;
  }

  .header-search {
    grid-column: 2;
    grid-row: 1;
    width: 100%;
    max-width: none;
    min-height: 54px;
    justify-self: end;
    margin: 0;
  }

  .header-search.is-open,
  .header-search:focus-within {
    width: 100%;
    max-width: none;
    min-height: 54px;
    margin: 0;
  }

  .header-search-submit {
    width: 42px;
    min-height: 31px;
    top: 50%;
    transform: translateY(-50%);
  }

  .header-search-field {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: 31px;
    min-height: 0;
    border-color: #31414c;
    background: #202b34;
    pointer-events: auto;
    transform: none;
  }

  .header-search.is-open .header-search-field,
  .header-search:focus-within .header-search-field {
    width: 100%;
    height: 31px;
    border-color: #31414c;
    background: #202b34;
    transform: none;
  }

  .header-search.is-open .header-search-submit,
  .header-search:focus-within .header-search-submit {
    min-height: 31px;
  }

  .header-search-input,
  .header-search-ghost {
    padding-right: 42px;
    font-size: 12px;
    line-height: 29px;
  }

  .header-search-input {
    opacity: 1;
  }

  .header-search-submit {
    font-size: 14px;
  }

  main {
    padding-top: 16px;
  }

  #top {
    scroll-margin-top: 110px;
  }

  .mega-strip,
  .hero-section,
  .category-hub,
  .filter-row,
  .site-list-section,
  .content-shell,
  .faq-section,
  .footer,
  .review-page,
  .category-page,
  .blog-page {
    width: min(100% - 32px, var(--max));
  }

  .category-hero {
    padding: 22px;
  }

  .blog-hero {
    padding: 22px;
  }

  .category-switcher {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    padding: 8px;
  }

  .category-switcher a {
    justify-content: center;
    min-width: 0;
    padding: 0 8px;
    font-size: 11px;
    white-space: normal;
    text-align: center;
  }

  .review-page {
    padding-top: 0;
  }

  .review-hero-copy {
    min-height: 420px;
    padding: 22px;
    background:
      linear-gradient(180deg, rgba(17, 25, 35, 0.46), rgba(17, 25, 35, 0.96)),
      url("assets/reviews/rustyloot-home.png") center top / cover;
  }

  .review-hero-copy p:last-of-type {
    font-size: 14px;
    line-height: 1.55;
  }

  .review-actions .btn {
    flex: 1 1 150px;
    min-width: 0;
  }

  .review-summary-grid,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-card.wide {
    grid-column: span 1;
  }

  .screenshot-card img {
    aspect-ratio: 16 / 10.5;
  }

  .review-article {
    padding: 20px;
  }

  .evidence-check-grid {
    grid-template-columns: 1fr;
  }

  .evidence-check-grid div {
    min-height: 0;
  }

  .review-evidence-box div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .fact-table div,
  .score-breakdown div {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .fact-table strong,
  .score-breakdown strong {
    text-align: left;
  }

  .mega-strip {
    display: none;
  }

  .hero-section {
    padding-top: 6px;
    padding-bottom: 18px;
  }

  .category-hub {
    padding: 2px 0 22px;
  }

  .category-hub .section-head {
    margin-bottom: 12px;
  }

  .category-panel {
    min-height: 0;
  }

  .category-panel-head {
    padding: 12px;
  }

  .category-panel p {
    padding: 12px 12px 8px;
  }

  .category-tags {
    padding: 0 12px 12px;
  }

  .crumbs {
    display: none;
  }

  .filter-row {
    display: none;
  }

  .mobile-filter-shell {
    display: block;
    width: 100%;
    margin: 0 0 10px;
    padding: 10px;
    border: 1px solid rgba(116, 164, 210, 0.18);
    border-radius: 6px;
    background: #17222b;
  }

  .mobile-filter-label {
    display: block;
    margin-bottom: 6px;
    color: #8fa5b6;
    font-size: 11px;
    font-weight: 900;
  }

  .mobile-filter-combobox {
    position: relative;
  }

  .mobile-filter-trigger {
    width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(105, 191, 255, 0.38);
    border-radius: 5px;
    background: #152632;
    color: #eaf6ff;
    padding: 0 13px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 900;
    outline: none;
  }

  .mobile-filter-trigger i {
    color: #69bfff;
    font-size: 11px;
    transition: transform 140ms ease;
  }

  .mobile-filter-combobox.is-open .mobile-filter-trigger {
    border-bottom-color: rgba(105, 191, 255, 0.18);
    border-radius: 5px 5px 0 0;
    background: #152632;
  }

  .mobile-filter-combobox.is-open .mobile-filter-trigger i {
    transform: rotate(180deg);
  }

  .mobile-filter-menu {
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    left: 0;
    z-index: 30;
    display: grid;
    max-height: none;
    overflow: visible;
    border: 1px solid rgba(105, 191, 255, 0.38);
    border-top: 0;
    border-radius: 0 0 5px 5px;
    background: #152632;
    box-shadow: 0 18px 26px rgba(4, 9, 16, 0.22);
    opacity: 0;
    padding: 4px;
    pointer-events: none;
    transform: translateY(-3px);
    transition: opacity 120ms ease, transform 120ms ease, visibility 120ms ease;
    visibility: hidden;
  }

  .mobile-filter-combobox.is-open .mobile-filter-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .mobile-filter-option {
    min-height: 32px;
    border: 0;
    border-radius: 4px;
    background: transparent;
    color: #d9e8f4;
    padding: 0 9px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 800;
    text-align: left;
  }

  .mobile-filter-option:hover,
  .mobile-filter-option:focus {
    background: rgba(105, 191, 255, 0.08);
    color: #ffffff;
    outline: none;
  }

  .mobile-filter-option.active {
    background: rgba(105, 191, 255, 0.14);
    color: #8ed0ff;
    font-weight: 900;
  }

  h1 {
    max-width: 360px;
    font-size: 24px;
    line-height: 1.18;
  }

  h2 {
    font-size: 22px;
  }

  .hero-copy p:last-child {
    max-width: 370px;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.55;
  }

  .site-list-section {
    padding-top: 4px;
  }

  .seo-content-section,
  .category-page .seo-content-section {
    width: min(100% - 32px, var(--max));
    margin: 16px auto 36px;
  }

  .category-page .seo-content-section {
    width: 100%;
  }

  .seo-copy h3 {
    font-size: 18px;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer {
    margin-top: 30px;
    padding-bottom: 28px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 0 22px;
  }

  .footer-brand-block {
    max-width: none;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 18px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom-links {
    justify-content: flex-start;
  }

  .section-head {
    gap: 8px;
    margin-bottom: 14px;
  }

  .section-head p {
    max-width: 360px;
    font-size: 13px;
    line-height: 1.55;
  }

  .site-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: stretch;
    gap: 10px;
    touch-action: pan-y;
  }

  .casino-card {
    width: 100%;
    max-width: none;
    min-height: 270px;
    display: block;
    text-align: center;
    transform: none;
    touch-action: pan-y;
  }

  .casino-card:hover,
  .casino-card:focus-within {
    transform: none;
  }

  .card-face {
    position: absolute;
    inset: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    touch-action: pan-y;
  }

  .card-front {
    display: flex;
    gap: 6px;
    padding: 10px 10px 78px;
  }

  .casino-card:hover .card-front,
  .casino-card:focus-within .card-front,
  .casino-card.is-hovered .card-front {
    opacity: 0;
    transform: translateX(-32px);
    visibility: hidden;
  }

  .operator-logo {
    width: 72px;
    height: 72px;
    border-radius: 6px;
  }

  .operator-logo img {
    width: 60px;
    height: 60px;
  }

  .casino-card h3 {
    min-height: 0;
    font-size: 15.5px;
    line-height: 1.12;
  }

  .star-meter {
    height: 20px;
  }

  .card-star {
    width: 17px;
    height: 17px;
    flex-basis: 17px;
  }

  .score-line {
    justify-content: center;
  }

  .bonus-box {
    margin-top: 4px;
    min-height: 42px;
    padding: 7px 9px;
  }

  .bonus-box span {
    display: none;
  }

  .bonus-box strong {
    margin-top: 0;
    max-width: 122px;
    font-size: 10.9px;
    line-height: 1.18;
  }

  .btn {
    min-height: 36px;
    padding: 0 8px;
    font-size: 12px;
  }

  .card-actions {
    right: 8px;
    bottom: 8px;
    left: 8px;
  }

  .card-hover {
    display: flex;
    gap: 0;
    background: transparent;
    border-top: 0;
    padding: 8px 8px 62px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
  }

  .casino-card:hover .card-hover,
  .casino-card:focus-within .card-hover,
  .casino-card.is-hovered .card-hover {
    opacity: 1;
    transform: translateX(0);
    visibility: visible;
  }

  .hover-block {
    max-width: none;
    gap: 4px;
  }

  .hover-block + .hover-block {
    margin-top: 5px;
  }

  .hover-title {
    font-size: 10px;
  }

  .card-hover .game-row,
  .card-hover .method-row {
    grid-template-columns: repeat(3, 52px);
    gap: 4px;
    justify-content: center;
  }

  .card-hover .game-row.chip-count-1 {
    grid-template-columns: minmax(0, 166px);
  }

  .card-hover .game-row.chip-count-2 {
    grid-template-columns: repeat(2, minmax(0, 80px));
  }

  .game-chip,
  .method-chip {
    height: 26px;
    font-size: 9.5px;
  }

  .game-chip {
    grid-template-columns: auto minmax(0, auto);
    gap: 3px;
    background:
      linear-gradient(90deg, rgba(43, 69, 84, 0.9), rgba(22, 38, 49, 0.97)),
      #1b2b36;
  }

  .game-chip.more-chip,
  .method-chip.more-chip {
    grid-template-rows: 1fr;
    place-items: center;
    gap: 0;
  }

  .game-chip.more-chip {
    width: 52px;
    height: 26px;
    border: 0;
    border-radius: 3px;
    background:
      linear-gradient(90deg, rgba(53, 84, 96, 0.86), rgba(34, 55, 67, 0.96)),
      #223743;
  }

  .game-chip i,
  .game-chip svg {
    width: 11px;
    height: 11px;
    font-size: 10px;
  }

  .method-chip img {
    width: 52px;
    height: 26px;
    max-width: 52px;
    max-height: 26px;
  }

  .method-chip.more-chip {
    width: 52px;
    height: 26px;
  }

  .review-link {
    justify-content: center;
    width: 100%;
    margin-top: 6px;
    font-size: 9px;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .guide-content {
    padding: 20px;
  }

}

@media (max-width: 380px) {
  .site-grid {
    gap: 8px;
  }

  .card-front {
    padding: 10px 8px 72px;
  }

  .card-hover {
    padding: 8px 7px 60px;
  }

  .operator-logo {
    width: 64px;
    height: 64px;
  }

  .operator-logo img {
    width: 54px;
    height: 54px;
  }

  .casino-card h3 {
    font-size: 14.5px;
    line-height: 1.12;
  }

  .star-meter {
    height: 18px;
  }

  .card-star {
    width: 16px;
    height: 16px;
    flex-basis: 16px;
  }

  .bonus-box strong {
    font-size: 10.4px;
  }

  .btn {
    min-height: 34px;
    font-size: 11px;
  }

  .card-hover .game-row,
  .card-hover .method-row {
    grid-template-columns: repeat(3, 42px);
    gap: 3px;
  }

  .card-hover .game-row.chip-count-1 {
    grid-template-columns: minmax(0, 134px);
  }

  .card-hover .game-row.chip-count-2 {
    grid-template-columns: repeat(2, minmax(0, 65px));
  }

  .game-chip,
  .method-chip {
    height: 21px;
    font-size: 7.8px;
  }

  .game-chip {
    background:
      linear-gradient(90deg, rgba(42, 65, 79, 0.9), rgba(21, 36, 47, 0.97)),
      #1a2933;
  }

  .method-chip img {
    width: 42px;
    height: 21px;
    max-width: 42px;
    max-height: 21px;
  }

  .method-chip.more-chip {
    width: 42px;
    height: 21px;
  }

  .more-count {
    font-size: 10.5px;
  }

  .game-chip.more-chip,
  .method-chip.more-chip {
    grid-template-rows: 1fr;
    place-items: center;
    gap: 0;
  }

  .game-chip.more-chip {
    width: 42px;
    height: 21px;
    border: 0;
    border-radius: 3px;
    background:
      linear-gradient(90deg, rgba(53, 84, 96, 0.86), rgba(34, 55, 67, 0.96)),
      #223743;
  }
}

.generated-review {
  padding-bottom: 56px;
}

.generated-review .generated-review-hero {
  background:
    radial-gradient(circle at 82% 12%, rgba(105, 191, 255, 0.16), transparent 280px),
    linear-gradient(135deg, rgba(18, 28, 39, 0.98), rgba(31, 49, 63, 0.92));
}
