/*
  Selected patterns from site-differentiator/SITE_REUSABLE_MODULES.css.
  Modules are mounted with data-site-mod hooks; no global card, carousel,
  navigation, FAQ or article selector is used.
*/

.site-mod-scope,
[data-site-mod] {
  --site-mod-bg: #030712;
  --site-mod-bg-deep: #08101b;
  --site-mod-surface: #152033;
  --site-mod-surface-soft: #111b2b;
  --site-mod-line: rgba(255, 255, 255, 0.08);
  --site-mod-line-strong: rgba(255, 191, 36, 0.26);
  --site-mod-text: #eef4fb;
  --site-mod-muted: #a8bad2;
  --site-mod-muted-2: #7f93a9;
  --site-mod-accent: #ffbf22;
  --site-mod-accent-2: #ff9f32;
  --site-mod-accent-3: #39bdf8;
  --site-mod-success: #3ecf8e;
  color: var(--site-mod-text);
}

/* Shared dark data tables. Bootstrap's default table surface is white, which
   clashes with every page in this dark site. Keep page-specific wrappers,
   but use one readable in-site palette for every table body. */
body .table-responsive,
body .weapon-table,
body .odds-table,
body .payout-table,
body .payline-table,
body .spec-table,
body .data-table,
body .symbol-table,
body .compare-table {
  color: #dbe8f7;
  background: #0e1729;
}
body .table-responsive > .table,
body table.table,
body .weapon-table table,
body .odds-table table,
body .payout-table table,
body .payline-table table,
body .spec-table table,
body .data-table table,
body .symbol-table table,
body .compare-table table {
  --bs-table-bg: #101b30;
  --bs-table-color: #dbe8f7;
  --bs-table-border-color: rgba(148, 163, 184, 0.2);
  --bs-table-striped-bg: #14213a;
  --bs-table-striped-color: #eff6ff;
  --bs-table-hover-bg: #182945;
  --bs-table-hover-color: #ffffff;
  margin-bottom: 0;
  color: #dbe8f7;
  background: #101b30;
}
/* Bootstrap paints cells with an inset shadow based on --bs-table-bg. Force
   the dark surface at the cell level as well, including custom table classes. */
body .table-responsive > .table > :not(caption) > * > *,
body table.table > :not(caption) > * > * {
  color: #dbe8f7 !important;
  background-color: #101b30 !important;
  box-shadow: inset 0 0 0 9999px #101b30 !important;
  border-color: rgba(148, 163, 184, 0.2) !important;
}
body .table-responsive > .table > thead > tr > *,
body table.table > thead > tr > * {
  color: #ffc433 !important;
  background-color: #1a2942 !important;
  box-shadow: inset 0 0 0 9999px #1a2942 !important;
}
body .table-responsive > .table > tbody > tr:nth-child(even) > *,
body table.table > tbody > tr:nth-child(even) > * {
  background-color: #14213a !important;
  box-shadow: inset 0 0 0 9999px #14213a !important;
}
body .table-responsive > .table > tbody > tr:hover > *,
body table.table > tbody > tr:hover > * {
  color: #ffffff !important;
  background-color: #182945 !important;
  box-shadow: inset 0 0 0 9999px #182945 !important;
}
body .table-responsive thead th,
body table.table thead th {
  padding: 13px 16px;
  color: #ffc433;
  background: #1a2942;
  border-color: rgba(148, 163, 184, 0.22);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
}
body .table-responsive tbody td,
body table.table tbody td {
  padding: 12px 16px;
  color: #dbe8f7;
  background: #101b30;
  border-color: rgba(148, 163, 184, 0.2);
}
body .table-responsive tbody tr:nth-child(even) td,
body table.table tbody tr:nth-child(even) td {
  background: #14213a;
}
body .table-responsive tbody tr:hover td,
body table.table tbody tr:hover td {
  color: #ffffff;
  background: #182945;
}

@media (max-width: 575.98px) {
  body .table-responsive thead th,
  body .table-responsive tbody td {
    padding: 10px 12px;
  }
}

/* site-mod-ledger — Roulette benefits: six cards become a readable ledger. */
[data-site-mod='roulette-features'] {
  display: block;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border-block: 1px solid var(--site-mod-line);
  counter-reset: roulette-benefit;
}
[data-site-mod='roulette-features'] > [class*='col'] {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 0;
  counter-increment: roulette-benefit;
}
[data-site-mod='roulette-features'] > [class*='col'] + [class*='col'] {
  border-top: 1px solid var(--site-mod-line);
}
[data-site-mod='roulette-features'] > [class*='col']::before {
  content: counter(roulette-benefit, decimal-leading-zero);
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: 54px;
  transform: translateY(-50%);
  color: var(--site-mod-muted-2);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}
[data-site-mod='roulette-features'] .feature-card {
  display: grid;
  grid-template-columns: 64px minmax(160px, 0.7fr) minmax(0, 1.7fr);
  gap: 18px;
  align-items: center;
  min-height: 118px;
  margin: 0;
  padding: 24px 18px 24px 68px;
  border: 0 !important;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
[data-site-mod='roulette-features'] .feature-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 50% 50% 50% 10px;
  background: rgba(255, 191, 34, 0.13);
  color: var(--site-mod-accent);
  font-size: 1.15rem;
}
[data-site-mod='roulette-features'] .feature-card h5 {
  margin: 0;
  color: var(--site-mod-text);
  font-size: 0.98rem;
  font-weight: 800;
}
[data-site-mod='roulette-features'] .feature-card p {
  margin: 0;
  color: var(--site-mod-muted);
  font-size: 0.86rem;
  line-height: 1.72;
}

/* site-mod-trail — strategy cards become an ordered guidance trail. */
[data-site-mod='roulette-strategy'] {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding-left: 76px;
}
[data-site-mod='roulette-strategy']::before {
  content: '';
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 28px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    var(--site-mod-accent),
    var(--site-mod-accent-3),
    rgba(57, 189, 248, 0.08)
  );
}
[data-site-mod='roulette-strategy'] > .site-mod-trail-item {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 118px;
  padding: 24px 0;
}
[data-site-mod='roulette-strategy'] > .site-mod-trail-item + .site-mod-trail-item {
  border-top: 1px solid var(--site-mod-line);
}
[data-site-mod='roulette-strategy'] .strategy-card {
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
[data-site-mod='roulette-strategy'] .site-mod-trail-marker {
  position: absolute;
  top: 23px;
  left: -76px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 5px solid var(--site-mod-bg);
  border-radius: 50%;
  background: var(--site-mod-surface);
  color: var(--site-mod-accent);
  box-shadow: 0 0 0 1px var(--site-mod-line-strong);
  font-size: 0.8rem;
  line-height: 1;
}
[data-site-mod='roulette-strategy'] h5 {
  margin: 0 0 7px;
  color: var(--site-mod-text);
  font-size: 1rem;
  font-weight: 800;
}
[data-site-mod='roulette-strategy'] p {
  margin: 0;
  color: var(--site-mod-muted);
  font-size: 0.87rem;
  line-height: 1.78;
}

/* site-mod-trail — Betting strategy uses the same source-library pattern,
   with a green/blue route to distinguish it from Roulette's gold route. */
[data-site-mod='betting-strategy'] {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding-left: 76px;
}
[data-site-mod='betting-strategy']::before {
  content: '';
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 28px;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, #3ecf8e, var(--site-mod-accent-3), rgba(57, 189, 248, 0.08));
}
[data-site-mod='betting-strategy'] > .site-mod-trail-item {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 118px;
  padding: 24px 0;
}
[data-site-mod='betting-strategy'] > .site-mod-trail-item + .site-mod-trail-item {
  border-top: 1px solid var(--site-mod-line);
}
[data-site-mod='betting-strategy'] .strategy-card {
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
[data-site-mod='betting-strategy'] .site-mod-trail-marker {
  position: absolute;
  top: 23px;
  left: -76px;
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 5px solid var(--site-mod-bg);
  border-radius: 50%;
  background: var(--site-mod-surface);
  color: #3ecf8e;
  box-shadow: 0 0 0 1px rgba(62, 207, 142, 0.38);
  font-size: 0.8rem;
  line-height: 1;
}
[data-site-mod='betting-strategy'] h5 {
  margin: 0 0 7px;
  color: var(--site-mod-text);
  font-size: 1rem;
  font-weight: 800;
}
[data-site-mod='betting-strategy'] p {
  margin: 0;
  color: var(--site-mod-muted);
  font-size: 0.87rem;
  line-height: 1.78;
}

/* site-mod-route-grid — FAQ categories become a two-column help directory.
   The live question accordion deliberately remains outside this module. */
[data-site-mod='faq-categories'] {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
}
[data-site-mod='faq-categories'] > [class*='col'] {
  width: auto;
  max-width: none;
  min-width: 0;
  padding: 0;
}
[data-site-mod='faq-categories'] .site-mod-route-card {
  display: block;
  height: 100%;
  border: 0;
  border-radius: 22px 8px 22px 8px;
  background: linear-gradient(135deg, rgba(20, 31, 49, 0.94), rgba(9, 17, 29, 0.98));
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
  color: inherit;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
[data-site-mod='faq-categories'] .site-mod-route-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(135deg, rgba(28, 43, 67, 0.98), rgba(9, 17, 29, 0.98));
}
[data-site-mod='faq-categories'] .feature-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 8px 16px;
  align-items: center;
  height: 100%;
  min-height: 146px;
  margin: 0;
  padding: 25px 24px;
  border: 0 !important;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
[data-site-mod='faq-categories'] .feature-icon-wrap {
  grid-row: 1 / span 2;
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 191, 34, 0.18), rgba(57, 189, 248, 0.15));
  color: var(--site-mod-accent);
}
[data-site-mod='faq-categories'] .feature-card h5 {
  margin: 0;
  color: var(--site-mod-text);
  font-size: 0.98rem;
  font-weight: 800;
}
[data-site-mod='faq-categories'] .feature-card p {
  margin: 0;
  color: var(--site-mod-muted);
  font-size: 0.84rem;
  line-height: 1.7;
}

/* site-mod-process — four steps become a connected process rail. */
[data-site-mod='roulette-steps'] {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
}
[data-site-mod='roulette-steps']::before {
  content: '';
  position: absolute;
  top: 27px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--site-mod-accent), var(--site-mod-accent-3));
}
[data-site-mod='roulette-steps'] > [class*='col'] {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: none;
  min-width: 0;
  padding: 0;
}
[data-site-mod='roulette-steps'] .step-box {
  height: 100%;
  min-height: 228px;
  margin: 0;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}
[data-site-mod='roulette-steps'] .step-number {
  position: relative;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  border: 5px solid var(--site-mod-bg);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--site-mod-accent), var(--site-mod-accent-2));
  color: var(--site-mod-bg-deep);
  box-shadow: 0 0 0 1px var(--site-mod-line-strong);
  font-size: 0.92rem;
  font-weight: 900;
}
[data-site-mod='roulette-steps'] h5 {
  margin: 0 0 7px;
  color: var(--site-mod-text);
  font-size: 0.96rem;
  font-weight: 800;
}
[data-site-mod='roulette-steps'] p {
  margin: 0;
  color: var(--site-mod-muted);
  font-size: 0.84rem;
  line-height: 1.72;
}

@media (max-width: 991.98px) {
  [data-site-mod='roulette-features'] .feature-card {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px 16px;
  }
  [data-site-mod='roulette-features'] .feature-card p {
    grid-column: 2;
  }
  [data-site-mod='roulette-steps'] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
  }
  [data-site-mod='roulette-steps']::before {
    display: none;
  }
}

@media (max-width: 575.98px) {
  [data-site-mod='roulette-features'] {
    border-block: 0;
  }
  [data-site-mod='roulette-features'] > [class*='col']::before {
    top: 27px;
    transform: none;
  }
  [data-site-mod='roulette-features'] .feature-card {
    padding: 26px 10px 26px 64px;
  }
  [data-site-mod='roulette-strategy'] {
    padding-left: 66px;
  }
  [data-site-mod='roulette-strategy']::before {
    left: 22px;
  }
  [data-site-mod='roulette-strategy'] .site-mod-trail-marker {
    left: -62px;
    width: 44px;
    height: 44px;
  }
  [data-site-mod='betting-strategy'] {
    padding-left: 66px;
  }
  [data-site-mod='betting-strategy']::before {
    left: 22px;
  }
  [data-site-mod='betting-strategy'] .site-mod-trail-marker {
    left: -62px;
    width: 44px;
    height: 44px;
  }
  [data-site-mod='faq-categories'] {
    grid-template-columns: 1fr;
  }
  [data-site-mod='roulette-steps'] {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  [data-site-mod='roulette-steps'] .step-box {
    min-height: 0;
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 14px;
  }
  [data-site-mod='roulette-steps'] .step-number {
    grid-row: 1 / span 2;
    width: 48px;
    height: 48px;
    margin: 0;
    border-width: 3px;
  }
  [data-site-mod='roulette-steps'] h5,
  [data-site-mod='roulette-steps'] p {
    grid-column: 2;
  }
}

/* Batch migration: selected library patterns on the remaining static pages.
   FAQ accordions are intentionally excluded. */
body[data-site-diff-page] {
  --site-mod-bg: #030712;
  --site-mod-bg-deep: #08101b;
  --site-mod-surface: #152033;
  --site-mod-line: rgba(255, 255, 255, 0.09);
  --site-mod-text: #eef4fb;
  --site-mod-muted: #a8bad2;
  --site-mod-accent: #ffbf22;
  --site-mod-accent-2: #ff9f32;
  --site-mod-accent-3: #39bdf8;
}

/* site-mod-ledger: compact benefit groups, mounted only on a card collection. */
body[data-site-diff-page]:not([data-site-diff-page='faq']) .row.g-4:has(> [class*='col'] > .feature-card) {
  display: block;
  margin: 0;
  overflow: hidden;
  border-block: 1px solid var(--site-mod-line);
  counter-reset: site-benefit;
}
body[data-site-diff-page]:not([data-site-diff-page='faq'])
  .row.g-4:has(> [class*='col'] > .feature-card)
  > [class*='col'] {
  position: relative;
  width: 100%;
  max-width: none;
  padding: 0;
  counter-increment: site-benefit;
}
body[data-site-diff-page]:not([data-site-diff-page='faq'])
  .row.g-4:has(> [class*='col'] > .feature-card)
  > [class*='col']
  + [class*='col'] {
  border-top: 1px solid var(--site-mod-line);
}
body[data-site-diff-page]:not([data-site-diff-page='faq'])
  .row.g-4:has(> [class*='col'] > .feature-card)
  > [class*='col']::before {
  content: counter(site-benefit, decimal-leading-zero);
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1;
  width: 56px;
  transform: translateY(-50%);
  color: rgba(57, 189, 248, 0.55);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}
body[data-site-diff-page]:not([data-site-diff-page='faq'])
  .row.g-4:has(> [class*='col'] > .feature-card)
  .feature-card {
  display: grid;
  grid-template-columns: 58px minmax(150px, 0.72fr) minmax(0, 1.65fr);
  gap: 18px;
  align-items: center;
  min-height: 112px;
  margin: 0;
  padding: 23px 20px 23px 70px;
  border: 0 !important;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
body[data-site-diff-page]:not([data-site-diff-page='faq'])
  .row.g-4:has(> [class*='col'] > .feature-card)
  .feature-icon,
body[data-site-diff-page]:not([data-site-diff-page='faq'])
  .row.g-4:has(> [class*='col'] > .feature-card)
  .feature-icon-wrap {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  border-radius: 50% 50% 50% 10px;
  background: rgba(255, 191, 34, 0.13);
  color: var(--site-mod-accent);
}
body[data-site-diff-page]:not([data-site-diff-page='faq'])
  .row.g-4:has(> [class*='col'] > .feature-card)
  .feature-card
  h5 {
  margin: 0;
  color: var(--site-mod-text);
  font-size: 0.98rem;
  font-weight: 800;
}
body[data-site-diff-page]:not([data-site-diff-page='faq'])
  .row.g-4:has(> [class*='col'] > .feature-card)
  .feature-card
  p {
  margin: 0;
  color: var(--site-mod-muted);
  font-size: 0.86rem;
  line-height: 1.72;
}

/* site-mod-process / site-mod-trail: tutorial blocks use an actual route. */
body[data-site-diff-page]:not([data-site-diff-page='faq']) .row.g-4:has(> [class*='col'] > .step-box),
body[data-site-diff-page='app'] .row.g-4:has(> [class*='col'] > .step-card),
body[data-site-diff-page='register'] .row.g-4:has(> [class*='col'] > .step-card) {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
}
body[data-site-diff-page]:not([data-site-diff-page='faq']) .row.g-4:has(> [class*='col'] > .step-box)::before,
body[data-site-diff-page='app'] .row.g-4:has(> [class*='col'] > .step-card)::before,
body[data-site-diff-page='register'] .row.g-4:has(> [class*='col'] > .step-card)::before {
  content: '';
  position: absolute;
  top: 27px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--site-mod-accent), var(--site-mod-accent-3));
}
body[data-site-diff-page]:not([data-site-diff-page='faq'])
  .row.g-4:has(> [class*='col'] > .step-box)
  > [class*='col'],
body[data-site-diff-page='app'] .row.g-4:has(> [class*='col'] > .step-card) > [class*='col'],
body[data-site-diff-page='register'] .row.g-4:has(> [class*='col'] > .step-card) > [class*='col'] {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: none;
  min-width: 0;
  padding: 0;
}
body[data-site-diff-page]:not([data-site-diff-page='faq']) .step-box,
body[data-site-diff-page='app'] .step-card,
body[data-site-diff-page='register'] .step-card {
  height: 100%;
  min-height: 210px;
  margin: 0;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}
body[data-site-diff-page]:not([data-site-diff-page='faq']) .step-number,
body[data-site-diff-page='app'] .step-num,
body[data-site-diff-page='register'] .step-num {
  position: relative;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 18px;
  border: 5px solid var(--site-mod-bg);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--site-mod-accent), var(--site-mod-accent-2));
  color: var(--site-mod-bg-deep);
  box-shadow: 0 0 0 1px rgba(255, 191, 34, 0.3);
  font-weight: 900;
}
body[data-site-diff-page]:not([data-site-diff-page='faq']) .step-box h5,
body[data-site-diff-page='app'] .step-card h5,
body[data-site-diff-page='register'] .step-card h5 {
  margin: 0 0 7px;
  color: var(--site-mod-text);
  font-size: 0.96rem;
  font-weight: 800;
}
body[data-site-diff-page]:not([data-site-diff-page='faq']) .step-box p,
body[data-site-diff-page='app'] .step-card p,
body[data-site-diff-page='register'] .step-card p {
  margin: 0;
  color: var(--site-mod-muted);
  font-size: 0.84rem;
  line-height: 1.72;
}

/* Library-specific third modules. */
body[data-site-diff-page='game'] .row.g-4:has(> [class*='col'] > .game-card),
body[data-site-diff-page='mega-fishing'] .row.g-4:has(> [class*='col'] > .fish-card) {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0;
  counter-reset: site-rank;
}
body[data-site-diff-page='game'] .row.g-4:has(> [class*='col'] > .game-card) > [class*='col'],
body[data-site-diff-page='mega-fishing'] .row.g-4:has(> [class*='col'] > .fish-card) > [class*='col'] {
  width: 100%;
  max-width: none;
  padding: 0;
  counter-increment: site-rank;
}
body[data-site-diff-page='game'] .game-card,
body[data-site-diff-page='mega-fishing'] .fish-card {
  display: grid;
  grid-template-columns: 52px 74px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 96px;
  padding: 14px 18px;
  border: 0 !important;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: none;
  text-align: left;
}
body[data-site-diff-page='game'] .game-card::before,
body[data-site-diff-page='mega-fishing'] .fish-card::before {
  content: counter(site-rank, decimal-leading-zero);
  color: var(--site-mod-accent);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.06em;
}
body[data-site-diff-page='money-coming'] .row.g-4:has(> [class*='col'] > .symbol-card) {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
}
body[data-site-diff-page='money-coming'] .row.g-4:has(> [class*='col'] > .symbol-card) > [class*='col'] {
  width: auto;
  max-width: none;
  padding: 0;
}
body[data-site-diff-page='money-coming'] .symbol-card {
  height: 100%;
  min-height: 206px;
  border: 0 !important;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(20, 31, 49, 0.92), rgba(9, 17, 29, 0.96));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}
body[data-site-diff-page='betting'] .row.g-4:has(> [class*='col'] > .odds-card) {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
}
body[data-site-diff-page='betting'] .row.g-4:has(> [class*='col'] > .odds-card) > [class*='col'] {
  width: auto;
  max-width: none;
  padding: 0;
}
body[data-site-diff-page='betting'] .odds-card {
  height: 100%;
  border: 0 !important;
  border-radius: 24px;
  background: rgba(12, 20, 34, 0.9);
  box-shadow: none;
}
body[data-site-diff-page='crash'] .tip-card,
body[data-site-diff-page='lucky-neko'] .tip-card,
body[data-site-diff-page='mega-fishing'] .tip-card,
body[data-site-diff-page='money-coming'] .tip-card,
body[data-site-diff-page='wild-bandito'] .tip-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin: 0;
  padding: 22px 24px;
  border: 0 !important;
  border-radius: 22px;
  background: linear-gradient(90deg, rgba(255, 191, 34, 0.11), transparent 45%), rgba(9, 17, 29, 0.94);
  box-shadow: none;
}

@media (max-width: 991.98px) {
  body[data-site-diff-page]:not([data-site-diff-page='faq']) .row.g-4:has(> [class*='col'] > .step-box),
  body[data-site-diff-page='app'] .row.g-4:has(> [class*='col'] > .step-card),
  body[data-site-diff-page='register'] .row.g-4:has(> [class*='col'] > .step-card) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 26px;
  }
  body[data-site-diff-page]:not([data-site-diff-page='faq'])
    .row.g-4:has(> [class*='col'] > .step-box)::before,
  body[data-site-diff-page='app'] .row.g-4:has(> [class*='col'] > .step-card)::before,
  body[data-site-diff-page='register'] .row.g-4:has(> [class*='col'] > .step-card)::before {
    display: none;
  }
}
@media (max-width: 575.98px) {
  body[data-site-diff-page]:not([data-site-diff-page='faq'])
    .row.g-4:has(> [class*='col'] > .feature-card)
    .feature-card {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px 14px;
    padding: 22px 12px 22px 68px;
  }
  body[data-site-diff-page]:not([data-site-diff-page='faq'])
    .row.g-4:has(> [class*='col'] > .feature-card)
    .feature-card
    p {
    grid-column: 2;
  }
  body[data-site-diff-page]:not([data-site-diff-page='faq']) .row.g-4:has(> [class*='col'] > .step-box),
  body[data-site-diff-page='app'] .row.g-4:has(> [class*='col'] > .step-card),
  body[data-site-diff-page='register'] .row.g-4:has(> [class*='col'] > .step-card),
  body[data-site-diff-page='money-coming'] .row.g-4:has(> [class*='col'] > .symbol-card),
  body[data-site-diff-page='betting'] .row.g-4:has(> [class*='col'] > .odds-card) {
    grid-template-columns: 1fr;
  }
}
