/* ==========================================================================
   20Bet MULTI1 - "Floodlit" broadcast dossier
   A deliberately different shell from every earlier 20Bet build:
   no side rails, a live ticker, numbered sections on a left spine,
   and chamfered corners instead of rounded ones.
   Prefix: bx-
   ========================================================================== */

:root {
  /* ground - warm near-black, not the navy the older builds used */
  --bx-bg:        #0d0c12;
  --bx-bg-2:      #121017;
  --bx-panel:     #17151f;
  --bx-panel-2:   #1e1b27;
  --bx-panel-3:   #262231;
  --bx-well:      #0a090e;

  /* lines */
  --bx-line:      rgba(255, 255, 255, .085);
  --bx-line-2:    rgba(255, 255, 255, .16);
  --bx-line-3:    rgba(255, 255, 255, .28);

  /* ink */
  --bx-tx:        #e9e7f0;
  --bx-tx-2:      #a8a4b8;
  --bx-tx-3:      #736f86;

  /* signal */
  --bx-or:        #ff6a13;
  --bx-or-d:      #d9530a;
  --bx-or-soft:   rgba(255, 106, 19, .14);
  --bx-lime:      #c8f751;
  --bx-lime-d:    #9bc72e;
  --bx-lime-soft: rgba(200, 247, 81, .13);
  --bx-vio:       #7b61ff;
  --bx-vio-soft:  rgba(123, 97, 255, .16);
  --bx-red:       #ff5a5a;

  /* metrics */
  --bx-tick-h:    34px;
  --bx-head-h:    66px;
  --bx-wrap:      1220px;
  --bx-col:       880px;
  --bx-n:         14px;             /* chamfer size */

  --bx-font: "Segoe UI", Roboto, "Helvetica Neue", -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --bx-mono: ui-monospace, "Cascadia Mono", "SF Mono", Consolas, "Roboto Mono", "DejaVu Sans Mono", monospace;

  --bx-ease: cubic-bezier(.4, 0, .2, 1);
  --bx-out:  cubic-bezier(.16, 1, .3, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--bx-head-h) + 22px);
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  max-width: 100%;
  background: var(--bx-bg);
  color: var(--bx-tx);
  font-family: var(--bx-font);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; border: 0; }
a { color: var(--bx-lime); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; color: inherit; }

::selection { background: var(--bx-or); color: #fff; }

:focus-visible {
  outline: 2px solid var(--bx-lime);
  outline-offset: 2px;
}

.bx-sr {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.bx-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--bx-or);
  color: #fff;
  padding: 10px 18px;
  font-weight: 700;
}
.bx-skip:focus { left: 8px; top: 8px; }

.bx-wrap {
  width: 100%;
  max-width: var(--bx-wrap);
  margin: 0 auto;
  padding: 0 20px;
}

/* the signature chamfer: a clipped top-right + bottom-left corner */
.bx-cut {
  clip-path: polygon(
    0 0,
    calc(100% - var(--bx-n)) 0,
    100% var(--bx-n),
    100% 100%,
    var(--bx-n) 100%,
    0 calc(100% - var(--bx-n))
  );
}

/* ==========================================================================
   1. Ticker
   ========================================================================== */
.bx-ticker {
  position: relative;
  z-index: 60;
  height: var(--bx-tick-h);
  background: var(--bx-well);
  border-bottom: 1px solid var(--bx-line);
  overflow: hidden;
}

.bx-ticker__in {
  display: flex;
  align-items: stretch;
  height: 100%;
  max-width: 100%;
}

.bx-ticker__live {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 14px;
  background: var(--bx-or);
  color: #fff;
  font: 700 11px/1 var(--bx-font);
  letter-spacing: .16em;
  text-transform: uppercase;
  clip-path: polygon(0 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
  z-index: 2;
}
.bx-ticker__live i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #fff;
  animation: bx-pulse 1.8s var(--bx-ease) infinite;
}
@keyframes bx-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .25; } }

.bx-ticker__mask {
  flex: 1 1 auto;
  /* without this the max-content track sets the flex item's minimum size and
     pushes the whole page wider than the viewport */
  min-width: 0;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 26px, #000 calc(100% - 40px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 26px, #000 calc(100% - 40px), transparent 100%);
}

.bx-ticker__track {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
  width: max-content;
  animation: bx-marquee 52s linear infinite;
}
.bx-ticker:hover .bx-ticker__track { animation-play-state: paused; }

@keyframes bx-marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.bx-ticker__i {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 20px;
  color: var(--bx-tx-2);
  font: 500 12.5px/1 var(--bx-font);
  white-space: nowrap;
}
.bx-ticker__i::before {
  content: "";
  width: 4px; height: 4px;
  background: var(--bx-lime);
  transform: rotate(45deg);
  flex: 0 0 auto;
}
.bx-ticker__i b { color: var(--bx-tx); font-weight: 700; }

/* ==========================================================================
   2. Header
   ========================================================================== */
.bx-head {
  position: sticky;
  top: 0;
  z-index: 70;
  height: var(--bx-head-h);
  background: rgba(13, 12, 18, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--bx-line);
  transition: box-shadow .25s var(--bx-ease);
}
.bx-head.is-stuck { box-shadow: 0 14px 34px rgba(0, 0, 0, .5); }

.bx-head__in {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 100%;
}

.bx-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
  text-decoration: none;
}
.bx-logo:hover { text-decoration: none; }
.bx-logo img { height: 26px; width: auto; }

.bx-nav {
  display: none;
  align-items: stretch;
  height: 100%;
  min-width: 0;
  margin-left: auto;
}
.bx-nav__a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  height: 100%;
  color: var(--bx-tx-2);
  font: 600 13.5px/1 var(--bx-font);
  text-decoration: none;
  position: relative;
  transition: color .18s var(--bx-ease);
}
.bx-nav__a:hover { color: var(--bx-tx); text-decoration: none; }
.bx-nav__a::after {
  content: "";
  position: absolute;
  left: 13px; right: 13px; bottom: 0;
  height: 2px;
  background: var(--bx-or);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s var(--bx-out);
}
.bx-nav__a:hover::after { transform: scaleX(1); }
.bx-nav__a.is-on { color: #fff; }
.bx-nav__a.is-on::after { transform: scaleX(1); }
.bx-nav__n {
  font: 700 10px/1 var(--bx-mono);
  color: var(--bx-or);
  letter-spacing: .04em;
  padding-top: 1px;
}
.bx-nav__a.is-on .bx-nav__n { color: var(--bx-lime); }

.bx-head__r {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex: 0 0 auto;
}
@media (min-width: 1000px) {
  .bx-nav { display: flex; }
  .bx-head__r { margin-left: 12px; }
}

.bx-burger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 42px; height: 38px;
  padding: 0 10px;
  background: var(--bx-panel-2);
  border: 1px solid var(--bx-line);
  cursor: pointer;
}
/* exactly three bars, so the open state can fold them into a cross */
.bx-burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--bx-tx);
  transform-origin: 50% 50%;
  transition: transform .24s var(--bx-out), opacity .16s var(--bx-ease), background .18s var(--bx-ease);
}
.bx-burger[aria-expanded="true"] { background: var(--bx-panel-3); border-color: var(--bx-line-3); }
.bx-burger[aria-expanded="true"] span { background: var(--bx-or); }
.bx-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.bx-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(.4); }
.bx-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (min-width: 1000px) { .bx-burger { display: none; } }

/* mobile nav sheet */
@media (max-width: 999px) {
  /* anchored to the sticky header, so it stays put once the ticker has
     scrolled away and the header is pinned to the top of the screen */
  .bx-nav {
    position: absolute;
    left: 0; right: 0;
    top: 100%;
    display: block;
    height: auto;
    margin: 0;
    padding: 8px 20px 18px;
    background: var(--bx-bg-2);
    border-bottom: 1px solid var(--bx-line);
    box-shadow: 0 24px 40px rgba(0, 0, 0, .55);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform .24s var(--bx-out), opacity .2s var(--bx-ease), visibility .24s;
    max-height: calc(100vh - var(--bx-head-h) - 20px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .bx-nav.is-open { transform: translateY(0); opacity: 1; visibility: visible; }
  .bx-nav__a {
    height: auto;
    padding: 13px 4px;
    font-size: 16px;
    border-bottom: 1px solid var(--bx-line);
    width: 100%;
  }
  .bx-nav__a::after { display: none; }
  .bx-nav__a.is-on { color: var(--bx-lime); }
}

/* ==========================================================================
   3. Country switcher
   ========================================================================== */
.bx-loc { position: relative; }

.bx-loc__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 11px;
  background: var(--bx-panel-2);
  border: 1px solid var(--bx-line);
  color: var(--bx-tx);
  font: 600 12.5px/1 var(--bx-font);
  cursor: pointer;
  transition: border-color .18s var(--bx-ease), background .18s var(--bx-ease);
}
.bx-loc__btn:hover { border-color: var(--bx-line-3); background: var(--bx-panel-3); }
.bx-loc__code {
  font: 700 10px/1 var(--bx-mono);
  letter-spacing: .08em;
  color: var(--bx-lime);
  background: var(--bx-lime-soft);
  padding: 4px 5px;
}
.bx-loc__cur { display: none; }
@media (min-width: 640px) { .bx-loc__cur { display: inline; } }
.bx-loc__chev { width: 9px; height: 6px; flex: 0 0 auto; opacity: .6; transition: transform .2s var(--bx-ease); }
.bx-loc__btn[aria-expanded="true"] .bx-loc__chev { transform: rotate(180deg); }

.bx-loc__panel {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  width: min(92vw, 340px);
  background: var(--bx-bg-2);
  border: 1px solid var(--bx-line-2);
  box-shadow: 0 26px 54px rgba(0, 0, 0, .6);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .18s var(--bx-ease), transform .22s var(--bx-out), visibility .22s;
  z-index: 80;
}
.bx-loc__panel.is-open { opacity: 1; visibility: visible; transform: translateY(0); }

.bx-loc__search {
  width: 100%;
  height: 38px;
  padding: 0 11px;
  background: var(--bx-well);
  border: 1px solid var(--bx-line);
  color: var(--bx-tx);
  font: 400 14px/1 var(--bx-font);
  margin-bottom: 9px;
}
.bx-loc__search::placeholder { color: var(--bx-tx-3); }
.bx-loc__search:focus { border-color: var(--bx-lime); outline: none; }

.bx-loc__list {
  list-style: none;
  margin: 0;
  padding: 0 6px 0 0;
  max-height: 320px;
  overflow-y: auto;
  overscroll-behavior: contain;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  scrollbar-width: thin;
  scrollbar-color: var(--bx-or) rgba(255, 255, 255, .06);
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 10px, #000 calc(100% - 12px), transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0, #000 10px, #000 calc(100% - 12px), transparent 100%);
}
.bx-loc__list::-webkit-scrollbar { width: 6px; }
.bx-loc__list::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, .05);
}
.bx-loc__list::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--bx-or), var(--bx-or-d));
  clip-path: polygon(0 0, 100% 4px, 100% 100%, 0 calc(100% - 4px));
}
.bx-loc__list::-webkit-scrollbar-thumb:hover { background: var(--bx-lime); }
.bx-loc__i {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 9px;
  color: var(--bx-tx-2);
  font: 500 13px/1.25 var(--bx-font);
  text-decoration: none;
  transition: background .15s var(--bx-ease), color .15s var(--bx-ease);
}
.bx-loc__i:hover { background: var(--bx-panel-2); color: var(--bx-tx); text-decoration: none; }
.bx-loc__i.is-on { background: var(--bx-or-soft); color: #fff; }
.bx-loc__i .bx-loc__code { color: var(--bx-tx-3); background: transparent; padding: 0; }
.bx-loc__i.is-on .bx-loc__code { color: var(--bx-or); }
.bx-loc__name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.bx-loc__empty { color: var(--bx-tx-3); font-size: 13px; padding: 10px 4px 2px; margin: 0; }

/* On a phone the panel is anchored to the header rather than to the button,
   so it can never hang off the edge of the screen. */
@media (max-width: 719px) {
  .bx-loc { position: static; }
  .bx-loc__panel {
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    width: auto;
    max-width: none;
    z-index: 95;
  }
  .bx-loc__list {
    grid-template-columns: 1fr;
    max-height: min(58vh, 420px);
  }
  .bx-loc__i { padding: 11px 10px; font-size: 14px; }
}

/* ==========================================================================
   4. Buttons
   ========================================================================== */
.bx-btn {
  --bx-n: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 44px;
  padding: 0 20px;
  font: 700 14px/1 var(--bx-font);
  letter-spacing: .01em;
  text-decoration: none;
  cursor: pointer;
  border: 0;
  transition: transform .16s var(--bx-out), filter .18s var(--bx-ease), background .18s var(--bx-ease);
  clip-path: polygon(0 0, calc(100% - var(--bx-n)) 0, 100% var(--bx-n), 100% 100%, var(--bx-n) 100%, 0 calc(100% - var(--bx-n)));
}
.bx-btn:hover { text-decoration: none; transform: translateY(-1px); }
.bx-btn:active { transform: translateY(0); }

.bx-btn--pri { background: var(--bx-or); color: #fff; }
.bx-btn--pri:hover { background: #ff7d33; }

.bx-btn--lime { background: var(--bx-lime); color: #14180a; }
.bx-btn--lime:hover { background: #d6ff6b; }

.bx-btn--ghost {
  background: transparent;
  color: var(--bx-tx);
  box-shadow: inset 0 0 0 1px var(--bx-line-2);
}
.bx-btn--ghost:hover { background: var(--bx-panel-2); color: #fff; }

.bx-btn--sm { height: 38px; padding: 0 15px; font-size: 13px; }
.bx-btn--wide { width: 100%; }

.bx-btn__ar { width: 15px; height: 10px; flex: 0 0 auto; }

.bx-store {
  --bx-n: 11px;
  min-width: 184px;
  min-height: 56px;
  padding: 9px 13px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #f5f5f7;
  color: #15131a;
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .32);
  clip-path: polygon(0 0, calc(100% - var(--bx-n)) 0, 100% var(--bx-n), 100% 100%, var(--bx-n) 100%, 0 calc(100% - var(--bx-n)));
  transition: transform .16s var(--bx-out), background .18s var(--bx-ease);
}
.bx-store:hover { color: #15131a; background: #fff; text-decoration: none; transform: translateY(-1px); }
.bx-store--android { background: var(--bx-lime); }
.bx-store--android:hover { background: #d6ff6b; }
.bx-store__ic { width: 27px; height: 27px; flex: 0 0 auto; display: grid; place-items: center; }
.bx-store__ic svg { width: 27px; height: 27px; display: block; fill: currentColor; }
.bx-store__tx { min-width: 0; }
.bx-store__tx small {
  display: block;
  margin-bottom: 3px;
  font: 600 9px/1.15 var(--bx-font);
  letter-spacing: .11em;
  text-transform: uppercase;
  opacity: .67;
  white-space: normal;
}
.bx-store__tx strong { display: block; font: 800 16px/1.1 var(--bx-font); }
.bx-store__ar { width: 15px; height: 10px; flex: 0 0 auto; margin-left: auto; }

@media (max-width: 619px) {
  .bx-app-actions { width: 100%; }
  .bx-hero__cta .bx-store, .bx-app-actions .bx-store { width: 100%; }
}

/* ==========================================================================
   5. Hero
   ========================================================================== */
.bx-hero {
  position: relative;
  padding: 46px 0 0;
  background:
    radial-gradient(1100px 420px at 78% -8%, rgba(255, 106, 19, .17), transparent 62%),
    radial-gradient(760px 340px at 8% 8%, rgba(123, 97, 255, .15), transparent 60%),
    var(--bx-bg);
  overflow: hidden;
}
.bx-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: var(--bx-line);
}

.bx-hero__in {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
}
@media (min-width: 980px) {
  .bx-hero { padding-top: 58px; }
  .bx-hero__in { grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: 46px; }
}

.bx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
  padding: 6px 12px 6px 10px;
  background: var(--bx-panel);
  box-shadow: inset 0 0 0 1px var(--bx-line);
  color: var(--bx-tx-2);
  font: 700 11px/1 var(--bx-font);
  letter-spacing: .15em;
  text-transform: uppercase;
}
.bx-eyebrow i {
  width: 6px; height: 6px;
  background: var(--bx-or);
  transform: rotate(45deg);
}

.bx-h1 {
  margin: 0 0 18px;
  font-size: clamp(29px, 5.1vw, 50px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -.022em;
  color: #fff;
}

.bx-lede {
  margin: 0 0 24px;
  font-size: clamp(15.5px, 1.7vw, 17.5px);
  line-height: 1.66;
  color: var(--bx-tx-2);
  max-width: 62ch;
}

.bx-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 15px;
}

.bx-fine {
  margin: 0;
  color: var(--bx-tx-3);
  font-size: 12px;
  line-height: 1.55;
}

/* framed art */
.bx-frame {
  --bx-n: 22px;
  position: relative;
  padding: 12px;
  background: linear-gradient(150deg, rgba(255, 106, 19, .28), rgba(123, 97, 255, .16) 48%, rgba(200, 247, 81, .18));
  clip-path: polygon(0 0, calc(100% - var(--bx-n)) 0, 100% var(--bx-n), 100% 100%, var(--bx-n) 100%, 0 calc(100% - var(--bx-n)));
}
.bx-frame__in {
  --bx-n: 14px;
  position: relative;
  background: var(--bx-well);
  clip-path: polygon(0 0, calc(100% - var(--bx-n)) 0, 100% var(--bx-n), 100% 100%, var(--bx-n) 100%, 0 calc(100% - var(--bx-n)));
  overflow: hidden;
  min-height: 200px;
  display: grid;
  place-items: center;
}
.bx-frame__in img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
}
.bx-frame--fill .bx-frame__in img { object-fit: cover; height: 340px; }

.bx-frame__tag {
  position: absolute;
  left: 0; bottom: 0;
  padding: 7px 13px;
  background: var(--bx-well);
  color: var(--bx-tx-2);
  font: 700 10px/1 var(--bx-mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  z-index: 2;
}

/* stat tiles */
.bx-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0 0;
  background: var(--bx-line);
  border-top: 1px solid var(--bx-line);
  border-bottom: 1px solid var(--bx-line);
}
@media (min-width: 700px) { .bx-stats { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.bx-stat {
  background: var(--bx-bg);
  padding: 17px 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
}
.bx-stat__v {
  font: 800 clamp(21px, 3vw, 27px)/1.05 var(--bx-font);
  color: #fff;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.bx-stat:nth-child(2n) .bx-stat__v { color: var(--bx-lime); }
.bx-stat__k {
  font: 600 10.5px/1.3 var(--bx-font);
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--bx-tx-3);
}

/* ==========================================================================
   6. Page shell: spine + column
   ========================================================================== */
.bx-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  padding-top: 34px;
  padding-bottom: 50px;
}
@media (min-width: 1160px) {
  .bx-shell { grid-template-columns: minmax(220px, 250px) minmax(0, 1fr); gap: 0 36px; }
}

.bx-spine { display: none; }
@media (min-width: 1160px) {
  .bx-spine {
    display: block;
    position: sticky;
    top: calc(var(--bx-head-h) + 26px);
    align-self: start;
    max-height: calc(100vh - var(--bx-head-h) - 60px);
    max-height: calc(100dvh - var(--bx-head-h) - 60px);
    padding-right: 10px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--bx-line-3) transparent;
  }
}
.bx-spine::-webkit-scrollbar { width: 5px; }
.bx-spine::-webkit-scrollbar-thumb { background: var(--bx-line-3); }
.bx-spine__k {
  font: 700 9.5px/1 var(--bx-font);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bx-tx-3);
  margin: 0 0 12px;
}
.bx-spine__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 2px; }
.bx-spine__a {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  padding: 5px 0;
  color: var(--bx-tx-3);
  text-decoration: none;
  transition: color .18s var(--bx-ease);
}
.bx-spine__a::before {
  content: "";
  width: 16px; height: 2px;
  margin-top: 6px;
  background: currentColor;
  opacity: .5;
  transition: width .2s var(--bx-out), opacity .2s var(--bx-ease);
  flex: 0 0 auto;
}
.bx-spine__a:hover { color: var(--bx-tx-2); text-decoration: none; }
.bx-spine__a.is-on { color: var(--bx-or); }
.bx-spine__a.is-on::before { width: 26px; opacity: 1; }
.bx-spine__n {
  flex: 0 0 19px;
  padding-top: 1px;
  font: 700 10px/1.3 var(--bx-mono);
  color: currentColor;
}
.bx-spine__title {
  min-width: 0;
  font: 600 11.5px/1.35 var(--bx-font);
  color: currentColor;
}

.bx-col { max-width: var(--bx-col); min-width: 0; }

/* ==========================================================================
   7. Table of contents
   ========================================================================== */
.bx-toc {
  --bx-n: 12px;
  background: var(--bx-panel);
  box-shadow: inset 0 0 0 1px var(--bx-line);
  margin: 0 0 30px;
}
.bx-toc > summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 17px;
  display: flex;
  align-items: center;
  gap: 10px;
  font: 700 12px/1 var(--bx-font);
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--bx-tx-2);
}
.bx-toc > summary::-webkit-details-marker { display: none; }
.bx-toc > summary::after {
  content: "";
  margin-left: auto;
  width: 9px; height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translate(-2px, -2px);
  transition: transform .2s var(--bx-ease);
}
.bx-toc[open] > summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.bx-toc[open] > summary { color: var(--bx-tx); border-bottom: 1px solid var(--bx-line); }
.bx-toc__n { color: var(--bx-or); font-family: var(--bx-mono); }

.bx-toc__list {
  list-style: none;
  margin: 0;
  padding: 12px 17px 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px 22px;
}
@media (min-width: 760px) { .bx-toc__list { grid-template-columns: 1fr 1fr; } }
.bx-toc__a {
  display: flex;
  gap: 10px;
  padding: 6px 0;
  color: var(--bx-tx-2);
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
  transition: color .16s var(--bx-ease);
}
.bx-toc__a:hover { color: var(--bx-lime); text-decoration: none; }
.bx-toc__a span:first-child {
  font: 700 11px/1.6 var(--bx-mono);
  color: var(--bx-tx-3);
  flex: 0 0 auto;
}

/* ==========================================================================
   8. Prose
   ========================================================================== */
.bx-intro { margin: 0 0 34px; }

.bx-sec {
  padding: 0 0 6px;
  margin: 0 0 40px;
  scroll-margin-top: calc(var(--bx-head-h) + 24px);
}

.bx-h2 {
  position: relative;
  margin: 0 0 20px;
  padding: 0 0 14px;
  font-size: clamp(23px, 3.1vw, 31px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -.018em;
  color: #fff;
  border-bottom: 1px solid var(--bx-line);
}
.bx-h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  width: 54px; height: 3px;
  background: var(--bx-or);
}
.bx-h2__n {
  display: block;
  font: 700 11px/1 var(--bx-mono);
  letter-spacing: .2em;
  color: var(--bx-or);
  margin-bottom: 9px;
}

.bx-h3 {
  margin: 30px 0 12px;
  font-size: clamp(18px, 2.2vw, 21px);
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}
.bx-h4 {
  margin: 24px 0 10px;
  font-size: 15.5px;
  line-height: 1.4;
  font-weight: 700;
  color: var(--bx-lime);
  letter-spacing: .005em;
}

.bx-col p { margin: 0 0 16px; color: var(--bx-tx-2); }
.bx-col p strong, .bx-col li strong { color: var(--bx-tx); font-weight: 700; }

.bx-ul, .bx-ol {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  counter-reset: bx-ol;
}
.bx-ul > li, .bx-ol > li {
  position: relative;
  padding: 0 0 0 30px;
  margin: 0 0 11px;
  color: var(--bx-tx-2);
}
.bx-ul > li::before {
  content: "";
  position: absolute;
  left: 5px; top: 11px;
  width: 6px; height: 6px;
  background: var(--bx-or);
  transform: rotate(45deg);
}
.bx-ol > li::before {
  counter-increment: bx-ol;
  content: counter(bx-ol, decimal-leading-zero);
  position: absolute;
  left: 0; top: 1px;
  font: 700 11.5px/1.75 var(--bx-mono);
  color: var(--bx-lime);
  letter-spacing: .02em;
}
.bx-sub {
  list-style: none;
  margin: 9px 0 0;
  padding: 0;
}
.bx-sub > li {
  position: relative;
  padding-left: 17px;
  margin-bottom: 6px;
  font-size: 14.5px;
  color: var(--bx-tx-3);
}
.bx-sub > li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 8px; height: 1px;
  background: var(--bx-line-3);
}

/* ==========================================================================
   9. Tables - scoreboard treatment
   ========================================================================== */
.bx-tw { margin: 0 0 24px; }
.bx-tw__scroll {
  overflow-x: auto;
  background: var(--bx-panel);
  box-shadow: inset 0 0 0 1px var(--bx-line);
  -webkit-overflow-scrolling: touch;
}
.bx-tbl {
  width: 100%;
  min-width: 480px;
  border-collapse: collapse;
  font-size: 14.5px;
  font-variant-numeric: tabular-nums;
}
.bx-tbl thead th {
  background: var(--bx-well);
  color: var(--bx-lime);
  font: 700 10.5px/1.4 var(--bx-font);
  letter-spacing: .13em;
  text-transform: uppercase;
  text-align: left;
  padding: 12px 15px;
  border-bottom: 1px solid var(--bx-line-2);
  white-space: nowrap;
}
.bx-tbl td, .bx-tbl tbody th {
  padding: 12px 15px;
  border-bottom: 1px solid var(--bx-line);
  color: var(--bx-tx-2);
  text-align: left;
  vertical-align: top;
}
.bx-tbl tbody th {
  color: var(--bx-tx);
  font-weight: 700;
  width: 42%;
  background: rgba(255, 255, 255, .022);
}
.bx-tbl tbody tr:last-child td, .bx-tbl tbody tr:last-child th { border-bottom: 0; }
.bx-tbl tbody tr:hover td, .bx-tbl tbody tr:hover th { background: rgba(255, 106, 19, .05); }
.bx-tbl td:first-child { color: var(--bx-tx); font-weight: 600; }
.bx-tw__hint {
  margin: 8px 0 0;
  font-size: 11.5px;
  color: var(--bx-tx-3);
  display: flex;
  align-items: center;
  gap: 7px;
}
.bx-tw__hint::before { content: "\2194"; font-size: 14px; }
@media (min-width: 760px) { .bx-tw__hint { display: none; } }

/* ==========================================================================
   10. FAQ
   ========================================================================== */
.bx-q {
  background: var(--bx-panel);
  box-shadow: inset 0 0 0 1px var(--bx-line);
  margin: 0 0 8px;
  transition: box-shadow .18s var(--bx-ease);
}
.bx-q[open] { box-shadow: inset 0 0 0 1px var(--bx-line-2); }
.bx-q > summary {
  list-style: none;
  cursor: pointer;
  padding: 15px 48px 15px 17px;
  position: relative;
}
.bx-q > summary::-webkit-details-marker { display: none; }
.bx-q__q {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.45;
  font-weight: 700;
  color: var(--bx-tx);
  display: inline;
}
.bx-q > summary::after {
  content: "";
  position: absolute;
  right: 18px; top: 21px;
  width: 11px; height: 11px;
  border-right: 2px solid var(--bx-or);
  border-bottom: 2px solid var(--bx-or);
  transform: rotate(45deg);
  transition: transform .22s var(--bx-ease);
}
.bx-q[open] > summary::after { transform: rotate(-135deg); }
.bx-q[open] > summary .bx-q__q { color: #fff; }
.bx-q__a { padding: 0 17px 4px; border-top: 1px solid var(--bx-line); padding-top: 14px; }
.bx-q__a p:last-child { margin-bottom: 14px; }

/* ==========================================================================
   11. Reviews + scores
   ========================================================================== */
.bx-revs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin: 0 0 22px;
}
@media (min-width: 700px) { .bx-revs { grid-template-columns: 1fr 1fr; } }

.bx-rev {
  --bx-n: 13px;
  position: relative;
  padding: 20px 18px 18px;
  background: var(--bx-panel);
  box-shadow: inset 0 0 0 1px var(--bx-line);
  clip-path: polygon(0 0, calc(100% - var(--bx-n)) 0, 100% var(--bx-n), 100% 100%, var(--bx-n) 100%, 0 calc(100% - var(--bx-n)));
}
.bx-rev__who { display: flex; align-items: center; gap: 10px; margin-bottom: 11px; }
.bx-rev__av {
  width: 32px; height: 32px;
  display: grid;
  place-items: center;
  background: var(--bx-or);
  color: #fff;
  font: 800 14px/1 var(--bx-font);
  flex: 0 0 auto;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
}
.bx-rev:nth-child(2n) .bx-rev__av { background: var(--bx-vio); }
.bx-rev:nth-child(3n) .bx-rev__av { background: var(--bx-lime); color: #14180a; }
.bx-rev__name { font-weight: 700; font-size: 14px; color: var(--bx-tx); }
.bx-rev__b { margin: 0; font-size: 14.5px; line-height: 1.62; color: var(--bx-tx-2); font-style: italic; }

/* score board */
.bx-scores {
  --bx-n: 15px;
  background: var(--bx-panel);
  box-shadow: inset 0 0 0 1px var(--bx-line);
  padding: 20px 18px;
  margin: 0 0 22px;
  clip-path: polygon(0 0, calc(100% - var(--bx-n)) 0, 100% var(--bx-n), 100% 100%, var(--bx-n) 100%, 0 calc(100% - var(--bx-n)));
}
.bx-scores__top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--bx-line);
}
.bx-scores__big {
  font: 800 42px/1 var(--bx-font);
  color: var(--bx-lime);
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
}
.bx-scores__big small { font-size: 17px; color: var(--bx-tx-3); font-weight: 600; }
.bx-scores__lbl { display: block; font: 700 11px/1.4 var(--bx-font); letter-spacing: .14em; text-transform: uppercase; color: var(--bx-tx-2); }
.bx-scores__sub { display: block; font-size: 12.5px; line-height: 1.5; color: var(--bx-tx-3); margin: 3px 0 0; max-width: 46ch; }

.bx-score { display: grid; grid-template-columns: 1fr; gap: 6px; margin-bottom: 15px; }
.bx-score:last-child { margin-bottom: 0; }
.bx-score__head { display: flex; align-items: baseline; gap: 10px; }
.bx-score__l { font-weight: 700; font-size: 14.5px; color: var(--bx-tx); }
.bx-score__v { margin-left: auto; font: 700 13px/1 var(--bx-mono); color: var(--bx-lime); }
.bx-score__seg { display: flex; gap: 3px; }
.bx-score__seg i {
  flex: 1 1 0;
  height: 7px;
  background: rgba(255, 255, 255, .07);
  transform: skewX(-18deg);
}
.bx-score__seg i.is-on { background: var(--bx-or); }
.bx-score__d { font-size: 13px; color: var(--bx-tx-3); margin: 0; }

/* ========================================================================== 
   12. Modules: promo band, picture band, next cards
   ========================================================================== */
.bx-offer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  margin: 0 0 36px;
}
@media (min-width: 760px) {
  .bx-offer-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.bx-offer-card {
  --bx-n: 17px;
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: 168px minmax(0, 1fr);
  background: linear-gradient(145deg, var(--bx-panel-2), var(--bx-panel));
  box-shadow: inset 0 0 0 1px var(--bx-line-2);
  clip-path: polygon(0 0, calc(100% - var(--bx-n)) 0, 100% var(--bx-n), 100% 100%, var(--bx-n) 100%, 0 calc(100% - var(--bx-n)));
}
.bx-offer-card__pic { position: relative; min-width: 0; overflow: hidden; background: var(--bx-well); }
.bx-offer-card__pic::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(10, 9, 14, .52));
  pointer-events: none;
}
.bx-offer-card__pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--bx-out), filter .3s var(--bx-ease);
}
.bx-offer-card:hover .bx-offer-card__pic img { transform: scale(1.025); filter: saturate(1.08); }
.bx-offer-card__body {
  min-width: 0;
  padding: 19px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.bx-offer-card__title {
  margin: 0 0 8px !important;
  color: var(--bx-tx-2);
  font: 700 10.5px/1.4 var(--bx-font);
  letter-spacing: .11em;
  text-transform: uppercase;
}
.bx-offer-card__value {
  margin: 0 0 18px !important;
  color: var(--bx-lime);
  font: 800 clamp(20px, 2.7vw, 27px)/1.16 var(--bx-font);
  letter-spacing: -.02em;
  overflow-wrap: anywhere;
}
.bx-offer-card .bx-btn { margin-top: auto; }
.bx-offer-card--sports_first .bx-offer-card__value { color: var(--bx-or); }

@media (min-width: 760px) {
  .bx-offer-grid--1 .bx-offer-card {
    grid-template-columns: minmax(250px, .78fr) minmax(0, 1.22fr);
    grid-template-rows: minmax(250px, auto);
  }
  .bx-offer-grid--1 .bx-offer-card__body { justify-content: center; padding: 28px 28px; }
}

.bx-promo {
  --bx-n: 20px;
  position: relative;
  margin: 0 0 36px;
  padding: 26px 24px;
  background:
    radial-gradient(520px 220px at 88% 20%, rgba(255, 106, 19, .3), transparent 62%),
    linear-gradient(120deg, var(--bx-panel-2), var(--bx-panel));
  box-shadow: inset 0 0 0 1px var(--bx-line-2);
  clip-path: polygon(0 0, calc(100% - var(--bx-n)) 0, 100% var(--bx-n), 100% 100%, var(--bx-n) 100%, 0 calc(100% - var(--bx-n)));
  display: grid;
  gap: 18px;
  align-items: center;
}
@media (min-width: 760px) { .bx-promo { grid-template-columns: minmax(0, 1fr) auto; padding: 30px 30px; } }

.bx-promo__k {
  display: inline-block;
  margin: 0 0 8px;
  font: 700 10.5px/1 var(--bx-font);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bx-or);
}
.bx-promo__t {
  margin: 0 0 9px;
  font-size: clamp(20px, 2.7vw, 26px);
  line-height: 1.22;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.018em;
}
.bx-promo__s { margin: 0 0 10px !important; font-size: 14.5px; color: var(--bx-tx-2); max-width: 54ch; }
.bx-promo__f { margin: 0 !important; font-size: 11.5px; color: var(--bx-tx-3); max-width: 60ch; }

.bx-band {
  position: relative;
  margin: 0 0 36px;
  overflow: hidden;
  background: var(--bx-well);
}
.bx-band img { width: 100%; height: 200px; object-fit: cover; opacity: .85; }
@media (min-width: 760px) { .bx-band img { height: 260px; } }
.bx-band__cap {
  position: absolute;
  left: 0; bottom: 0;
  padding: 9px 15px;
  background: var(--bx-well);
  color: var(--bx-tx-2);
  font: 700 10px/1 var(--bx-mono);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.bx-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13, 12, 18, .55));
  pointer-events: none;
}

.bx-app-banner {
  --bx-n: 20px;
  position: relative;
  min-height: 310px;
  margin: 0 0 36px;
  padding: 28px 24px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(520px 300px at 92% 58%, rgba(200, 247, 81, .2), transparent 66%),
    radial-gradient(520px 260px at 18% 18%, rgba(123, 97, 255, .28), transparent 70%),
    linear-gradient(125deg, #171322, var(--bx-panel));
  box-shadow: inset 0 0 0 1px var(--bx-line-2);
  clip-path: polygon(0 0, calc(100% - var(--bx-n)) 0, 100% var(--bx-n), 100% 100%, var(--bx-n) 100%, 0 calc(100% - var(--bx-n)));
}
.bx-app-banner__copy { position: relative; z-index: 2; max-width: 610px; }
.bx-app-banner__k {
  margin: 0 0 9px !important;
  color: var(--bx-lime);
  font: 700 10.5px/1 var(--bx-font);
  letter-spacing: .18em;
  text-transform: uppercase;
}
.bx-app-banner__t {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(23px, 3vw, 32px);
  line-height: 1.15;
  letter-spacing: -.02em;
}
.bx-app-banner__s { margin: 0 0 19px !important; max-width: 58ch; color: var(--bx-tx-2); font-size: 14px; }
.bx-app-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.bx-app-banner__art { display: none; }
@media (min-width: 820px) {
  .bx-app-banner { grid-template-columns: minmax(0, 1fr) 210px; padding: 34px 30px; }
  .bx-app-banner__copy { padding-right: 10px; }
  .bx-app-banner__art {
    position: absolute;
    z-index: 1;
    display: block;
    width: 215px;
    height: 390px;
    right: 9px;
    bottom: -124px;
    transform: rotate(6deg);
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, .4));
  }
  .bx-app-banner__art img { width: 100%; height: auto; display: block; }
}

.bx-next { margin: 6px 0 0; }
.bx-next__k {
  font: 700 11px/1 var(--bx-font);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bx-tx-3);
  margin: 0 0 14px;
}
.bx-next__grid { display: grid; grid-template-columns: 1fr; gap: 10px; }
@media (min-width: 700px) { .bx-next__grid { grid-template-columns: 1fr 1fr; } }
.bx-next__a {
  --bx-n: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  background: var(--bx-panel);
  box-shadow: inset 0 0 0 1px var(--bx-line);
  color: var(--bx-tx-2);
  font-size: 14px;
  line-height: 1.45;
  text-decoration: none;
  clip-path: polygon(0 0, calc(100% - var(--bx-n)) 0, 100% var(--bx-n), 100% 100%, var(--bx-n) 100%, 0 calc(100% - var(--bx-n)));
  transition: background .18s var(--bx-ease), color .18s var(--bx-ease);
}
.bx-next__a:hover { background: var(--bx-panel-2); color: #fff; text-decoration: none; }
.bx-next__n { font: 700 11px/1 var(--bx-mono); color: var(--bx-or); flex: 0 0 auto; }

/* logo strips */
.bx-strip { margin: 0 0 34px; }
.bx-strip__k {
  font: 700 10.5px/1 var(--bx-font);
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--bx-tx-3);
  margin: 0 0 12px;
}
.bx-strip__row {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;
  background: var(--bx-line);
  box-shadow: 0 0 0 1px var(--bx-line);
}
.bx-strip__i {
  flex: 1 1 120px;
  min-width: 110px;
  background: var(--bx-panel);
  padding: 14px 16px;
  display: grid;
  place-items: center;
}
.bx-strip__i img { height: 22px; width: auto; max-width: 100%; opacity: .68; filter: grayscale(1) brightness(2.6); transition: opacity .2s var(--bx-ease), filter .2s var(--bx-ease); }
.bx-strip__i:hover img { opacity: 1; filter: grayscale(0) brightness(1); }

/* platform cards */
.bx-plat { margin: 0 0 34px; }
.bx-plat__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 620px) { .bx-plat__grid { grid-template-columns: 1fr 1fr; } }

.bx-plat__c {
  --bx-n: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 18px;
  background: linear-gradient(150deg, var(--bx-panel-2), var(--bx-panel));
  box-shadow: inset 0 0 0 1px var(--bx-line);
  clip-path: polygon(0 0, calc(100% - var(--bx-n)) 0, 100% var(--bx-n), 100% 100%, var(--bx-n) 100%, 0 calc(100% - var(--bx-n)));
  color: inherit;
  text-decoration: none;
  transition: background .18s var(--bx-ease), transform .18s var(--bx-out);
}
.bx-plat__c:hover { background: var(--bx-panel-2); color: inherit; text-decoration: none; transform: translateY(-2px); }
.bx-plat__ic {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  background: var(--bx-well);
  box-shadow: inset 0 0 0 1px var(--bx-line);
}
.bx-plat__ic svg { width: 27px; height: 27px; display: block; }
.bx-plat__c--and .bx-plat__ic svg { fill: #3ddc84; }
.bx-plat__c--ios .bx-plat__ic svg { fill: #f2f2f7; }
.bx-plat__n {
  display: block;
  font: 800 17px/1.2 var(--bx-font);
  color: #fff;
  letter-spacing: -.01em;
}
.bx-plat__v {
  display: block;
  margin-top: 3px;
  font: 600 12.5px/1.45 var(--bx-font);
  color: var(--bx-tx-2);
  font-variant-numeric: tabular-nums;
}
.bx-plat__go {
  display: block;
  margin-top: 8px;
  color: var(--bx-lime);
  font: 700 10.5px/1.25 var(--bx-font);
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* anything that can outgrow a phone screen scrolls inside its own box */
.bx-xscroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 14px;
}
.bx-xscroll > .bx-check { margin-bottom: 0; min-width: 420px; }

/* game tiles */
.bx-games { margin: 0 0 34px; }
.bx-games__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
@media (min-width: 560px) { .bx-games__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 860px) { .bx-games__grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.bx-game {
  --bx-n: 11px;
  position: relative;
  background: var(--bx-panel);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - var(--bx-n)) 0, 100% var(--bx-n), 100% 100%, var(--bx-n) 100%, 0 calc(100% - var(--bx-n)));
}
.bx-game img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .35s var(--bx-out); }
.bx-game:hover img { transform: scale(1.05); }
.bx-game__n {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 10px 8px;
  background: linear-gradient(180deg, transparent, rgba(10, 9, 14, .94));
  font: 700 11.5px/1.3 var(--bx-font);
  color: #fff;
}

/* ==========================================================================
   14. Tools
   ========================================================================== */
.bx-tool {
  --bx-n: 18px;
  margin: 0 0 36px;
  padding: 22px 20px;
  background: linear-gradient(165deg, var(--bx-panel-2), var(--bx-panel));
  box-shadow: inset 0 0 0 1px var(--bx-line-2);
  clip-path: polygon(0 0, calc(100% - var(--bx-n)) 0, 100% var(--bx-n), 100% 100%, var(--bx-n) 100%, 0 calc(100% - var(--bx-n)));
}
.bx-tool__k {
  display: flex;
  align-items: center;
  gap: 9px;
  font: 700 10.5px/1 var(--bx-font);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--bx-or);
  margin: 0 0 9px;
}
.bx-tool__k::before { content: ""; width: 16px; height: 2px; background: var(--bx-or); }
.bx-tool__t {
  margin: 0 0 5px;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.016em;
}
.bx-tool__s { margin: 0 0 18px !important; font-size: 13.5px; color: var(--bx-tx-3); }

.bx-fields { display: grid; grid-template-columns: 1fr; gap: 13px; margin-bottom: 18px; }
@media (min-width: 620px) { .bx-fields--2 { grid-template-columns: 1fr 1fr; } .bx-fields--3 { grid-template-columns: repeat(3, 1fr); } }

.bx-f { display: flex; flex-direction: column; gap: 6px; }
.bx-f__l {
  font: 600 11.5px/1.35 var(--bx-font);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--bx-tx-3);
}
.bx-f__in, .bx-f select {
  height: 44px;
  width: 100%;
  padding: 0 12px;
  background: var(--bx-well);
  border: 1px solid var(--bx-line);
  color: #fff;
  font: 700 15.5px/1 var(--bx-mono);
  font-variant-numeric: tabular-nums;
  transition: border-color .18s var(--bx-ease);
  -webkit-appearance: none;
  appearance: none;
}
.bx-f select {
  font-family: var(--bx-font);
  font-size: 14.5px;
  background-image: linear-gradient(45deg, transparent 50%, var(--bx-tx-2) 50%), linear-gradient(135deg, var(--bx-tx-2) 50%, transparent 50%);
  background-position: calc(100% - 17px) 20px, calc(100% - 12px) 20px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 32px;
}
.bx-f__in:focus, .bx-f select:focus { border-color: var(--bx-lime); outline: none; }
.bx-f__in::-webkit-outer-spin-button, .bx-f__in::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.bx-f__in[type="number"] { -moz-appearance: textfield; }

.bx-f__range { display: flex; align-items: center; gap: 12px; }
.bx-f__range input[type="range"] {
  flex: 1 1 auto;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: var(--bx-panel-3);
  outline: none;
}
.bx-f__range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px; height: 18px;
  background: var(--bx-or);
  cursor: pointer;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
.bx-f__range input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px;
  background: var(--bx-or);
  border: 0;
  cursor: pointer;
}

.bx-outs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--bx-line);
  box-shadow: 0 0 0 1px var(--bx-line);
  margin-bottom: 14px;
}
@media (min-width: 620px) { .bx-outs--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } .bx-outs--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.bx-out { background: var(--bx-well); padding: 14px 14px; display: flex; flex-direction: column; gap: 4px; }
.bx-out__k { font: 600 10.5px/1.3 var(--bx-font); letter-spacing: .11em; text-transform: uppercase; color: var(--bx-tx-3); }
.bx-out__v {
  font: 800 clamp(18px, 2.6vw, 23px)/1.1 var(--bx-font);
  color: var(--bx-lime);
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.bx-out--hi .bx-out__v { color: var(--bx-or); }
.bx-out--sm .bx-out__v { font-size: 15px; line-height: 1.3; }

.bx-verdict {
  padding: 13px 15px;
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.55;
  background: var(--bx-lime-soft);
  box-shadow: inset 3px 0 0 var(--bx-lime);
  color: var(--bx-tx);
}
.bx-verdict.is-warn { background: var(--bx-or-soft); box-shadow: inset 3px 0 0 var(--bx-or); }
.bx-verdict.is-bad { background: rgba(255, 90, 90, .12); box-shadow: inset 3px 0 0 var(--bx-red); }

.bx-tool__note { margin: 0 !important; font-size: 12px; color: var(--bx-tx-3); line-height: 1.6; }

.bx-check { width: 100%; border-collapse: collapse; font-size: 13.5px; margin-bottom: 14px; }
.bx-check th {
  text-align: left;
  padding: 9px 10px;
  background: var(--bx-well);
  color: var(--bx-tx-3);
  font: 600 10px/1.3 var(--bx-font);
  letter-spacing: .12em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--bx-line);
}
.bx-check td { padding: 9px 10px; border-bottom: 1px solid var(--bx-line); color: var(--bx-tx-2); font-variant-numeric: tabular-nums; }
.bx-check td:last-child { font-weight: 700; }
.bx-check .bx-ok { color: var(--bx-lime); }
.bx-check .bx-warnc { color: var(--bx-or); }
.bx-check .bx-bad { color: var(--bx-red); }

/* ==========================================================================
   15. Footer
   ========================================================================== */
.bx-foot {
  background: var(--bx-well);
  border-top: 1px solid var(--bx-line);
  padding: 44px 0 26px;
  margin-top: 20px;
}
.bx-foot__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--bx-line);
}
@media (min-width: 760px) { .bx-foot__grid { grid-template-columns: minmax(0, 1.5fr) repeat(3, minmax(0, 1fr)); gap: 36px; } }

.bx-foot__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.bx-foot__logo img { height: 24px; width: auto; }
.bx-foot p { margin: 0 0 12px; font-size: 13px; line-height: 1.65; color: var(--bx-tx-3); }
.bx-foot__k {
  font: 700 10.5px/1 var(--bx-font);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bx-tx-2);
  margin: 0 0 13px;
}
.bx-foot__list { list-style: none; margin: 0; padding: 0; }
.bx-foot__list li { margin-bottom: 8px; }
.bx-foot__list a { color: var(--bx-tx-3); font-size: 13.5px; text-decoration: none; transition: color .16s var(--bx-ease); }
.bx-foot__list a:hover { color: var(--bx-lime); }

.bx-age {
  display: inline-grid;
  place-items: center;
  width: 40px; height: 40px;
  border: 2px solid var(--bx-red);
  border-radius: 50%;
  color: var(--bx-red);
  font: 800 13px/1 var(--bx-font);
  flex: 0 0 auto;
}
.bx-foot__resp { display: flex; align-items: flex-start; gap: 14px; padding: 22px 0 0; }
.bx-foot__resp p { margin: 0; }

.bx-foot__end {
  padding-top: 20px;
  border-top: 1px solid var(--bx-line);
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  justify-content: space-between;
}
.bx-foot__end p { margin: 0; font-size: 11.5px; }
.bx-foot__help { display: flex; flex-wrap: wrap; gap: 14px; }
.bx-foot__help a { font-size: 12px; color: var(--bx-tx-3); }

/* back to top */
.bx-top {
  position: fixed;
  right: 18px; bottom: 18px;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  background: var(--bx-or);
  color: #fff;
  border: 0;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .22s var(--bx-ease), transform .26s var(--bx-out), visibility .26s;
  z-index: 65;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}
.bx-top.is-on { opacity: 1; visibility: visible; transform: translateY(0); }
.bx-top:hover { background: #ff7d33; }
.bx-top svg { width: 16px; height: 16px; }

/* ==========================================================================
   16. Motion / print
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bx-ticker__track { animation: none; transform: none; }
  .bx-ticker__live i { animation: none; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

@media print {
  .bx-ticker, .bx-head, .bx-top, .bx-tool, .bx-toc, .bx-spine { display: none !important; }
  body { background: #fff; color: #111; }
  .bx-col { max-width: none; }
}
