@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;
}
.nk-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 ─── */
.nk-logo-icon {
  border-radius: 8px !important;
  font-size: 15px !important;
  font-family: 'Black Ops One', sans-serif !important;
}

.h15_root {
    background: var(--c-primary);
    border-top: 3px solid var(--c-accent);
    border-bottom: 1px solid color-mix(in srgb, var(--c-text) 8%, transparent);
    position: relative;
    top: auto;
    z-index: auto;
  }
  .h15_sroot { position: sticky; top: 0; z-index: 100; }
  .h15_cta-desktop { display: flex; align-items: center; gap: 8px; }
  .h15_mnav { flex-direction: column; align-items: flex-start; padding: 12px 0; }
  .h15_mrow { padding: 12px 0; border-top: 1px solid var(--c-border); display: flex; gap: 8px; }
  .h15_mbtn { flex: 1; justify-content: center; }
  .h15_nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
  }
  .h15_nav a {
    color: color-mix(in srgb, var(--c-text) 75%, transparent);
    text-decoration: none;
    font-size: 0.881rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 6px;
    transition: background 0.147s, color 0.149s;
  }
  .h15_nav a:hover {
    background: color-mix(in srgb, var(--c-text) 7%, transparent);
    color: var(--c-text);
  }
  .h15_cta {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .h15_menu-btn {
    display: none;
    background: transparent;
    border: 1px solid color-mix(in srgb, var(--c-text) 20%, transparent);
    color: var(--c-text);
    width: 38px;
    height: 38px;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }
  @media (max-width: 768px) {
    .h15_nav { display: none; }
    .h15_cta-desktop { display: none !important; }
    .h15_menu-btn { display: flex !important; }
  }

.lp82-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 350px;
  background: linear-gradient(136deg,
    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.032);
  box-shadow: 0 18px 50px rgba(0,0,0,0.448);
  display: flex;
  align-items: center;
}
.lp82-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.lp82-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.887) 0%, rgba(0,0,0,0.628) 35%, rgba(0,0,0,0.176) 70%, rgba(0,0,0,0.04) 100%);
  z-index: 1;
}
.lp82-content {
  position: relative; z-index: 2;
  padding: 49px 50px;
  max-width: 615px;
}
.lp82-title {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 16px;
  letter-spacing: -0.015em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.54);
}
.lp82-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.852);
  line-height: 1.55;
  margin: 0 0 28px;
  max-width: 480px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.447);
}
.lp82-cta-row {
  display: flex; gap: 12px;
  flex-wrap: nowrap;
  align-items: stretch;
}
/* Variant 02 signature: clean solid-accent rectangular buttons,
   icon on the left, bold uppercase text. Hover halo borrows the brand
   accent so the glow always matches the button colour. */
.lp82-cta {
  display: inline-flex; align-items: center;
  gap: 12px;
  padding: 15px 26px;
  border-radius: 12px;
  background: var(--c-accent, #f59e0b);
  color: var(--c-bg, var(--c-bg));
  font-size: 13px; font-weight: 800;
  letter-spacing: 0.039em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: box-shadow .25s ease, filter .18s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.239);
}
.lp82-cta:hover {
  filter: brightness(1.04);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--c-accent, #f59e0b) 22%, transparent),
    0 10px 28px color-mix(in srgb, var(--c-accent, #f59e0b) 38%, transparent),
    0 6px 18px rgba(0,0,0,0.269);
}
.lp82-cta svg { flex-shrink: 0; }
@media (max-width: 768px) {
  .lp82-card { min-height: 319px; }
  .lp82-overlay {
    background: linear-gradient(184deg, rgba(0,0,0,0.467) 0%, rgba(0,0,0,0.81) 100%);
  }
  .lp82-content { padding: 33px 24px; max-width: 100%; }
  .lp82-title { font-size: 25px; }
  .lp82-cta-row { flex-wrap: wrap; }
  .lp82-cta { padding: 13px 16px; font-size: 11px; }
}

.pn25-wrap { max-width: 709px; margin: 0 auto; text-align: center; }
  .pn25-title { color: var(--c-text); margin: 0 0 23px; }
  .pn25-p { font-size: 16px; line-height: 1.85; color: var(--c-text-muted); margin: 0 0 16px; text-align: left; }
  .pn25-p:last-child { margin-bottom: 0; }

.by39-wrap { max-width: 868px; margin: 0 auto; }
  .by39-title { color: var(--c-text); margin: 0 0 22px; }
  .by39-p { font-size: 15px; line-height: 1.8; color: var(--c-text-muted); margin: 0 0 16px; }
  .by39-list { margin: 28px 0; display: grid; gap: 10px; }
  .by39-row {
    display: grid;
    grid-template-columns: 236px 1fr;
    gap: 22px;
    padding: 16px 21px;
    border-radius: 14px;
    background: linear-gradient(135deg,
      var(--c-surface) 0%,
      color-mix(in srgb, var(--c-accent) 5%, var(--c-surface)) 100%);
    border: 1px solid var(--c-border);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
    overflow: hidden;
  }
  .by39-row:hover {
    border-color: color-mix(in srgb, var(--c-accent) 35%, var(--c-border));
    transform: translateX(3px);
    box-shadow: 0 10px 31px -16px color-mix(in srgb, var(--c-accent) 50%, transparent);
  }
  .by39-label {
    font-size: 13px;
    font-weight: 800;
    color: var(--c-accent);
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.079em;
  }
  .by39-value {
    font-size: 14px;
    line-height: 1.55;
    color: var(--c-text-muted);
  }
  @media (max-width: 640px) {
    .by39-row {
      grid-template-columns: 1fr;
      gap: 6px;
      padding: 14px 16px;
    }
    .by39-label { font-size: 11px; }
  }

.xc12-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 361px;
  background: linear-gradient(132deg,
    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.055);
  box-shadow: 0 16px 51px rgba(0,0,0,0.481);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px;
}
.xc12-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.xc12-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.467) 0%, rgba(0,0,0,0.067) 55%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.xc12-glass {
  position: relative;
  z-index: 2;
  max-width: 443px;
  padding: 32px 33px;
  border-radius: 14px;
  background: color-mix(in srgb, var(--c-primary, #1e3a8a) 70%, rgba(0,0,0,0.429));
  border: 1px solid rgba(255,255,255,0.124);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 12px 37px rgba(0,0,0,0.404);
}
.xc12-title {
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.xc12-amount {
  font-size: 14px;
  color: rgba(255,255,255,0.796);
  line-height: 1.5;
  margin: 0 0 24px;
}
.xc12-cta {
  display: inline-block;
  padding: 13px 36px;
  border-radius: 1020px;
  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.347);
  transition: box-shadow .25s ease, filter .18s;
}
.xc12-cta:hover {
  filter: brightness(1.06);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--c-accent, #3b82f6) 22%, transparent),
    0 10px 29px color-mix(in srgb, var(--c-accent, #3b82f6) 38%, transparent);
}
@media (max-width: 768px) {
  .xc12-card {
    min-height: 335px;
    padding: 25px;
    justify-content: center;
  }
  .xc12-overlay {
    background: linear-gradient(184deg, rgba(0,0,0,0.379) 0%, rgba(0,0,0,0.669) 100%);
  }
  .xc12-glass { padding: 24px 22px; max-width: 100%; }
  .xc12-title { font-size: 22px; }
}

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

.zm84-wrap { max-width: 1068px; margin: 0 auto; display: flex; flex-direction: column; gap: 21px; }
  .zm84-intro { max-width: 799px; }
  .zm84-title { color: var(--c-text); margin: 0 0 14px; }
  .zm84-lead { font-size: 15px; line-height: 1.75; color: var(--c-text-muted); margin: 0; }
  .zm84-row { display: grid; grid-template-columns: 1fr 1fr; gap: 37px; }
  .zm84-col-h { font-size: 0.712rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.16em; margin: 0 0 14px; }
  .zm84-col-h-pro { color: var(--c-accent); }
  .zm84-col-h-con { color: var(--c-text); }
  .zm84-stack { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
  .zm84-pill { display: flex; align-items: flex-start; gap: 10px; padding: 12px 16px; border-radius: 975px; font-size: 14px; line-height: 1.45; }
  .zm84-pill-pro { background: color-mix(in srgb, var(--c-accent) 14%, var(--c-surface)); color: var(--c-text); border: 1px solid color-mix(in srgb, var(--c-accent) 30%, transparent); }
  .zm84-pill-con { background: var(--c-surface); color: var(--c-text-muted); border: 1px dashed color-mix(in srgb, var(--c-text-muted) 30%, var(--c-border)); }
  .zm84-pill svg { flex-shrink: 0; width: 16px; height: 16px; margin-top: 1px; }
  .zm84-pill-pro svg { color: var(--c-accent); }
  .zm84-pill-con svg { color: var(--c-text-muted); }
  @media (max-width: 768px) { .zm84-row { grid-template-columns: 1fr; gap: 24px; } }

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

.oc60-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  min-height: 374px;
  background: linear-gradient(138deg,
    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.052);
  box-shadow: 0 18px 51px rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 36px;
}
.oc60-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.oc60-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(91deg, rgba(0,0,0,0.543) 0%, rgba(0,0,0,0.109) 60%, rgba(0,0,0,0) 100%);
  z-index: 1;
}
.oc60-glass {
  position: relative;
  z-index: 2;
  max-width: 535px;
  padding: 33px 33px;
  border-radius: 18px;
  background: rgba(15, 17, 23, 0.543);
  border: 1px solid rgba(255,255,255,0.084);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  box-shadow: 0 12px 36px rgba(0,0,0,0.371);
}
.oc60-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.337);
}
.oc60-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.867);
  line-height: 1.55;
  margin: 0 0 24px;
}
.oc60-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"). */
.oc60-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.203);
  transition: border-color .2s ease, box-shadow .25s ease;
  min-height: 49px;
  box-sizing: border-box;
}
.oc60-badge:hover {
  border-color: rgba(255,255,255,0.338);
  box-shadow:
    0 0 0 3px rgba(255,255,255,0.088),
    0 8px 22px rgba(255,255,255,0.12);
}
.oc60-badge svg { flex-shrink: 0; }
.oc60-badge-label {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-align: left;
}
.oc60-badge-label small {
  font-size: 9px;
  font-weight: 500;
  opacity: 0.78;
  letter-spacing: 0.059em;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.oc60-badge-label-text {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  .oc60-card {
    min-height: 365px;
    padding: 23px;
    justify-content: center;
  }
  .oc60-overlay {
    background: linear-gradient(176deg, rgba(0,0,0,0.333) 0%, rgba(0,0,0,0.727) 100%);
  }
  .oc60-glass { padding: 25px 22px; max-width: 100%; }
  .oc60-title { font-size: 22px; }
  .oc60-badge { padding: 8px 14px; min-height: 45px; }
  .oc60-badge-label-text { font-size: 14px; }
}

.fg71-wrap { max-width: 997px; margin: 0 auto; display: grid; grid-template-columns: 1fr 263px; gap: 48px; align-items: start; }
  .fg71-body { min-width: 0; }
  .fg71-title { color: var(--c-text); margin: 0 0 22px; }
  .fg71-p { font-size: 15px; line-height: 1.85; color: var(--c-text-muted); margin: 0 0 16px; }
  .fg71-p:last-child { margin-bottom: 0; }
  .fg71-aside { padding: 24px 22px; background: color-mix(in srgb, var(--c-accent) 8%, var(--c-surface)); border-left: 3px solid var(--c-accent); border-radius: 0 10px 10px 0; font-size: 16px; line-height: 1.55; color: var(--c-text); font-style: italic; }
  @media (max-width: 880px) { .fg71-wrap { grid-template-columns: 1fr; gap: 28px; } }

.ss85-wrap { max-width: 1113px; margin: 0 auto; }
  .ss85-intro { max-width: 777px; margin-bottom: 22px; }
  .ss85-title { color: var(--c-text); margin: 0 0 12px; }
  .ss85-lead { font-size: 15px; line-height: 1.7; color: var(--c-text-muted); margin: 0; }
  .ss85-scroll { overflow-x: auto; border-radius: 14px; border: 1px solid var(--c-border); }
  .ss85-table { width: 100%; min-width: 778px; border-collapse: separate; border-spacing: 0; background: var(--c-surface); }
  .ss85-table thead th { background: linear-gradient(137deg, var(--c-grad-start), var(--c-surface)); color: var(--c-text); text-align: left; padding: 18px 20px; font-size: 0.685rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; border-bottom: 1px solid var(--c-border); vertical-align: bottom; }
  .ss85-table thead th.ss85-best { background: linear-gradient(135deg, var(--c-accent), color-mix(in srgb, var(--c-accent) 60%, var(--c-grad-end))); color: var(--c-bg); padding-top: 14px; }
  .ss85-best-badge { display: inline-block; background: var(--c-bg); color: var(--c-accent); font-size: 0.596rem; font-weight: 800; padding: 3px 9px; border-radius: 4px; letter-spacing: 0.143em; margin-bottom: 8px; }
  .ss85-best-title { display: block; }
  .ss85-table tbody td { padding: 16px 20px; font-size: 15px; line-height: 1.55; color: var(--c-text-muted); border-bottom: 1px solid var(--c-border); }
  .ss85-table tbody td.ss85-best-cell { background: color-mix(in srgb, var(--c-accent) 8%, transparent); color: var(--c-text); font-weight: 600; border-left: 1px solid color-mix(in srgb, var(--c-accent) 28%, transparent); border-right: 1px solid color-mix(in srgb, var(--c-accent) 28%, transparent); }
  .ss85-table tbody tr:last-child td { border-bottom: none; }
  .ss85-table tbody tr:last-child td.ss85-best-cell { border-bottom: 2px solid var(--c-accent); }
  .ss85-table tbody td:first-child { color: var(--c-text); font-weight: 700; }
  .ss85-num { color: var(--c-accent); font-weight: 800; font-variant-numeric: tabular-nums; }
  .ss85-best-cell .ss85-num { color: var(--c-bg); background: var(--c-accent); padding: 2px 8px; border-radius: 4px; }

.ft12_footer { background: var(--c-primary); border-top: 1px solid var(--c-border); }
/* Top row — single "command bar": [logo] [nav+extra links] [payments] [18+].
   Payments migrated up from the bottom row so the entire actionable
   surface (links + payments + compliance badge) lives on one line; the
   bottom row shrinks to pure copyright + "play responsibly" text.
   `margin-left: auto` on the payments block pushes it (and the 18+
   badge right after it) to the right edge while the nav grows to fill
   whatever gap is left between logo and that group. */
.ft12_top { display: flex; align-items: center; gap: 0.511rem 1.233rem; padding: 14px 0; flex-wrap: wrap; }

/* Nav — primary multipage links followed by legal/extra links, both
   inline with pipe separators. `:empty` collapses the whole row on
   landing sites without any of those placeholders producing links. */
.ft12_nav { display: flex; align-items: center; gap: 0; flex-wrap: wrap; flex: 1 1 auto; min-width: 0; }
.ft12_nav:empty { display: none; }
.ft12_nav a { color: var(--c-text-muted); font-size: 0.773rem; text-decoration: none; padding: 0.252rem 0.761rem; border-right: 1px solid var(--c-border); transition: color 0.195s; white-space: nowrap; }
.ft12_nav a:first-child { padding-left: 0; }
.ft12_nav a:last-child { border-right: none; }
.ft12_nav a:hover { color: var(--c-accent); }

/* Payments inline with the nav row — smaller than default so they read
   as a compliance strip rather than a marketing showcase. Scoped
   override of .nk-pay-logo: height trimmed from 22→16 px, padding
   squeezed so ten pill badges still fit next to a full nav bar. */
.ft12_pay { display: flex; flex-wrap: wrap; align-items: center; gap: 5px; margin-left: auto; }
.ft12_pay:empty { display: none; }
.ft12_pay .nk-pay-logo {
  height: 20px;
  max-width: 49px;
  padding: 4px 8px;
  border-radius: 5px;
}

.ft12_badge_row { display: flex; gap: 0.5rem; align-items: center; flex-shrink: 0; }

/* Bottom row — now just a thin compliance line (copyright +
   "play responsibly"). Centre-aligned for balance regardless of how
   wide the text happens to be after brand substitution. */
.ft12_bottom {
  border-top: 1px solid var(--c-border);
  padding: 10px 0;
  display: flex; align-items: center; justify-content: center;
  gap: 6px 21px; flex-wrap: wrap;
}
.ft12_legal { color: var(--c-text-muted); font-size: 0.728rem; display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; }

@media (max-width: 768px) {
  .ft12_top { gap: 0.513rem 0.738rem; }
  .ft12_pay { margin-left: 0; width: 100%; justify-content: flex-start; }
  .ft12_badge_row { margin-left: auto; }
}
@media (max-width: 600px) {
  .ft12_top { flex-direction: column; align-items: flex-start; }
  .ft12_pay { justify-content: flex-start; }
  .ft12_badge_row { margin-left: 0; }
  .ft12_nav { flex: 1 1 100%; }
}

/* ── 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"] .nk-btn,
  body [class*="actions-desktop"] .nk-btn,
  body [class*="btns-desktop"] .nk-btn,
  body [class*="cta-wrap"] .nk-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;
  }
}
