@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&display=swap');
:root {
  --c-primary: #0c0c0c;
  --c-secondary: #151515;
  --c-accent: #e62e00;
  --c-bg: #161f27;
  --c-surface: #2b2222;
  --c-text: #eee4af;
  --c-text-muted: #e0bc0b;
  --c-btn: #f2be02;
  --c-btn-text: #fbfbf4;
  --c-border: #262121;
  --c-grad-start: #0c0c0c;
  --c-grad-end: #221a1a;
  --c-logo-text: #ffffff;
}
.ny-logo-text { color: var(--c-logo-text) !important; font-size: 28px !important; font-family: 'Black Ops One', sans-serif !important; }
[class*="_logo"] { font-family: 'Black Ops One', sans-serif !important; color: #ffffff !important; }


/* ─── Logo Icon ─── */
.ny-logo-icon {
  border-radius: 8px !important;
  font-size: 15px !important;
  font-family: 'Black Ops One', sans-serif !important;
}

.h18_header-inner {
    display: flex;
    align-items: center;
    height: 66px;
    gap: 0;
  }
  .h18_logo-area {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-right: 16px;
    border-right: 1px solid color-mix(in srgb, var(--c-text) 10%, transparent);
    margin-right: 0;
  }
  .h18_nav-scroller {
    flex: 1;
    min-width: 0;
    position: relative;
    overflow: hidden;
  }
  .h18_nav-scroller::before,
  .h18_nav-scroller::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 39px;
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.196s;
  }
  .h18_nav-scroller::before {
    left: 0;
    background: linear-gradient(to right, var(--c-primary), transparent);
  }
  .h18_nav-scroller::after {
    right: 0;
    background: linear-gradient(to left, var(--c-primary), transparent);
  }
  .h18_nav-scroll-inner {
    display: flex;
    align-items: center;
    gap: 2px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 12px;
    height: 66px;
    scroll-snap-type: x mandatory;
  }
  .h18_nav-scroll-inner::-webkit-scrollbar { display: none; }
  .h18_nav-scroll-inner a {
    color: color-mix(in srgb, var(--c-text) 70%, transparent);
    text-decoration: none;
    font-size: 0.884rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
    white-space: nowrap;
    scroll-snap-align: start;
    transition: background 0.146s, color 0.148s;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .h18_nav-scroll-inner a:hover {
    background: color-mix(in srgb, var(--c-text) 7%, transparent);
    color: var(--c-text);
  }
  .h18_nav-scroll-inner a.active {
    background: color-mix(in srgb, var(--c-accent) 12%, transparent);
    color: var(--c-accent);
    font-weight: 600;
  }
  .h18_nav-tag {
    font-size: 0.597rem;
    font-weight: 700;
    background: var(--c-accent);
    color: var(--c-bg);
    padding: 1px 5px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.039em;
  }
  .h18_cta-area {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-left: 16px;
    border-left: 1px solid color-mix(in srgb, var(--c-text) 10%, transparent);
  }
  .h18_menu-btn {
    display: none;
    background: transparent;
    border: 1px solid color-mix(in srgb, var(--c-text) 20%, transparent);
    color: var(--c-text);
    width: 39px;
    height: 38px;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  @media (max-width: 768px) {
    .h18_cta-desktop { display: none !important; }
    .h18_menu-btn { display: flex !important; }
    .h18_cta-area { border-left: none; padding-left: 8px; }
  }
  .h18_sroot { position: sticky; top: 0; z-index: 100; }
  .h18_container { max-width: 100%; padding: 0 16px; }
  .h18_cta-desktop { display: flex; align-items: center; gap: 8px; }
  .h18_mnav { flex-direction: column; align-items: flex-start; padding: 12px 0; }
  .h18_mrow { padding: 12px 0; border-top: 1px solid var(--c-border); display: flex; gap: 8px; }
  .h18_mbtn { flex: 1; justify-content: center; }

.ou36-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 362px;
  background: linear-gradient(133deg,
    color-mix(in srgb, var(--c-accent) 28%, var(--c-bg)) 0%,
    color-mix(in srgb, var(--c-accent) 8%, var(--c-bg)) 100%);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 16px 49px rgba(0,0,0,0.464);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ou36-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.ou36-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(136deg, rgba(0,0,0,0.736) 0%, rgba(0,0,0,0.424) 50%, rgba(0,0,0,0.711) 100%);
  z-index: 1;
}
.ou36-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 44px 28px;
  max-width: 739px;
}
.ou36-title {
  font-size: 32px;
  font-weight: 900;
  color: var(--c-accent, #f59e0b);
  line-height: 1.1;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.005em;
  text-shadow: 0 2px 14px rgba(0,0,0,0.458);
}
.ou36-amount-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 27px;
}
.ou36-diamond {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid var(--c-accent, #f59e0b);
  transform: rotate(44deg);
  flex-shrink: 0;
}
.ou36-amount {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.447);
}
.ou36-cta {
  display: inline-block;
  padding: 13px 38px;
  border-radius: 12px;
  background: #22c55e;
  color: #0a1f12;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(34,197,94,0.275);
  transition: box-shadow .25s ease, filter .18s;
}
.ou36-cta:hover {
  filter: brightness(1.06);
  box-shadow:
    0 0 0 4px rgba(34,197,94,0.196),
    0 10px 29px rgba(34,197,94,0.432);
}
@media (max-width: 768px) {
  .ou36-card { min-height: 347px; }
  .ou36-content { padding: 31px 18px; }
  .ou36-title { font-size: 21px; }
  .ou36-amount { font-size: 14px; }
  .ou36-amount-row { gap: 10px; flex-wrap: wrap; justify-content: center; }
}

.if39-wrap { max-width: 1120px; margin: 0 auto; }
  .if39-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
    gap: 35px;
    align-items: start;
    margin-bottom: 24px;
  }
  .if39-title { color: var(--c-text); margin: 0 0 17px; }
  .if39-p { font-size: 15px; line-height: 1.8; color: var(--c-text-muted); margin: 0 0 16px; }
  .if39-spec {
    width: 100%;
    border-collapse: collapse;
    background: var(--c-surface);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--c-accent) 22%, var(--c-border));
    box-shadow:
      0 18px 49px -26px color-mix(in srgb, var(--c-accent) 55%, transparent),
      0 0 0 1px color-mix(in srgb, var(--c-accent) 6%, transparent);
    table-layout: fixed;
  }
  .if39-spec thead th {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.138em;
    text-align: left;
    padding: 14px 18px;
    color: var(--c-bg);
    background: linear-gradient(138deg,
      var(--c-accent) 0%,
      color-mix(in srgb, var(--c-accent) 60%, var(--c-grad-end)) 100%);
    border-bottom: 1px solid color-mix(in srgb, var(--c-accent) 45%, transparent);
  }
  .if39-spec tbody th, .if39-spec tbody td {
    padding: 13px 18px;
    font-size: 14px;
    line-height: 1.5;
    vertical-align: top;
    text-align: left;
    border-bottom: 1px solid var(--c-border);
  }
  .if39-spec tbody tr:last-child th,
  .if39-spec tbody tr:last-child td { border-bottom: none; }
  .if39-spec tbody tr:nth-child(odd) {
    background: color-mix(in srgb, var(--c-accent) 3%, transparent);
  }
  .if39-spec tbody tr:hover {
    background: color-mix(in srgb, var(--c-accent) 8%, transparent);
  }
  .if39-spec tbody th {
    font-weight: 700;
    color: var(--c-text);
    width: 44%;
  }
  .if39-spec tbody th::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--c-accent);
    margin-right: 10px;
    vertical-align: 0.185em;
  }
  .if39-spec tbody td { color: var(--c-text-muted); }
  @media (max-width: 880px) {
    .if39-grid {
      grid-template-columns: 1fr;
      gap: 24px;
    }
  }
  @media (max-width: 640px) {
    .if39-spec thead th { padding: 11px 14px; }
    .if39-spec tbody th, .if39-spec tbody td { padding: 11px 14px; font-size: 13px; }
    .if39-spec tbody th::before { width: 4px; height: 4px; margin-right: 8px; }
  }

.wf74-wrap { max-width: 881px; margin: 0 auto; }
  .wf74-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 14px; overflow: hidden; }
  .wf74-strip { height: 4px; background: linear-gradient(88deg, var(--c-accent), color-mix(in srgb, var(--c-accent) 40%, transparent)); }
  .wf74-body { padding: 34px 40px; }
  .wf74-title { color: var(--c-text); margin: 0 0 20px; }
  .wf74-p { font-size: 15px; line-height: 1.85; color: var(--c-text-muted); margin: 0 0 16px; }
  .wf74-p:last-child { margin-bottom: 0; }
  @media (max-width: 600px) { .wf74-body { padding: 23px 22px; } }

.zu93-wrap { max-width: 1099px; margin: 0 auto; }
  .zu93-intro { max-width: 746px; margin-bottom: 22px; }
  .zu93-title { color: var(--c-text); margin: 0 0 12px; }
  .zu93-lead { font-size: 15px; line-height: 1.7; color: var(--c-text-muted); margin: 0; }
  .zu93-scroll { overflow-x: auto; border-radius: 14px; border: 1px solid color-mix(in srgb, var(--c-accent) 18%, var(--c-border)); box-shadow: 0 4px 22px -10px color-mix(in srgb, var(--c-accent) 30%, transparent); }
  .zu93-table { width: 100%; min-width: 722px; border-collapse: separate; border-spacing: 0; background: var(--c-surface); }
  .zu93-table thead th { background: linear-gradient(179deg, color-mix(in srgb, var(--c-accent) 28%, var(--c-surface)), var(--c-surface)); color: var(--c-text); text-align: center; padding: 19px 16px; font-size: 0.95rem; font-weight: 800; border-bottom: 2px solid var(--c-accent); }
  .zu93-table thead th:first-child { text-align: left; font-size: 0.687rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.144em; color: var(--c-text-muted); }
  .zu93-rank { display: block; font-size: 0.628rem; font-weight: 700; color: var(--c-accent); text-transform: uppercase; letter-spacing: 0.164em; margin-bottom: 4px; }
  .zu93-table tbody td { padding: 16px; font-size: 14px; line-height: 1.5; color: var(--c-text-muted); text-align: center; border-bottom: 1px solid var(--c-border); }
  .zu93-table tbody td:first-child { text-align: left; color: var(--c-text); font-weight: 700; padding-left: 22px; }
  .zu93-table tbody tr:last-child td { border-bottom: none; }
  .zu93-table tbody tr:hover td { background: color-mix(in srgb, var(--c-accent) 4%, transparent); }
  .zu93-yes, .zu93-no { display: inline-flex; align-items: center; justify-content: center; width: 25px; height: 25px; border-radius: 50%; }
  .zu93-yes { background: var(--c-accent); color: var(--c-bg); }
  .zu93-no { background: color-mix(in srgb, var(--c-text-muted) 22%, transparent); color: var(--c-text-muted); }
  .zu93-yes svg, .zu93-no svg { width: 14px; height: 14px; }
  .zu93-val { font-weight: 700; color: var(--c-text); }

.bt75-wrap { max-width: 838px; margin: 0 auto; }
  .bt75-eyebrow { font-size: 0.717rem; font-weight: 700; color: var(--c-accent); text-transform: uppercase; letter-spacing: 0.162em; margin-bottom: 10px; }
  .bt75-title { color: var(--c-text); margin: 0 0 19px; }
  .bt75-p { font-size: 15px; line-height: 1.85; color: var(--c-text-muted); margin: 0 0 16px; }
  .bt75-p:last-child { margin-bottom: 0; }

.aq48-wrap { max-width: 1001px; margin: 0 auto; }
  .aq48-outer {
    background: var(--c-surface);
    border: 1px solid var(--c-border);
    border-radius: 18px;
    padding: 28px 30px 30px;
    box-shadow: 0 16px 43px -21px rgba(0,0,0,0.278);
  }
  .aq48-title { color: var(--c-text); margin: 0 0 12px; }
  .aq48-intro { font-size: 14px; line-height: 1.7; color: var(--c-text-muted); margin: 0 0 18px; }

  .aq48-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 0 0 18px; }
  .aq48-card {
    border-radius: 12px;
    padding: 18px 20px 20px;
    background: linear-gradient(179deg,
      color-mix(in srgb, var(--c-accent) 12%, var(--c-bg)) 0%,
      var(--c-bg) 100%);
    color: #fff;
  }
  .aq48-card-h3 { color: var(--c-accent); font-size: 14px; font-weight: 800; line-height: 1.3; margin: 0 0 8px; text-transform: uppercase; letter-spacing: 0.059em; }
  .aq48-card-p { font-size: 13px; line-height: 1.55; color: rgba(255,255,255,0.821); margin: 0; }

  .aq48-mid-p { font-size: 14px; line-height: 1.7; color: var(--c-text-muted); margin: 0 0 18px; }

  .aq48-panel {
    border-radius: 14px; padding: 22px 24px 25px;
    background: linear-gradient(132deg,
      color-mix(in srgb, var(--c-accent) 14%, var(--c-bg)) 0%,
      var(--c-bg) 100%);
    border: 1px solid color-mix(in srgb, var(--c-accent) 22%, transparent);
    box-shadow: 0 18px 53px -28px color-mix(in srgb, var(--c-accent) 35%, transparent);
    color: #fff; margin: 0 0 22px;
  }
  .aq48-panel-h3 { color: #fff; font-size: 17px; font-weight: 800; line-height: 1.3; margin: 0 0 8px; }
  .aq48-panel-lead { font-size: 14px; line-height: 1.65; color: rgba(255,255,255,0.76); margin: 0 0 16px; }
  .aq48-panel-foot { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,0.764); margin: 16px 0 0; }

  .aq48-bullets { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .aq48-bullet { display: flex; align-items: center; gap: 12px; padding: 10px 14px 10px 12px; border-radius: 10px; background: rgba(255,255,255,0.047); border: 1px solid rgba(255,255,255,0.087); }
  .aq48-bullet-icon {
    flex: 0 0 28px; width: 28px; height: 27px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    background: var(--c-accent); color: var(--c-bg);
  }
  .aq48-bullet-icon svg { width: 14px; height: 14px; }
  .aq48-bullet-text { flex: 1; color: rgba(255,255,255,0.915); font-size: 13px; line-height: 1.4; font-weight: 600; }

  .aq48-h3-light { color: var(--c-text); font-size: 19px; font-weight: 800; line-height: 1.3; margin: 0 0 8px; }
  .aq48-p { font-size: 14px; line-height: 1.7; color: var(--c-text-muted); margin: 0 0 19px; }

  .aq48-table {
    width: 100%; border-collapse: separate; border-spacing: 0;
    background: var(--c-bg);
    border: 1px solid color-mix(in srgb, var(--c-accent) 35%, transparent);
    border-radius: 12px; overflow: hidden;
    margin: 0 0 19px; table-layout: fixed;
  }
  .aq48-table th, .aq48-table td { padding: 14px 18px; font-size: 13px; line-height: 1.45; text-align: left; vertical-align: top; }
  .aq48-table thead th {
    font-size: 11px; font-weight: 800; letter-spacing: 0.117em; text-transform: uppercase;
    color: var(--c-bg);
    background: var(--c-accent);
    padding-top: 12px; padding-bottom: 12px;
  }
  .aq48-table tbody td { color: var(--c-text-muted); border-bottom: 1px solid color-mix(in srgb, var(--c-text) 6%, transparent); }
  .aq48-table tbody tr:last-child td { border-bottom: none; }
  .aq48-table tbody tr:nth-child(even) td { background: color-mix(in srgb, var(--c-text) 3%, transparent); }
  .aq48-table tbody tr:hover td { background: color-mix(in srgb, var(--c-accent) 7%, transparent); }

  .aq48-cta-wrap { margin-top: 18px; }
  .aq48-cta {
    display: inline-block; padding: 12px 29px; border-radius: 1008px;
    background: var(--c-accent); color: var(--c-bg);
    font-size: 13px; font-weight: 800; text-decoration: none;
    text-transform: uppercase; letter-spacing: 0.099em;
    box-shadow: 0 8px 22px -8px color-mix(in srgb, var(--c-accent) 75%, transparent);
    transition: transform .18s ease, box-shadow .25s ease, filter .18s;
  }
  .aq48-cta:hover {
    filter: brightness(1.06); transform: translateY(-1px);
    box-shadow:
      0 0 0 4px color-mix(in srgb, var(--c-accent) 22%, transparent),
      0 12px 28px -8px color-mix(in srgb, var(--c-accent) 80%, transparent);
  }

  @media (max-width: 768px) {
    .aq48-cards { grid-template-columns: 1fr; }
    .aq48-bullets { grid-template-columns: 1fr; }
    .aq48-table th, .aq48-table td { padding: 11px 12px; font-size: 12px; }
  }
  @media (max-width: 640px) {
    .aq48-outer { padding: 22px 18px; border-radius: 14px; }
    .aq48-panel { padding: 18px 16px; border-radius: 12px; }
  }

.wp10-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  min-height: 384px;
  background: linear-gradient(137deg,
    color-mix(in srgb, var(--c-accent) 28%, var(--c-bg)) 0%,
    color-mix(in srgb, var(--c-accent) 8%, var(--c-bg)) 100%);
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: 0 18px 51px rgba(0,0,0,0.497);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 36px;
}
.wp10-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.wp10-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(93deg, rgba(0,0,0,0.503) 0%, rgba(0,0,0,0.172) 60%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.wp10-glass {
  position: relative;
  z-index: 2;
  max-width: 530px;
  padding: 32px 32px;
  border-radius: 18px;
  background: rgba(15, 17, 23, 0.538);
  border: 1px solid rgba(255,255,255,0.136);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 12px 35px rgba(0,0,0,0.415);
}
.wp10-title {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.331);
}
.wp10-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.854);
  line-height: 1.55;
  margin: 0 0 24px;
}
.wp10-cta-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
/* Variant 05 signature: authentic black "App Store / Google Play" badges
   with two-line label (small "Download on" / big "App Store"). */
.wp10-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 10px 18px;
  border-radius: 10px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.196);
  transition: border-color .2s ease, box-shadow .25s ease;
  min-height: 49px;
  box-sizing: border-box;
}
.wp10-badge:hover {
  border-color: rgba(255,255,255,0.363);
  box-shadow:
    0 0 0 3px rgba(255,255,255,0.148),
    0 8px 22px rgba(255,255,255,0.188);
}
.wp10-badge svg { flex-shrink: 0; }
.wp10-badge-label {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-align: left;
}
.wp10-badge-label small {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.78;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.wp10-badge-label-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  .wp10-card {
    min-height: 356px;
    padding: 23px;
    justify-content: center;
  }
  .wp10-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.323) 0%, rgba(0,0,0,0.706) 100%);
  }
  .wp10-glass { padding: 24px 22px; max-width: 100%; }
  .wp10-title { font-size: 21px; }
  .wp10-badge { padding: 8px 14px; min-height: 44px; }
  .wp10-badge-label-text { font-size: 14px; }
}

.ju56-wrap { max-width: 1054px; margin: 0 auto; display: flex; flex-direction: column; gap: 21px; }
  .ju56-intro { max-width: 799px; }
  .ju56-title { color: var(--c-text); margin: 0 0 14px; }
  .ju56-lead { font-size: 15px; line-height: 1.75; color: var(--c-text-muted); margin: 0; }
  .ju56-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .ju56-card { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 14px; padding: 26px 30px; }
  .ju56-tag { display: inline-block; font-size: 0.657rem; font-weight: 800; color: var(--c-accent); text-transform: uppercase; letter-spacing: 0.144em; margin-bottom: 10px; }
  .ju56-h3 { color: var(--c-text); margin: 0 0 12px; font-size: 1.023rem; font-weight: 700; }
  .ju56-p { font-size: 15px; line-height: 1.8; color: var(--c-text-muted); margin: 0; }
  @media (max-width: 880px) { .ju56-row { grid-template-columns: 1fr; } }

.eg23-wrap { max-width: 1075px; margin: 0 auto; display: flex; flex-direction: column; gap: 24px; }
  .eg23-intro { max-width: 822px; text-align: center; margin: 0 auto; }
  .eg23-title { color: var(--c-text); margin: 0 0 14px; }
  .eg23-lead { font-size: 15px; line-height: 1.75; color: var(--c-text-muted); margin: 0; }
  .eg23-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .eg23-col { background: var(--c-surface); border: 1px solid var(--c-border); border-radius: 16px; padding: 32px 29px 27px; text-align: center; }
  .eg23-thumb { width: 62px; height: 65px; margin: 0 auto 16px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
  .eg23-thumb-pro { background: color-mix(in srgb, var(--c-accent) 18%, transparent); color: var(--c-accent); }
  .eg23-thumb-con { background: color-mix(in srgb, var(--c-text-muted) 22%, transparent); color: var(--c-text-muted); }
  .eg23-thumb svg { width: 32px; height: 32px; stroke-width: 2; }
  .eg23-h3 { color: var(--c-text); margin: 0 0 18px; font-size: 1.052rem; font-weight: 700; }
  .eg23-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; text-align: left; }
  .eg23-item { font-size: 14px; line-height: 1.6; color: var(--c-text-muted); padding-left: 16px; position: relative; }
  .eg23-item::before { content: ''; position: absolute; left: 0; top: 0.565em; width: 6px; height: 6px; border-radius: 50%; background: var(--c-accent); }
  .eg23-col-con .eg23-item::before { background: var(--c-text-muted); opacity: 0.6; }
  @media (max-width: 768px) { .eg23-row { grid-template-columns: 1fr; } }

.qg22-wrap { max-width: 807px; margin: 0 auto; }
  .qg22-eyebrow { font-size: 0.707rem; font-weight: 700; color: var(--c-accent); text-transform: uppercase; letter-spacing: 0.159em; margin-bottom: 10px; }
  .qg22-title { color: var(--c-text); margin: 0 0 20px; }
  .qg22-p { font-size: 15px; line-height: 1.85; color: var(--c-text-muted); margin: 0 0 16px; }
  .qg22-p:last-child { margin-bottom: 0; }

.sa95-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 361px;
  background: linear-gradient(137deg,
    color-mix(in srgb, var(--c-accent) 28%, var(--c-bg)) 0%,
    color-mix(in srgb, var(--c-accent) 8%, var(--c-bg)) 100%);
  border: 1px solid rgba(255,255,255,0.033);
  box-shadow: 0 16px 51px rgba(0,0,0,0.451);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 41px;
}
.sa95-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.sa95-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(91deg, rgba(0,0,0,0.533) 0%, rgba(0,0,0,0.148) 55%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.sa95-glass {
  position: relative;
  z-index: 2;
  max-width: 450px;
  padding: 32px 32px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--c-primary, #1e3a8a) 70%, rgba(0,0,0,0.411));
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 12px 35px rgba(0,0,0,0.406);
}
.sa95-title {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.sa95-amount {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
  margin: 0 0 24px;
}
.sa95-cta {
  display: inline-block;
  padding: 13px 36px;
  border-radius: 986px;
  background: var(--c-accent, #3b82f6);
  color: var(--c-bg, #fff);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.277);
  transition: box-shadow .25s ease, filter .18s;
}
.sa95-cta:hover {
  filter: brightness(1.06);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--c-accent, #3b82f6) 22%, transparent),
    0 10px 28px color-mix(in srgb, var(--c-accent, #3b82f6) 38%, transparent);
}
@media (max-width: 768px) {
  .sa95-card {
    min-height: 349px;
    padding: 24px;
    justify-content: center;
  }
  .sa95-overlay {
    background: linear-gradient(177deg, rgba(0,0,0,0.323) 0%, rgba(0,0,0,0.668) 100%);
  }
  .sa95-glass { padding: 24px 22px; max-width: 100%; }
  .sa95-title { font-size: 23px; }
}

/* ── Centered footer with a deliberate visual hierarchy: ─────────
     1) Logo — brand identity
     2) Tagline — short pitch (optional, truncates cleanly)
     3) <divider>
     4) Primary nav — multipage links (Bonuses / Games / Reviews), same
        weight/size as header nav
     5) Legal nav — Terms / Privacy / Cookies, smaller + muted + dot
        separators so they read as "fine print" not top-level nav
     6) <divider>
     7) Copyright row — © year · brand · play responsibly · 18+ badge

     Every block is symmetric around the horizontal centre and uses
     consistent 14-18 px vertical rhythm. When a section's placeholder
     resolves to nothing the `:empty` rule hides the whole block AND
     the divider above it so we never ship an orphan line. */
  .bc42-root { text-align: center; padding: 44px 0 29px; }
  .bc42-logo-wrap { display: flex; justify-content: center; margin-bottom: 12px; }

  .bc42-tagline {
    font-size: 0.869rem; color: var(--c-text-muted);
    margin: 0 auto 22px; max-width: 451px; line-height: 1.55;
  }

  .bc42-divider {
    max-width: 275px; height: 1px;
    background: var(--c-border); opacity: .6;
    margin: 0 auto;
  }

  /* Primary nav — same visual weight as the header's top-level links. */
  .bc42-nav-primary {
    display: flex; justify-content: center; flex-wrap: wrap;
    gap: 29px;
    margin: 20px auto 0;
  }
  .bc42-nav-primary:empty { display: none; }
  .bc42-nav-primary a {
    font-size: 0.924rem; font-weight: 500;
    color: var(--c-text); text-decoration: none;
    transition: color .2s;
  }
  .bc42-nav-primary a:hover { color: var(--c-accent); }

  /* Legal nav — explicitly softer: smaller, muted, dot separators
     between items so the eye parses it as compliance fine-print, not
     primary navigation. */
  .bc42-nav-legal {
    display: flex; justify-content: center; flex-wrap: wrap;
    align-items: center; gap: 0;
    margin: 10px auto 0;
    font-size: 0.778rem;
    color: var(--c-text-muted);
  }
  .bc42-nav-legal:empty { display: none; }
  .bc42-nav-legal a {
    color: inherit; text-decoration: none;
    transition: color .2s;
    padding: 2px 0;
  }
  .bc42-nav-legal a:hover { color: var(--c-accent); }
  /* Pseudo-element separator — `a + a::before` ensures the dot only
     appears BETWEEN links (never leading/trailing), and its symmetric
     `margin: 0 14px` guarantees equal whitespace on both sides of
     every dot regardless of which links ended up in the row. Earlier
     attempt used column-gap + negative-left + margin-right and the
     dot slid off-centre; this version is single-source-of-truth. */
  .bc42-nav-legal a + a::before {
    content: '·';
    margin: 0 14px;
    opacity: .5;
    color: var(--c-text-muted);
  }

  .bc42-payments {
    justify-content: center;
    margin-top: 18px;
  }
  .bc42-payments:empty { display: none; }

  .bc42-bottom {
    display: inline-flex; justify-content: center; align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 23px;
    font-size: 0.766rem;
    color: var(--c-text-muted);
  }
  .bc42-bottom-sep {
    width: 3px; height: 3px; border-radius: 50%;
    background: currentColor; opacity: .4;
    display: inline-block;
  }

/* ── csb mobile-header policy (appended last, wins source-order) ── */
@media (max-width: 768px) {
  body [class*="cta-desktop"],
  body [class*="actions-desktop"],
  body [class*="btns-desktop"],
  body [class*="cta-wrap"],
  body [class*="login-actions"],
  body [class*="strip-actions"] {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }
  body [class*="cta-desktop"] .ny-btn,
  body [class*="actions-desktop"] .ny-btn,
  body [class*="btns-desktop"] .ny-btn,
  body [class*="cta-wrap"] .ny-btn,
  body [class*="cta-desktop"] button,
  body [class*="actions-desktop"] button,
  body [class*="btns-desktop"] button,
  body [class*="cta-wrap"] button,
  body [class*="cta-desktop"] a,
  body [class*="actions-desktop"] a,
  body [class*="btns-desktop"] a,
  body [class*="cta-wrap"] a {
    padding: 7px 12px !important;
    font-size: 11px !important;
  }
}
