/* =========================================================================
   Slotrave MULTI — lobby shell
   Prefix: sr-
   ========================================================================= */

/* ---------- tokens ---------- */
:root {
  --sr-bg:      #140A22;
  --sr-bg2:     #1C0E2E;
  --sr-panel:   #271641;
  --sr-panel2:  #321D53;
  --sr-panel3:  #3D2464;
  --sr-line:    #452a68;
  --sr-line2:   #58347f;

  --sr-tx:      #ffffff;
  --sr-tx2:     #bcaad4;
  --sr-tx3:     #8f7cab;

  --sr-acc:     #a435f0;
  --sr-acc2:    #7b1fd4;
  --sr-mag:     #e930ff;
  --sr-pink:    #ff4fd8;
  --sr-cyan:    #21d4fd;
  --sr-blue:    #2f6bff;
  --sr-green:   #3ee66b;
  --sr-green2:  #12b94a;
  --sr-orange:  #ff8a00;
  --sr-orange2: #ff5a00;
  --sr-yellow:  #ffe81a;
  --sr-red:     #ff3d5a;

  --sr-side-w:  232px;
  --sr-head-h:  66px;
  --sr-gut:     22px;
  --sr-r:       14px;
  --sr-r2:      10px;

  /* the article's reading column. Every direct child of .sr-art__in is capped
     at this and centred, so the copy fills the panel on a laptop and sits in
     the middle of it on a wide monitor instead of hugging the left edge.
     One number widens or narrows the whole article. */
  --sr-measure: 1040px;

  /* bonus skins, shared by the offer cards and the in-article promo banners */
  --sr-sk1: linear-gradient(100deg, #8b23c9 0%, #c93bd2 52%, #4d1580 100%);
  --sr-sk2: linear-gradient(100deg, #4a1fc4 0%, #7b3ff0 52%, #2a1170 100%);
  --sr-sk3: linear-gradient(100deg, #1d47a8 0%, #2f8bff 52%, #142a63 100%);
  --sr-sk4: linear-gradient(100deg, #0d7a52 0%, #21c47c 52%, #084432 100%);
  --sr-sk5: linear-gradient(100deg, #a81d2f 0%, #ff4d3d 52%, #5c0f18 100%);
  --sr-sk6: linear-gradient(100deg, #b06a00 0%, #ffb03a 52%, #5c3600 100%);

  --sr-shadow:  0 12px 34px rgba(0,0,0,.45);
  --sr-glow:    0 0 22px rgba(233,48,255,.45);
  --sr-font:    "Segoe UI", Roboto, "Helvetica Neue", Arial, system-ui, sans-serif;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--sr-bg);
  color: var(--sr-tx);
  font-family: var(--sr-font);
  font-size: 15px;
  line-height: 1.62;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, h4 { margin: 0; line-height: 1.22; font-weight: 800; }
p { margin: 0 0 1em; }
ul, ol { margin: 0 0 1em; padding-left: 1.25em; }

/* a class that sets display must never beat this */
[hidden] { display: none !important; }

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

.sr-skip {
  position: fixed; left: 8px; top: -60px; z-index: 200;
  background: var(--sr-acc); color: #fff; padding: 10px 16px; border-radius: 8px;
  transition: top .18s;
}
.sr-skip:focus { top: 8px; }

:focus-visible { outline: 2px solid var(--sr-cyan); outline-offset: 2px; }

/* =========================================================================
   header
   ========================================================================= */
.sr-head {
  position: sticky; top: 0; left: 0; right: 0; z-index: 60;
  height: var(--sr-head-h);
  background: linear-gradient(180deg, #2b1745 0%, #24123b 100%);
  border-bottom: 1px solid var(--sr-line);
}
.sr-head__in {
  height: 100%;
  display: flex; align-items: center; gap: 14px;
  padding-left: var(--sr-gut); padding-right: var(--sr-gut);
}

/* the owner's logo file carries the mark and the wordmark together, so the
   lockup is one image — height drives it, width follows the intrinsic ratio */
.sr-logo { display: flex; align-items: center; flex: none; }
.sr-logo__i {
  height: 34px; width: auto; max-width: none; flex: none;
  transition: filter .18s;
}
.sr-logo:hover .sr-logo__i { filter: brightness(1.12) drop-shadow(0 0 10px rgba(233,48,255,.5)); }

.sr-find {
  position: relative; flex: 1 1 260px; min-width: 0; max-width: 320px;
}
.sr-find__i {
  width: 100%; height: 38px; min-width: 0;
  padding: 0 12px 0 38px;
  background: #1b0e2c; border: 1px solid var(--sr-line);
  border-radius: 20px; color: var(--sr-tx); font-size: 13.5px;
}
.sr-find__i::placeholder { color: var(--sr-tx3); }
.sr-find__i:focus { border-color: var(--sr-mag); box-shadow: 0 0 0 3px rgba(233,48,255,.16); outline: none; }
.sr-find__ic {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  width: 17px; height: 17px; color: var(--sr-mag); pointer-events: none;
}

.sr-head__r { display: flex; align-items: center; gap: 8px; margin-left: auto; flex: none; }

.sr-bal { display: flex; align-items: center; gap: 6px; }
.sr-bal__i {
  display: inline-flex; align-items: center; gap: 5px;
  height: 30px; padding: 0 10px;
  background: #1b0e2c; border: 1px solid var(--sr-line); border-radius: 15px;
  font-size: 12.5px; font-weight: 700; color: var(--sr-tx2);
}
.sr-bal__d { width: 15px; height: 15px; border-radius: 50%; flex: none; }
.sr-bal__i--a .sr-bal__d { background: linear-gradient(140deg, #ffd34d, #ff8a00); }
.sr-bal__i--b .sr-bal__d { background: linear-gradient(140deg, #ff6ee0, #a435f0); }
.sr-bal__i--c .sr-bal__d { background: linear-gradient(140deg, #6ee7ff, #2f6bff); }

.sr-gift {
  position: relative; width: 34px; height: 34px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--sr-orange), var(--sr-orange2));
  border: 0; border-radius: 9px; cursor: pointer;
}
.sr-gift svg { width: 18px; height: 18px; }
.sr-pip {
  position: absolute; top: -5px; right: -5px;
  min-width: 17px; height: 17px; padding: 0 4px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--sr-red); color: #fff;
  border-radius: 9px; font-size: 10.5px; font-weight: 800; line-height: 1;
}

.sr-icb {
  width: 34px; height: 34px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: #1b0e2c; border: 1px solid var(--sr-line);
  border-radius: 9px; cursor: pointer; color: var(--sr-tx2);
}
.sr-icb svg { width: 17px; height: 17px; }
.sr-icb:hover { border-color: var(--sr-mag); color: #fff; }

.sr-burger {
  display: none; width: 34px; height: 34px; flex: none;
  align-items: center; justify-content: center; gap: 4px; flex-direction: column;
  background: #1b0e2c; border: 1px solid var(--sr-line); border-radius: 9px; cursor: pointer;
}
.sr-burger span { display: block; width: 16px; height: 2px; background: var(--sr-tx2); border-radius: 2px; }

/* =========================================================================
   buttons
   ========================================================================= */
.sr-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 40px; padding: 8px 20px;
  border: 0; border-radius: 9px;
  font-size: 14px; font-weight: 800; letter-spacing: .1px;
  cursor: pointer; text-align: center;
  transition: filter .16s, transform .16s, box-shadow .16s;
}
.sr-btn:hover { filter: brightness(1.09); }
.sr-btn:active { transform: translateY(1px); }

.sr-btn--org { background: linear-gradient(96deg, var(--sr-orange), var(--sr-orange2)); color: #241004; }
.sr-btn--gho { background: rgba(255,255,255,.06); border: 1px solid var(--sr-line2); color: var(--sr-tx); }
.sr-btn--sm  { min-height: 34px; padding: 6px 14px; font-size: 13px; }

/* the neon-outline sign-up button */
.sr-btn--neo {
  background: rgba(62,230,107,.08);
  border: 2px solid var(--sr-green);
  color: #eaffef;
  box-shadow: 0 0 12px rgba(62,230,107,.35), inset 0 0 12px rgba(62,230,107,.16);
  text-shadow: 0 0 10px rgba(62,230,107,.55);
}
.sr-btn--neo:hover { box-shadow: 0 0 20px rgba(62,230,107,.55), inset 0 0 16px rgba(62,230,107,.22); }

.sr-btn--big { min-height: 52px; padding: 12px 34px; font-size: 17px; border-radius: 11px; }

/* =========================================================================
   shell
   ========================================================================= */
.sr-shell {
  display: grid;
  grid-template-columns: var(--sr-side-w) minmax(0, 1fr);
  align-items: start;
}
.sr-shell > * { min-width: 0; }

/* the page gutter lives HERE and nowhere else — no section carries both a
   gutter class and a padding shorthand, which is how the gutter gets eaten */
.sr-main {
  min-width: 0;
  padding-left: var(--sr-gut);
  padding-right: var(--sr-gut);
  padding-bottom: 40px;
}

.sr-veil { display: none; }

/* =========================================================================
   sidebar
   ========================================================================= */
.sr-side {
  position: sticky; top: var(--sr-head-h);
  height: calc(100vh - var(--sr-head-h));
  overflow-y: auto; overscroll-behavior: contain;
  background: var(--sr-bg2);
  border-right: 1px solid var(--sr-line);
  padding: 14px 12px 22px;
  scrollbar-width: thin; scrollbar-color: var(--sr-line) transparent;
}
.sr-side::-webkit-scrollbar { width: 7px; }
.sr-side::-webkit-scrollbar-thumb { background: var(--sr-line); border-radius: 4px; }

.sr-tile {
  position: relative; display: flex; align-items: center; gap: 9px;
  margin-bottom: 9px; padding: 11px 12px;
  border-radius: 12px; overflow: hidden;
  font-size: 14px; font-weight: 800; color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,.5);
}
.sr-tile--a { background: linear-gradient(102deg, #ff5bd0 0%, #a435f0 55%, #6a1ecb 100%); }
.sr-tile--b { background: linear-gradient(102deg, #ffb03a 0%, #e930ff 60%, #8a24e0 100%); }
.sr-tile__ic { width: 26px; height: 26px; flex: none; }
.sr-tile .sr-pip { top: 6px; right: 8px; }

.sr-nav__k {
  margin: 16px 6px 7px;
  font-size: 10.5px; font-weight: 800; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--sr-tx3);
}
.sr-nav__l { list-style: none; margin: 0; padding: 0; }
.sr-nav__a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 10px; border-radius: 9px;
  font-size: 14px; font-weight: 600; color: var(--sr-tx2);
  transition: background .16s, color .16s;
}
.sr-nav__a:hover { background: var(--sr-panel); color: #fff; }
.sr-nav__a.is-on { background: var(--sr-panel2); color: #fff; box-shadow: inset 3px 0 0 var(--sr-mag); }
.sr-nav__ic { width: 19px; height: 19px; flex: none; color: var(--sr-mag); }
.sr-nav__a.is-on .sr-nav__ic { color: var(--sr-yellow); }
.sr-nav__t { min-width: 0; overflow-wrap: anywhere; }

.sr-side__sep { height: 1px; margin: 14px 6px; background: var(--sr-line); border: 0; }

.sr-lgb {
  display: flex; align-items: center; gap: 10px; width: 100%;
  margin-top: 8px; padding: 10px 12px;
  background: var(--sr-panel); border: 1px solid var(--sr-line);
  border-radius: 11px; cursor: pointer; text-align: left;
  font-size: 13.5px; font-weight: 700; color: var(--sr-tx);
}
.sr-lgb:hover { border-color: var(--sr-mag); }
.sr-lgb__g { width: 20px; height: 20px; flex: none; color: var(--sr-tx3); }
.sr-lgb__t { flex: 1 1 auto; min-width: 0; overflow-wrap: anywhere; }
.sr-lgb__c { width: 14px; height: 14px; flex: none; color: var(--sr-tx3); }

/* =========================================================================
   language panel
   ========================================================================= */
.sr-lang {
  position: fixed; inset: 0; z-index: 90;
  display: none; align-items: center; justify-content: center;
  padding: 20px; background: rgba(8,4,15,.76);
  backdrop-filter: blur(3px);
}
.sr-lang.is-open { display: flex; }
.sr-lang__box {
  width: min(560px, 100%); max-height: min(78vh, 620px);
  display: grid; grid-template-rows: auto auto minmax(0, 1fr);
  background: var(--sr-panel); border: 1px solid var(--sr-line2);
  border-radius: 16px; box-shadow: var(--sr-shadow); overflow: hidden;
}
.sr-lang__h {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 18px; border-bottom: 1px solid var(--sr-line);
}
.sr-lang__h h2 { font-size: 17px; flex: 1 1 auto; min-width: 0; }
.sr-lang__q {
  margin: 14px 18px 6px; width: calc(100% - 36px);
  height: 38px; padding: 0 14px;
  background: #1b0e2c; border: 1px solid var(--sr-line);
  border-radius: 19px; font-size: 14px;
}
.sr-lang__l {
  list-style: none; margin: 0; padding: 10px 12px 16px;
  overflow-y: auto;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 6px;
}
.sr-lang__a {
  display: flex; align-items: center; gap: 10px; min-width: 0;
  padding: 9px 11px; border-radius: 9px;
  font-size: 13.5px; color: var(--sr-tx2);
}
.sr-lang__a:hover { background: var(--sr-panel2); color: #fff; }
.sr-lang__a.is-on { background: var(--sr-panel3); color: #fff; }
.sr-lang__cc {
  flex: none; min-width: 30px; padding: 2px 6px;
  background: rgba(255,255,255,.08); border-radius: 5px;
  font-size: 10.5px; font-weight: 800; letter-spacing: .6px; text-align: center;
}
.sr-lang__nm { min-width: 0; overflow-wrap: anywhere; }
.sr-lang__sb { margin-left: auto; flex: none; font-size: 11.5px; color: var(--sr-tx3); }
.sr-lang__none { padding: 18px; color: var(--sr-tx3); grid-column: 1 / -1; }

/* =========================================================================
   hero carousel
   ========================================================================= */
.sr-hero { padding-top: 18px; }
.sr-hero__f {
  position: relative; border-radius: var(--sr-r); overflow: hidden;
  background: linear-gradient(120deg, #3a1566 0%, #52189a 45%, #2a1049 100%);
  isolation: isolate;
}
.sr-hero__t { display: flex; transition: transform .5s cubic-bezier(.4,.1,.2,1); }
.sr-slide {
  position: relative; flex: 0 0 100%; min-width: 0;
  min-height: 300px;
  display: flex; align-items: center;
  padding: 34px 40px 34px 68px;
  overflow: hidden;
}
/* --sr-art is an optional drop-in file; when it is missing the gradient
   underneath is what renders, so the page never shows a broken box */
.sr-slide__bg {
  position: absolute; inset: 0; z-index: 0;
  background-position: center right, center; background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
}
.sr-slide--a .sr-slide__bg {
  background-image: var(--sr-art, none),
    radial-gradient(120% 130% at 78% 45%, #7a24d6 0%, #4a1690 45%, #2a1049 100%);
}
.sr-slide--b .sr-slide__bg {
  background-image: var(--sr-art, none),
    radial-gradient(120% 130% at 78% 45%, #d43fb8 0%, #7a1fa8 48%, #33124f 100%);
}
/* the first layer is a scrim: whatever artwork lands in the slot, the headline
   and the yellow amount plates always sit on something dark */
.sr-slide__gl {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(18,9,31,.88) 0%, rgba(18,9,31,.60) 32%, rgba(18,9,31,0) 60%),
    /* `cover` slices the banner at the frame — these three edges are dipped so
       the cut falls inside a shadow rather than on a lit part of the picture */
    linear-gradient(270deg, rgba(18,9,31,.52) 0, transparent 13%),
    linear-gradient(0deg,   rgba(18,9,31,.42) 0, transparent 12%),
    linear-gradient(180deg, rgba(18,9,31,.38) 0, transparent 11%),
    radial-gradient(46% 60% at 12% 30%, rgba(233,48,255,.22), transparent 70%),
    radial-gradient(40% 55% at 88% 70%, rgba(33,212,253,.18), transparent 70%);
}

/* neon "speaker stack" that fills the right half until real art lands */
.sr-slide__art {
  position: absolute; right: -2%; top: 50%; transform: translateY(-50%);
  z-index: 1; pointer-events: none;
  width: min(42%, 430px); aspect-ratio: 1 / 1; border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,.13) 0 17%, transparent 18%),
    radial-gradient(circle, transparent 0 25%, rgba(255,255,255,.10) 26% 28%, transparent 29%),
    radial-gradient(circle, transparent 0 37%, rgba(233,48,255,.26) 38% 41%, transparent 42%),
    radial-gradient(circle, transparent 0 51%, rgba(33,212,253,.22) 52% 55%, transparent 56%);
}
.sr-slide__art::before,
.sr-slide__art::after { content: ""; position: absolute; border-radius: 50%; }
.sr-slide__art::before {
  left: 4%; top: 10%; width: 15%; aspect-ratio: 1 / 1;
  background: radial-gradient(circle at 34% 32%, #ff9ee6, #c026a8);
  box-shadow: 0 0 26px rgba(255,90,220,.66);
}
.sr-slide__art::after {
  right: 8%; bottom: 12%; width: 20%; aspect-ratio: 1 / 1; border-radius: 24%;
  transform: rotate(16deg);
  background: linear-gradient(140deg, rgba(120,235,255,.95), rgba(47,107,255,.72));
  box-shadow: 0 0 30px rgba(33,212,253,.55);
}

.sr-slide__in { position: relative; z-index: 2; max-width: 560px; min-width: 0; }

/* Drop-in artwork layer for the banner blocks — same contract as --sr-art on
   the hero: no file, no box, the CSS decoration underneath just stays.
   The slot carries no picture of its OWN: ::before is the light under the art
   and ::after is the art. A negative z-index child will NOT do that job — it
   goes behind the parent's CONTENT but still paints above the parent's own
   background, so a bloom written that way veils the very artwork it sits under.
   Two pseudo-elements paint in tree order and stack correctly. */
.sr-deco {
  position: absolute; right: 0; top: 0; bottom: 0; z-index: 0;
  width: 46%; max-width: 460px; pointer-events: none;
  /* several cut-outs are drawn all the way to the bottom of their own file
     (pkg.png, tour-bgaming.png), so the character is sliced by the card edge.
     Feathering the last tenth turns that cut into a fade. --sr-feather is a
     per-slot variable so the wide banner can fade its ends instead. The mask
     applies to the whole subtree, so one declaration feathers both layers. */
  --sr-feather: linear-gradient(180deg,
      #000 0 70%, rgba(0,0,0,.78) 86%, rgba(0,0,0,.22) 96%, transparent 100%);
  -webkit-mask-image: var(--sr-feather);
          mask-image: var(--sr-feather);
}
/* a bloom under the cut-out. Deliberately a gradient and NOT a blurred copy of
   the file: a blurred copy has to reach the edges of the slot to be useful, and
   --sr-feather then cuts it off square — a lit rectangle sitting on the card,
   worse than the crop it was meant to hide. */
.sr-deco::before {
  content: ""; position: absolute; inset: 4% 2% 0 8%;
  background: radial-gradient(56% 56% at 56% 46%,
    rgba(255,255,255,.22), rgba(255,255,255,.08) 44%, transparent 72%);
  filter: blur(12px);
}
.sr-deco::after {
  content: ""; position: absolute; inset: 0;
  background-image: var(--sr-art, none);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
}
.sr-deco--wide {
  width: 100%; max-width: none;
  --sr-feather: linear-gradient(90deg,
      transparent 0, rgba(0,0,0,.5) 3%, #000 9%, #000 91%, rgba(0,0,0,.5) 97%, transparent 100%);
}
/* the banner IS an opaque rectangle, so HERE a blurred over-scaled copy of the
   same file is exactly right — it fills the letterbox `contain` leaves at top
   and bottom with a soft continuation of the picture instead of flat gradient,
   and the sharp copy on ::after stays crisp on top of it */
.sr-deco--wide::before {
  inset: 0;
  background: none;
  background-image: var(--sr-art, none);
  background-repeat: no-repeat; background-position: center;
  background-size: cover;
  transform: scale(1.18);
  filter: blur(26px) saturate(1.25) brightness(.9);
  opacity: .72;
}
.sr-deco--wide::after { background-position: center; }

.sr-slide__k {
  margin: 0 0 12px;
  font-size: clamp(20px, 2.4vw, 30px); font-weight: 800; color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.sr-amts { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 20px; }
.sr-amt {
  display: inline-block; max-width: 100%;
  padding: 5px 14px; border-radius: 5px;
  background: #120a1d;
  color: var(--sr-yellow);
  font-size: clamp(15px, 1.7vw, 21px); font-weight: 800; line-height: 1.3;
  overflow-wrap: anywhere;
}
.sr-hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

.sr-hero__ar {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(20,10,34,.55); border: 1px solid rgba(255,255,255,.16);
  color: #fff; cursor: pointer;
}
.sr-hero__ar:hover { background: rgba(20,10,34,.85); border-color: var(--sr-mag); }
.sr-hero__ar--p { left: 14px; }
.sr-hero__ar--n { right: 14px; }
.sr-hero__ar svg { width: 15px; height: 15px; }

.sr-hero__dots {
  position: absolute; left: 0; right: 0; bottom: 14px; z-index: 5;
  display: flex; justify-content: center; gap: 7px;
}
.sr-hero__dot {
  width: 22px; height: 5px; padding: 0;
  background: rgba(255,255,255,.3); border: 0; border-radius: 3px; cursor: pointer;
  transition: background .2s, width .2s;
}
.sr-hero__dot.is-on { background: #fff; width: 32px; }

/* =========================================================================
   chip rail
   ========================================================================= */
.sr-chips { position: relative; margin-top: 16px; }
.sr-chips::after {
  content: ""; position: absolute; right: 0; top: 0; bottom: 4px; width: 46px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(20,10,34,0), var(--sr-bg));
}
.sr-chips__t {
  display: flex; gap: 9px; overflow-x: auto; padding-bottom: 4px;
  scrollbar-width: none;
}
.sr-chips__t::-webkit-scrollbar { display: none; }
.sr-chip {
  flex: none; display: inline-flex; align-items: center; gap: 8px;
  min-height: 44px; padding: 8px 16px;
  background: linear-gradient(180deg, var(--sr-panel2), var(--sr-panel));
  border: 1px solid var(--sr-line); border-radius: 10px;
  font-size: 12px; font-weight: 800; letter-spacing: .7px; text-transform: uppercase;
  color: var(--sr-tx); white-space: nowrap;
}
.sr-chip:hover { border-color: var(--sr-mag); box-shadow: 0 0 14px rgba(233,48,255,.22); }
.sr-chip__ic { width: 18px; height: 18px; flex: none; }

/* =========================================================================
   section head
   ========================================================================= */
.sr-sec { margin-top: 34px; }
.sr-sec__h { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.sr-sec__ic {
  width: 38px; height: 38px; flex: none; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, var(--sr-acc), var(--sr-acc2));
  color: #fff;
}
.sr-sec__ic svg { width: 19px; height: 19px; }
.sr-sec__t { font-size: 20px; flex: 1 1 auto; min-width: 0; overflow-wrap: anywhere; }
.sr-sec__all {
  flex: none; padding: 5px 12px; border-radius: 6px;
  background: var(--sr-panel2); border: 1px solid var(--sr-line);
  font-size: 11px; font-weight: 800; letter-spacing: .7px; text-transform: uppercase;
  color: var(--sr-tx2);
}
.sr-sec__all:hover { border-color: var(--sr-mag); color: #fff; }

/* =========================================================================
   game grid
   ========================================================================= */
/* auto-FIT, not auto-fill: the source gives exactly six games and six live
   tables, and auto-fill keeps the empty tracks it created, so on a wide monitor
   the row stopped two thirds of the way across. auto-fit collapses them and the
   six tiles stretch edge to edge.
   The ceiling belongs on the ITEM, not on the track. The header search hides
   non-matching tiles with [hidden], which removes them as grid items; auto-fit
   then collapses those tracks and a 1fr survivor absorbs the whole row — one
   match rendered a single tile 1209px wide and 1680px tall (aspect-ratio 3/4)
   on a 16912px-long page. Bounding the track instead would be worse: a definite
   max makes the auto-repeat count use THAT number, so minmax(154px, 300px)
   yields three fat columns rather than six. */
.sr-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(154px, 1fr));
  justify-items: center;
}
.sr-grid > * { min-width: 0; width: 100%; max-width: 300px; }

.sr-game {
  position: relative; display: block; min-width: 0;
  border-radius: var(--sr-r2); overflow: hidden;
  background: var(--sr-panel);
  border: 1px solid var(--sr-line);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.sr-game:hover { transform: translateY(-3px); border-color: var(--sr-mag); box-shadow: 0 10px 26px rgba(233,48,255,.24); }

.sr-game__art {
  position: relative; display: block; aspect-ratio: 3 / 4;
  background-size: cover, cover; background-position: center, center;
  background-repeat: no-repeat, no-repeat;
}
.sr-game--1 .sr-game__art { background-image: var(--sr-art, none), linear-gradient(160deg, #3ba7ff 0%, #1560c8 55%, #0b2f6b 100%); }
.sr-game--2 .sr-game__art { background-image: var(--sr-art, none), linear-gradient(160deg, #ff6a8e 0%, #d81f4a 55%, #6b0b22 100%); }
.sr-game--3 .sr-game__art { background-image: var(--sr-art, none), linear-gradient(160deg, #ffb84d 0%, #ef6c00 55%, #6b2f00 100%); }
.sr-game--4 .sr-game__art { background-image: var(--sr-art, none), linear-gradient(160deg, #7bf1a8 0%, #12a05a 55%, #05381f 100%); }
.sr-game--5 .sr-game__art { background-image: var(--sr-art, none), linear-gradient(160deg, #c58bff 0%, #7b1fd4 55%, #2c0b52 100%); }
.sr-game--6 .sr-game__art { background-image: var(--sr-art, none), linear-gradient(160deg, #ffe27a 0%, #e0a800 55%, #5c4300 100%); }

.sr-game__vg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,4,20,0) 32%, rgba(10,4,20,.86) 100%);
}
.sr-game__rk {
  position: absolute; left: 8px; bottom: 6px; z-index: 2;
  font-size: 54px; font-weight: 900; line-height: .82;
  color: transparent;
  background: linear-gradient(180deg, #fff6c9, #ffc53d 45%, #b47000);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-stroke: 1.5px rgba(255,255,255,.55);
}
/* the title lives in the footer, never over the art — a long localised name
   would otherwise be silently clipped by the tile */
.sr-game__ft { display: block; padding: 8px 9px 10px; }
.sr-game__nm {
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2;
  overflow: hidden; overflow-wrap: anywhere;
  min-height: 2.34em; margin-bottom: 4px;
  font-size: 12.5px; font-weight: 800; line-height: 1.17; color: #fff;
}
.sr-game__meta {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; color: var(--sr-tx3);
}
.sr-game__pv { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.sr-game__rt { margin-left: auto; flex: none; color: var(--sr-green); font-weight: 800; }

/* live dealer tile — landscape, title over the art, category underneath */
.sr-game--live .sr-game__art { aspect-ratio: 4 / 3; }
.sr-game--live .sr-game__nm {
  position: absolute; left: 10px; right: 10px; bottom: 26px; z-index: 2;
  min-height: 0; margin: 0;
  font-size: 13.5px; text-transform: uppercase; letter-spacing: .3px;
  text-shadow: 0 2px 6px rgba(0,0,0,.7);
}
.sr-game--live .sr-game__sub {
  position: absolute; left: 10px; right: 10px; bottom: 8px; z-index: 2;
  font-size: 10.5px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,.75);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* =========================================================================
   jackpot band
   ========================================================================= */
.sr-jack {
  position: relative; margin-top: 34px; overflow: hidden;
  border-radius: var(--sr-r);
  background: linear-gradient(104deg, #a629d6 0%, #d63ac0 42%, #7a1fd4 100%);
  padding: 30px 24px;
  text-align: center;
  isolation: isolate;
}
.sr-jack::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(30% 60% at 12% 50%, rgba(255,255,255,.20), transparent 70%),
    radial-gradient(30% 60% at 88% 50%, rgba(255,255,255,.16), transparent 70%),
    /* scattered chips, drawn rather than loaded */
    radial-gradient(circle at 7% 22%, #ffd34d 0 12px, rgba(255,255,255,.55) 12px 15px, transparent 16px),
    radial-gradient(circle at 15% 74%, #ff5a6e 0 15px, rgba(255,255,255,.55) 15px 18px, transparent 19px),
    radial-gradient(circle at 88% 26%, #4fb8ff 0 13px, rgba(255,255,255,.55) 13px 16px, transparent 17px),
    radial-gradient(circle at 94% 70%, #ffd34d 0 11px, rgba(255,255,255,.55) 11px 14px, transparent 15px),
    radial-gradient(circle at 78% 84%, #6ee7a8 0 9px, rgba(255,255,255,.5) 9px 11px, transparent 12px);
}
.sr-jack--art::before { display: none; }
/* ::after is generated last, so it lands above the artwork layer and below the
   copy, which carries z-index 1 */
.sr-jack::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(46% 76% at 50% 54%,
      rgba(22,6,38,.80), rgba(22,6,38,.46) 54%, transparent 82%),
    /* An inner vignette sitting exactly where the letterbox seam falls, so the
       join between artwork and base gradient is dark-on-dark either way.
       The ramp has to be at least half the letterbox: `contain` on a 3.81 image
       leaves (1 - bandAspect/3.81)/2 at each edge, so 24% covers every band
       aspect down to ~2.1, and below that the ≤1024 rule takes over. */
    linear-gradient(180deg, rgba(12,4,24,.62) 0, transparent 24%,
                            transparent 76%, rgba(12,4,24,.62) 100%),
    linear-gradient(90deg, rgba(12,4,24,.52) 0, transparent 11%,
                           transparent 89%, rgba(12,4,24,.52) 100%);
}
/* the band's artwork is the brightest surface on the page — the outline button
   needs a fill of its own to stay legible on top of it */
.sr-jack--art .sr-btn--neo { background: rgba(16,7,28,.78); }
/* .sr-shine is absolutely positioned and must stay that way — a `> *` rule that
   forces position:relative turns it into a normal-flow box. Same trap as .sr-deco. */
.sr-jack > *:not(.sr-deco):not(.sr-shine) { position: relative; z-index: 1; }
.sr-jack__k {
  font-size: 12px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,.8); margin-bottom: 6px;
}
.sr-jack__w {
  font-size: clamp(34px, 6vw, 66px); font-weight: 900; letter-spacing: 2px; line-height: 1;
  color: transparent;
  background: linear-gradient(180deg, #fff8d4, #ffc93c 48%, #d07f00);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-stroke: 2px rgba(255,255,255,.5);
  margin-bottom: 8px;
}
.sr-jack__v {
  font-size: clamp(22px, 3.6vw, 40px); font-weight: 900; color: #fff;
  text-shadow: 0 3px 14px rgba(0,0,0,.36);
  overflow-wrap: anywhere; margin-bottom: 16px;
}
.sr-jack__s { color: rgba(255,255,255,.86); margin-bottom: 18px; }

/* =========================================================================
   reviews
   ========================================================================= */
.sr-revs {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.sr-revs > * { min-width: 0; }
.sr-rev {
  display: flex; flex-direction: column; min-width: 0;
  padding: 16px;
  background: linear-gradient(180deg, var(--sr-panel2), var(--sr-panel));
  border: 1px solid var(--sr-line); border-radius: var(--sr-r2);
}
.sr-rev__w { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.sr-rev__av {
  width: 32px; height: 32px; flex: none; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, var(--sr-mag), var(--sr-acc2));
  font-size: 14px; font-weight: 800;
}
.sr-rev__n { font-size: 14px; font-weight: 800; min-width: 0; overflow-wrap: anywhere; }
.sr-rev__st { display: flex; gap: 2px; margin-bottom: 8px; color: var(--sr-yellow); }
.sr-rev__st svg { width: 14px; height: 14px; }
.sr-rev__b { margin: 0; font-size: 13.5px; color: var(--sr-tx2); }

/* =========================================================================
   ratings
   ========================================================================= */
.sr-scores {
  padding: 18px;
  background: linear-gradient(180deg, var(--sr-panel2), var(--sr-panel));
  border: 1px solid var(--sr-line); border-radius: var(--sr-r);
}
.sr-scores__top { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.sr-scores__big {
  flex: none; font-size: 42px; font-weight: 900; line-height: 1;
  color: transparent;
  background: linear-gradient(180deg, #fff6c9, #ffc53d 55%, #d07f00);
  -webkit-background-clip: text; background-clip: text;
}
.sr-scores__big small { font-size: 19px; color: var(--sr-tx3); -webkit-text-fill-color: var(--sr-tx3); }
.sr-scores__m { min-width: 0; }
.sr-scores__l { display: block; font-size: 15px; font-weight: 800; }
.sr-scores__s { display: block; font-size: 12.5px; color: var(--sr-tx3); }

.sr-score { margin-bottom: 13px; }
.sr-score:last-child { margin-bottom: 0; }
.sr-score__h { display: flex; align-items: baseline; gap: 10px; margin-bottom: 5px; }
.sr-score__k { font-size: 13.5px; font-weight: 700; min-width: 0; overflow-wrap: anywhere; }
.sr-score__v { margin-left: auto; flex: none; font-size: 13px; font-weight: 800; color: var(--sr-yellow); }
.sr-score__bar {
  display: block; height: 8px; width: 100%;
  background: #1b0e2c; border-radius: 4px; overflow: hidden;
}
.sr-score__f {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--sr-acc), var(--sr-mag));
  border-radius: 4px;
}

/* =========================================================================
   VIP block
   ========================================================================= */
.sr-vip {
  position: relative; margin-top: 34px; overflow: hidden;
  border-radius: var(--sr-r);
  background: linear-gradient(102deg, #8a24d6 0%, #c93bd2 48%, #5a1aa6 100%);
  isolation: isolate;
}
.sr-vip::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(60% 90% at 82% 40%, rgba(255,255,255,.22), transparent 72%);
}
.sr-vip__in { position: relative; z-index: 1; padding: 26px 24px 24px; }
/* the tier row is translucent, so the car has to stay clear of it rather than
   sit behind it and muddy the labels */
.sr-vip .sr-deco { bottom: 36%; }
.sr-vip__h { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.sr-vip__crown {
  width: 38px; height: 38px; flex: none; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,.18);
}
.sr-vip__crown svg { width: 20px; height: 20px; color: #fff; }
.sr-vip__lbl { font-size: 17px; font-weight: 800; min-width: 0; }
.sr-vip__t {
  max-width: 620px; margin-bottom: 12px;
  font-size: clamp(20px, 2.6vw, 30px); font-weight: 900; color: var(--sr-yellow);
  text-shadow: 0 2px 12px rgba(0,0,0,.34);
}
.sr-vip__s { max-width: 620px; color: rgba(255,255,255,.9); margin-bottom: 18px; }

.sr-tiers {
  display: grid; gap: 12px; margin-top: 22px;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.sr-tiers > * { min-width: 0; }
.sr-tier {
  position: relative; min-width: 0; padding: 16px 16px 18px;
  background: linear-gradient(170deg, rgba(255,255,255,.16), rgba(0,0,0,.24));
  border: 1px solid rgba(255,255,255,.18); border-radius: var(--sr-r2);
}
.sr-tier__b {
  position: absolute; top: -9px; left: 16px;
  padding: 3px 10px; border-radius: 5px;
  font-size: 10px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase;
}
.sr-tier--on .sr-tier__b { background: var(--sr-green2); color: #fff; }
.sr-tier--off .sr-tier__b { background: rgba(0,0,0,.42); color: rgba(255,255,255,.75); }
.sr-tier__l { font-size: 17px; font-weight: 800; margin-bottom: 9px; }
.sr-tier__m {
  display: block; height: 7px; margin-bottom: 10px;
  background: rgba(0,0,0,.3); border-radius: 4px; overflow: hidden;
}
.sr-tier__mf { display: block; height: 100%; background: var(--sr-yellow); border-radius: 4px; }
.sr-tier__p { font-size: 11.5px; color: rgba(255,255,255,.82); margin-bottom: 6px; }
.sr-tier__r { font-size: 19px; font-weight: 900; color: var(--sr-yellow); overflow-wrap: anywhere; }

/* =========================================================================
   tournaments
   ========================================================================= */
.sr-tours { display: grid; gap: 14px; }
.sr-tour {
  position: relative; min-width: 0; overflow: hidden;
  border-radius: var(--sr-r);
  border: 1px solid rgba(33,212,253,.5);
  box-shadow: 0 0 22px rgba(33,212,253,.14);
  padding: 22px 24px 24px;
  isolation: isolate;
}
.sr-tour--a { background: linear-gradient(102deg, #6f1fc4 0%, #b02fc9 55%, #3d1170 100%); }
.sr-tour--b { background: linear-gradient(102deg, #1d3f8f 0%, #2f6bff 52%, #16224d 100%); }
.sr-tour::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(55% 90% at 84% 45%, rgba(255,255,255,.18), transparent 72%);
}
.sr-tour > *:not(.sr-deco):not(.sr-shine) { position: relative; z-index: 1; }
.sr-tour__c {
  display: inline-flex; align-items: center; gap: 6px; margin-bottom: 12px;
  padding: 4px 11px; border-radius: 14px;
  background: rgba(0,0,0,.4); font-size: 12px; font-weight: 700;
}
.sr-tour__c svg { width: 13px; height: 13px; }
.sr-tour__n { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.sr-tour__s { margin: 0; color: rgba(255,255,255,.86); font-size: 13.5px; }
.sr-tour__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

/* =========================================================================
   offer cards (bonuses page)
   ========================================================================= */
.sr-offers { display: grid; gap: 16px; }
.sr-offer {
  position: relative; overflow: hidden; min-width: 0;
  border-radius: var(--sr-r);
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px; align-items: center;
  padding: 22px 24px 24px;
  isolation: isolate;
}
.sr-offer::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(58% 96% at 78% 46%, rgba(255,255,255,.2), transparent 72%);
}
/* both decoration layers are absolutely positioned; re-declaring position on
   them turns them into grid items and shunts the real content out of place.
   .sr-offer__spec is excluded too — this selector is (0,3,0) and its min-width:0
   was quietly beating the panel's own 210px floor, leaving the six panels'
   left edges staggered by up to 21px down the page. */
.sr-offer > *:not(.sr-deco):not(.sr-shine):not(.sr-offer__spec) {
  position: relative; z-index: 1; min-width: 0;
}
.sr-offer > .sr-offer__spec { position: relative; z-index: 1; }
/* the six skins live in tokens because the in-article promo banners use the
   same set — one place to change a bonus colour, two components that follow */
.sr-offer--o1 { background: var(--sr-sk1); }
.sr-offer--o2 { background: var(--sr-sk2); }
.sr-offer--o3 { background: var(--sr-sk3); }
.sr-offer--o4 { background: var(--sr-sk4); }
.sr-offer--o5 { background: var(--sr-sk5); }
.sr-offer--o6 { background: var(--sr-sk6); }

/* the same neon stack as the hero, scaled down, so a card without artwork
   still reads as a designed banner rather than an empty gradient */
.sr-offer::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  right: 27%; top: 50%; transform: translateY(-50%);
  width: 190px; height: 190px; border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255,255,255,.16) 0 16%, transparent 17%),
    radial-gradient(circle, transparent 0 27%, rgba(255,255,255,.13) 28% 31%, transparent 32%),
    radial-gradient(circle, transparent 0 42%, rgba(255,255,255,.10) 43% 46%, transparent 47%);
}
/* real artwork replaces the stand-in rather than layering over it */
.sr-offer--art::after { display: none; }
.sr-offer__t { font-size: 19px; font-weight: 800; margin-bottom: 12px; overflow-wrap: anywhere; }
.sr-offer__cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
/* the spec panel owns the right edge of the card, so the artwork has to stop
   short of it instead of running underneath */
.sr-offer .sr-deco { right: 238px; width: 32%; max-width: 340px; }

.sr-offer__spec {
  flex: none; align-self: center;
  min-width: 210px; padding: 12px 14px;
  background: rgba(10,4,20,.62);
  border: 1px solid rgba(255,255,255,.16); border-radius: var(--sr-r2);
}
.sr-offer__row {
  display: flex; align-items: baseline; gap: 14px;
  padding: 4px 0; font-size: 13px;
}
.sr-offer__row + .sr-offer__row { border-top: 1px solid rgba(255,255,255,.12); }
.sr-offer__k { color: rgba(255,255,255,.78); min-width: 0; overflow-wrap: anywhere; }
.sr-offer__v { margin-left: auto; flex: none; font-weight: 800; }

/* =========================================================================
   in-article promo banner
   -------------------------------------------------------------------------
   A slimmer sibling of .sr-offer, dropped between the article's sections. It
   is a direct child of .sr-art__body, so it inherits the article measure and
   needs no width of its own. Artwork is always one of the transparent cut-outs.
   ========================================================================= */
.sr-promo {
  position: relative; overflow: hidden; min-width: 0;
  display: block; margin: 30px 0;
  border-radius: var(--sr-r);
  border: 1px solid rgba(255,255,255,.15);
  isolation: isolate;
}
.sr-promo--o1 { background: var(--sr-sk1); }
.sr-promo--o2 { background: var(--sr-sk2); }
.sr-promo--o3 { background: var(--sr-sk3); }
.sr-promo--o4 { background: var(--sr-sk4); }
.sr-promo--o5 { background: var(--sr-sk5); }
.sr-promo::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(56% 96% at 76% 46%, rgba(255,255,255,.20), transparent 72%);
}
/* both decoration layers are absolutely positioned — re-declaring position on
   them would drag them into the flow. Same guard as .sr-offer. */
.sr-promo > *:not(.sr-deco):not(.sr-shine) { position: relative; z-index: 1; min-width: 0; }
.sr-promo__in { padding: 20px 24px 22px; max-width: 60%; }
.sr-promo__k {
  margin: 0 0 7px; font-size: 11px; font-weight: 800;
  letter-spacing: 1.6px; text-transform: uppercase; color: rgba(255,255,255,.8);
}
.sr-promo__t {
  margin: 0 0 12px; font-size: 19px; font-weight: 800; color: #fff;
  overflow-wrap: anywhere;
}
.sr-promo .sr-amts { margin-bottom: 16px; }
/* the cut-out owns the right side; the copy is capped at 60% so they never meet */
.sr-promo .sr-deco { width: 40%; max-width: 320px; }

/* =========================================================================
   platform cards (app page)
   ========================================================================= */
.sr-plats {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.sr-plats > * { min-width: 0; }
.sr-plat {
  min-width: 0; padding: 20px;
  background: linear-gradient(180deg, var(--sr-panel2), var(--sr-panel));
  border: 1px solid var(--sr-line); border-radius: var(--sr-r);
  display: flex; flex-direction: column;
}
.sr-plat__ic {
  width: 48px; height: 48px; margin-bottom: 14px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, var(--sr-acc), var(--sr-acc2)); color: #fff;
}
.sr-plat__ic svg { width: 25px; height: 25px; }
.sr-plat__t { font-size: 18px; margin-bottom: 6px; }
.sr-plat__n { font-size: 13px; color: var(--sr-tx3); margin-bottom: 16px; flex: 1 1 auto; }

/* =========================================================================
   article
   ========================================================================= */
.sr-art { margin-top: 40px; }
.sr-art__in {
  padding: 28px clamp(18px, 2.4vw, 40px) 32px;
  background: var(--sr-bg2);
  border: 1px solid var(--sr-line); border-radius: var(--sr-r);
}
/* the measure lives on the CHILDREN, not on the panel — the panel keeps its
   full width so the card still spans the column, and the copy inside it is
   centred rather than left-aligned against a wide empty gutter */
.sr-art__in > * {
  max-width: min(100%, var(--sr-measure));
  margin-inline: auto;
}
.sr-art__h1 {
  font-size: clamp(23px, 3.2vw, 34px);
  margin-bottom: 16px;
  color: transparent;
  background: linear-gradient(96deg, #ffffff 0%, #f0b6ff 48%, #b46bff 100%);
  -webkit-background-clip: text; background-clip: text;
  overflow-wrap: anywhere;
}
/* no per-element ch cap any more: the width is one shared measure above, so
   heading, lede, table and body all line up on the same left edge */
.sr-art__lede { font-size: 16.5px; color: var(--sr-tx2); }
.sr-art__body { color: var(--sr-tx2); }
.sr-art__body h2 {
  margin: 34px 0 12px; font-size: clamp(19px, 2.4vw, 25px); color: #fff;
  overflow-wrap: anywhere;
}
.sr-art__body h3 { margin: 24px 0 9px; font-size: 17px; color: #f0c9ff; overflow-wrap: anywhere; }
.sr-art__body h4 { margin: 18px 0 8px; font-size: 15px; color: #f0c9ff; overflow-wrap: anywhere; }
.sr-art__body strong { color: #fff; }
/* :not(.sr-btn) matters — the in-article promo banners put a real CTA button in
   the prose, and the bare-link rule would repaint it cyan and underline it */
.sr-art__body a:not(.sr-btn) { color: var(--sr-cyan); text-decoration: underline; }

.sr-ul, .sr-ol { padding-left: 0; list-style: none; }
.sr-ul > li {
  position: relative; padding-left: 24px; margin-bottom: 8px;
}
.sr-ul > li::before {
  content: ""; position: absolute; left: 6px; top: .62em;
  width: 7px; height: 7px; border-radius: 2px;
  background: linear-gradient(140deg, var(--sr-mag), var(--sr-acc));
}
.sr-ol { counter-reset: sr-c; }
.sr-ol > li {
  position: relative; padding-left: 34px; margin-bottom: 9px; counter-increment: sr-c;
}
.sr-ol > li::before {
  content: counter(sr-c);
  position: absolute; left: 0; top: .1em;
  width: 23px; height: 23px; border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, var(--sr-acc), var(--sr-acc2));
  color: #fff; font-size: 12px; font-weight: 800; line-height: 1;
}

.sr-tw { margin: 18px 0 22px; }
.sr-tw__s { overflow-x: auto; border: 1px solid var(--sr-line); border-radius: var(--sr-r2); }
.sr-tbl { width: 100%; border-collapse: collapse; font-size: 13.5px; min-width: 460px; }
.sr-tbl th, .sr-tbl td {
  padding: 10px 13px; text-align: left; vertical-align: top;
  border-bottom: 1px solid var(--sr-line);
}
.sr-tbl thead th {
  background: var(--sr-panel2); color: #fff; font-weight: 800; white-space: nowrap;
}
.sr-tbl tbody th { color: #fff; font-weight: 700; }
.sr-tbl tbody tr:nth-child(2n) { background: rgba(255,255,255,.028); }
.sr-tbl tbody tr:last-child th, .sr-tbl tbody tr:last-child td { border-bottom: 0; }
.sr-tw__n { margin: 7px 2px 0; font-size: 12px; color: var(--sr-tx3); }

.sr-toc {
  /* `auto` on the sides, not 0 — this is a direct child of .sr-art__in and a
     margin shorthand here would beat the shared measure and shove the box back
     against the left edge while every sibling stayed centred */
  margin: 0 auto 26px; padding: 16px 18px;
  background: var(--sr-panel); border: 1px solid var(--sr-line); border-radius: var(--sr-r2);
}
.sr-toc__k {
  margin: 0 0 9px; font-size: 11px; font-weight: 800;
  letter-spacing: 1.2px; text-transform: uppercase; color: var(--sr-tx3);
}
.sr-toc__l {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 4px 18px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.sr-toc__l > li { min-width: 0; }
.sr-toc__l a { font-size: 13.5px; color: var(--sr-tx2); overflow-wrap: anywhere; }
.sr-toc__l a:hover { color: var(--sr-mag); }

.sr-q {
  margin-bottom: 9px;
  background: var(--sr-panel); border: 1px solid var(--sr-line);
  border-radius: var(--sr-r2); overflow: hidden;
}
.sr-q > summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: flex-start; gap: 12px;
  padding: 13px 16px;
}
.sr-q > summary::-webkit-details-marker { display: none; }
.sr-q__q { font-size: 15px; font-weight: 700; color: #fff; margin: 0; min-width: 0; overflow-wrap: anywhere; }
.sr-q__x {
  margin-left: auto; flex: none; width: 20px; height: 20px; margin-top: 2px;
  color: var(--sr-mag); transition: transform .2s;
}
.sr-q[open] .sr-q__x { transform: rotate(45deg); }
.sr-q__a { padding: 0 16px 14px; color: var(--sr-tx2); }
.sr-q__a > p:last-child { margin-bottom: 0; }

.sr-by {
  display: flex; align-items: center; gap: 12px;
  margin-top: 26px; padding: 14px 16px;
  background: var(--sr-panel); border: 1px solid var(--sr-line);
  border-left: 3px solid var(--sr-mag); border-radius: var(--sr-r2);
}
.sr-by__av {
  width: 40px; height: 40px; flex: none; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(140deg, var(--sr-mag), var(--sr-acc2));
  font-size: 16px; font-weight: 800;
}
.sr-by__m { min-width: 0; }
.sr-by__n { display: block; font-weight: 800; color: #fff; overflow-wrap: anywhere; }
.sr-by__r { display: block; font-size: 12.5px; color: var(--sr-mag); }

.sr-note {
  margin-top: 18px; padding: 13px 15px;
  background: rgba(233,48,255,.07);
  border: 1px solid rgba(233,48,255,.28); border-radius: var(--sr-r2);
  font-size: 13px; color: var(--sr-tx2);
}
.sr-note p:last-child { margin-bottom: 0; }

/* =========================================================================
   footer
   ========================================================================= */
.sr-foot {
  margin-top: 44px; padding-top: 26px; padding-bottom: 30px;
  border-top: 1px solid var(--sr-line);
  text-align: center; color: var(--sr-tx3); font-size: 13px;
}
.sr-foot__nav {
  list-style: none; margin: 0 0 22px; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px;
}
.sr-foot__nav a {
  font-size: 12px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase;
  color: var(--sr-tx2);
}
.sr-foot__nav a:hover { color: var(--sr-mag); }

.sr-pays { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 22px; }
.sr-pay {
  width: 76px; height: 44px; flex: none; border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff;
}
.sr-pay svg { width: 52px; height: auto; }

.sr-foot__age {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 12px; text-align: left;
}
.sr-age {
  width: 34px; height: 34px; flex: none; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--sr-red); color: var(--sr-red);
  font-size: 12px; font-weight: 800;
}
.sr-foot__d { max-width: 90ch; margin: 0 auto 12px; font-size: 12px; line-height: 1.7; }
.sr-foot__help { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 18px; margin-bottom: 14px; }
.sr-foot__help a { font-size: 12px; color: var(--sr-tx2); text-decoration: underline; }

/* =========================================================================
   cookie bar
   ========================================================================= */
.sr-cookie {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap;
  padding: 12px 18px;
  background: linear-gradient(96deg, #b83fd6, #7b1fd4);
  box-shadow: 0 -6px 22px rgba(0,0,0,.36);
  font-size: 13.5px;
}
.sr-cookie p { margin: 0; min-width: 0; }

/* =========================================================================
   registration modal
   ========================================================================= */
.sr-modal {
  position: fixed; inset: 0; z-index: 100;
  display: none; align-items: center; justify-content: center;
  padding: 18px; background: rgba(8,4,15,.8);
  backdrop-filter: blur(3px);
  overflow-y: auto;
}
.sr-modal.is-open { display: flex; }
.sr-modal__box {
  position: relative;
  width: min(880px, 100%); margin: auto;
  background: linear-gradient(150deg, #4a1580 0%, #2d1050 60%, #3a1266 100%);
  border: 2px solid var(--sr-mag);
  border-radius: 18px;
  box-shadow: var(--sr-glow), var(--sr-shadow);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 18px;
  padding: 24px;
}
.sr-modal__box > * { min-width: 0; }
.sr-modal__x {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.28); border: 0; border-radius: 8px;
  color: #fff; cursor: pointer;
}
.sr-modal__x svg { width: 15px; height: 15px; }
.sr-modal__k {
  margin: 0 0 14px; font-size: 19px; font-weight: 800; text-align: center;
}

.sr-pick { display: grid; gap: 10px; }
.sr-pick__i {
  position: relative; display: flex; align-items: center; gap: 12px;
  padding: 14px 44px 14px 14px; min-width: 0;
  border-radius: var(--sr-r2); border: 2px solid transparent;
  cursor: pointer; text-align: left;
  background: linear-gradient(100deg, #2f8bff 0%, #6f3ff0 100%);
}
.sr-pick__i--a { background: linear-gradient(100deg, #16b97a 0%, #0d7a52 100%); }
.sr-pick__i--b { background: linear-gradient(100deg, #2f8bff 0%, #6f3ff0 100%); }
.sr-pick__i--c { background: linear-gradient(100deg, #7b4fb8 0%, #4a2a80 100%); }
.sr-pick__i.is-on { border-color: var(--sr-mag); box-shadow: 0 0 16px rgba(233,48,255,.4); }
.sr-pick__m { min-width: 0; }
/* a bare <span> stays inline and the amount pill lands on the same line */
.sr-pick__t {
  display: block;
  font-size: 13px; font-weight: 700; color: rgba(255,255,255,.9); margin-bottom: 5px;
}
.sr-pick__r {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  width: 19px; height: 19px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.6);
}
.sr-pick__i.is-on .sr-pick__r { background: var(--sr-mag); border-color: #fff; }
.sr-pick .sr-amt { font-size: 14px; padding: 3px 9px; }
.sr-pick .sr-amts { gap: 5px; margin-bottom: 0; }

.sr-form { display: grid; gap: 10px; align-content: start; }
.sr-form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); gap: 10px; }
.sr-form__row > * { min-width: 0; }
.sr-fld {
  position: relative; display: block; min-width: 0;
  padding: 8px 12px;
  background: rgba(10,4,20,.42); border: 1px solid rgba(255,255,255,.2);
  border-radius: 9px;
}
.sr-fld__k { display: block; font-size: 11px; color: rgba(255,255,255,.62); }
.sr-fld__v { display: block; font-size: 14px; font-weight: 700; overflow-wrap: anywhere; }
.sr-fld--tall { min-height: 52px; display: flex; align-items: center; }
.sr-fld--tall .sr-fld__v { color: rgba(255,255,255,.55); font-weight: 500; }

.sr-check { display: flex; align-items: flex-start; gap: 9px; font-size: 12.5px; color: rgba(255,255,255,.86); }
.sr-check__b {
  width: 19px; height: 19px; flex: none; margin-top: 1px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 2px solid var(--sr-yellow); border-radius: 5px; color: var(--sr-yellow);
}
.sr-check__b svg { width: 11px; height: 11px; }
.sr-modal__fine { font-size: 11px; color: rgba(255,255,255,.55); line-height: 1.55; }
.sr-modal__have { text-align: center; font-size: 13px; color: rgba(255,255,255,.86); }
.sr-modal__have a { color: var(--sr-mag); font-weight: 800; }

/* =========================================================================
   mobile tab bar
   ========================================================================= */
.sr-tabs {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 65;
  display: none;
  background: #22112f; border-top: 1px solid var(--sr-line);
  padding-bottom: env(safe-area-inset-bottom);
}
.sr-tabs__l { display: flex; margin: 0; padding: 0; list-style: none; }
.sr-tabs__l > li { flex: 1 1 0; min-width: 0; }
.sr-tabs__a {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 8px 4px 7px; font-size: 10.5px; font-weight: 700; color: var(--sr-tx3);
  text-align: center;
}
.sr-tabs__a svg { width: 20px; height: 20px; }
.sr-tabs__a.is-on { color: var(--sr-mag); }
.sr-tabs__t { display: block; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 100%; }

/* =========================================================================
   responsive
   ========================================================================= */
@media (max-width: 1180px) {
  .sr-slide { min-height: 260px; padding: 26px 28px 26px 62px; }
  .sr-offer::after { display: none; }
}

@media (max-width: 1024px) {
  :root { --sr-gut: 16px; }

  .sr-shell { grid-template-columns: minmax(0, 1fr); }

  .sr-side {
    position: fixed; top: var(--sr-head-h); left: 0; bottom: 0; z-index: 80;
    width: 268px; height: auto;
    transform: translateX(-100%);
    transition: transform .24s ease;
    box-shadow: 12px 0 30px rgba(0,0,0,.42);
  }
  .sr-side.is-open { transform: translateX(0); }

  .sr-veil {
    position: fixed; inset: 0; z-index: 75;
    background: rgba(8,4,15,.62);
    display: none;
  }
  .sr-veil.is-on { display: block; }

  .sr-burger { display: inline-flex; }
  .sr-tabs { display: block; }
  .sr-main { padding-bottom: 88px; }
  .sr-cookie { bottom: 58px; }

  /* The jackpot banner is 3.81 wide. `contain` inside a band this narrow leaves
     a letterbox taller than the vignette that is supposed to swallow it, and the
     artwork's own hard bottom edge draws a flat line right across the block —
     the exact artefact the desktop treatment removes. Drop the art to the bottom
     so it runs BEHIND the CTA and oversize it; the blurred bleed covers what is
     left above. This has to reach 1024px, not 720px: the seam is worst on a
     tablet in portrait and on a phone turned sideways. */
  .sr-deco--wide::after {
    background-position: center bottom;
    background-size: 132% auto;
  }

  .sr-bal { display: none; }
}

@media (max-width: 720px) {
  .sr-find { display: none; }
  .sr-offer { grid-template-columns: minmax(0, 1fr); }
  .sr-offer__spec { min-width: 0; width: 100%; }
  /* the spec panel drops below the copy, so the art gets the right edge back */
  .sr-offer .sr-deco { right: 0; width: 46%; opacity: .5; }
  /* the promo copy takes the whole width and the cut-out becomes a backdrop */
  .sr-promo__in { max-width: 100%; }
  .sr-promo .sr-deco { width: 52%; opacity: .45; }
  .sr-slide { min-height: 0; padding: 22px 18px 26px; }
  /* the art is a 2.67 banner in a narrow box — anchoring hard right shows the
     scenery instead of the character it was drawn around */
  .sr-slide__bg { background-position: 72% center, center; }
  /* the band's artwork is under the CTA at these widths (see the ≤1024 block),
     so the outline button needs a stronger fill than the desktop one */
  .sr-jack--art .sr-btn--neo { background: rgba(16,7,28,.88); }
  .sr-hero__ar { display: none; }
  .sr-grid { grid-template-columns: repeat(auto-fit, minmax(132px, 1fr)); gap: 9px; }
  .sr-game__rk { font-size: 42px; }
  .sr-game__nm { left: 46px; font-size: 11.5px; }
  .sr-modal__box { padding: 18px; }
  .sr-tbl { min-width: 380px; }
}

@media (max-width: 520px) {
  .sr-logo__i { height: 27px; }
  .sr-head__in { gap: 8px; }
  .sr-head .sr-btn { padding: 6px 11px; font-size: 12px; }
  .sr-gift { width: 32px; }
  .sr-icb { display: none; }
  .sr-jack { padding-top: 22px; padding-bottom: 22px; }
  .sr-foot__nav { gap: 6px 14px; }
  .sr-art__in { padding-top: 20px; padding-bottom: 22px; }
}

/* =========================================================================
   motion
   -------------------------------------------------------------------------
   Everything below is an enhancement layer. The hiding half of the scroll
   reveal is gated behind html.sr-js, which site.js sets the moment it runs —
   with the script blocked or broken nothing is ever invisible.
   ========================================================================= */
@keyframes sr-rise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
@keyframes sr-sweep {
  from { transform: translateX(-120%) skewX(-18deg); }
  to   { transform: translateX(320%) skewX(-18deg); }
}
@keyframes sr-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}
@keyframes sr-neon {
  0%, 100% { box-shadow: 0 0 12px rgba(62,230,107,.35), inset 0 0 12px rgba(62,230,107,.16); }
  50%      { box-shadow: 0 0 24px rgba(62,230,107,.65), inset 0 0 18px rgba(62,230,107,.28); }
}
@keyframes sr-shimmer {
  from { background-position: 180% 0; }
  to   { background-position: -80% 0; }
}
@keyframes sr-pip {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.16); }
}
@keyframes sr-aurora {
  0%, 100% { transform: translate3d(-3%, -2%, 0) scale(1); }
  50%      { transform: translate3d(4%,  3%, 0) scale(1.14); }
}
@keyframes sr-kb {
  0%, 100% { transform: scale(1.04) translate3d(0, 0, 0); }
  50%      { transform: scale(1.13) translate3d(-1.6%, -1.2%, 0); }
}
@keyframes sr-twinkle {
  0%, 100% { opacity: .22; }
  50%      { opacity: .85; }
}
@keyframes sr-halo {
  0%       { box-shadow: 0 0 0 0 rgba(233,48,255,.34); }
  70%,100% { box-shadow: 0 0 0 10px rgba(233,48,255,0); }
}
@keyframes sr-track {
  0%       { transform: translateX(-100%); }
  55%,100% { transform: translateX(320%); }
}
/* inset only: both blocks clip with overflow:hidden, so an outer glow never
   escaped anyway, and the rim now lives on a pseudo-element (see below) */
@keyframes sr-rim {
  0%, 100% { box-shadow: inset 0 0 0 1px rgba(255,255,255,.14), inset 0 0 26px rgba(233,48,255,.10); }
  50%      { box-shadow: inset 0 0 0 1px rgba(255,255,255,.42), inset 0 0 46px rgba(233,48,255,.34); }
}

/* an aurora that drifts behind the whole page. z-index -1 is the right layer
   here: body paints its background onto the canvas, so a negative child sits
   above that and below every scrap of content. */
body::before {
  content: ""; position: fixed; inset: -20%; z-index: -1; pointer-events: none;
  background:
    radial-gradient(38% 34% at 18% 12%, rgba(164,53,240,.20), transparent 68%),
    radial-gradient(34% 30% at 84% 28%, rgba(33,212,253,.12), transparent 70%),
    radial-gradient(40% 36% at 62% 88%, rgba(233,48,255,.13), transparent 72%);
  animation: sr-aurora 28s ease-in-out infinite;
}

.sr-js .sr-in { opacity: 0; }
/* `backwards`, NOT `both`. With `both` the animation keeps contributing its `to`
   values after it finishes, and the animation origin outranks author-normal
   declarations — so `transform: none` from the last keyframe silently killed
   every :hover lift on a revealed card, and this rule's `animation` shorthand
   (0,3,0) also reset animation-name on anything else that declared one.
   `backwards` covers the delay and then gets out of the way; the settled state
   is declared here instead. */
.sr-js .sr-in.is-in {
  animation: sr-rise .55s cubic-bezier(.22,.8,.3,1) backwards;
  animation-delay: var(--sr-d, 0ms);
  opacity: 1;
}

/* a diagonal light band that crosses a card — the element is a plain span so
   it never collides with the ::before/::after those cards already use */
.sr-shine {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none; border-radius: inherit;
}
/* the cards raise their own children to z-index 1, so the band has to sit
   above that or it sweeps underneath the artwork and is never seen */
.sr-tile .sr-shine,
.sr-game .sr-shine,
.sr-offer .sr-shine,
.sr-promo .sr-shine,
.sr-tour .sr-shine { z-index: 3; }
/* on the two big banners the light passes OVER the copy as well — that is the
   effect, not an accident, so it clears the z-index 1 the copy carries */
.sr-jack .sr-shine,
.sr-vip .sr-shine { z-index: 2; }
.sr-shine::before {
  content: ""; position: absolute; top: -30%; bottom: -30%; left: 0; width: 26%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.38), transparent);
  transform: translateX(-120%) skewX(-18deg);
}
.sr-offer:hover .sr-shine::before,
.sr-promo:hover .sr-shine::before,
.sr-tour:hover .sr-shine::before,
.sr-game:hover .sr-shine::before { animation: sr-sweep .9s ease-out; }
/* the rail tiles are the loudest thing in the operator's lobby — they sweep
   on their own rather than waiting for a pointer that a phone does not have */
.sr-tile .sr-shine::before { animation: sr-sweep 4.5s ease-in-out 1.2s infinite; }

.sr-btn { position: relative; overflow: hidden; }
.sr-btn::after {
  content: ""; position: absolute; top: -40%; bottom: -40%; left: 0; width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  transform: translateX(-140%) skewX(-18deg);
  pointer-events: none;
}
.sr-btn:hover::after { animation: sr-sweep .75s ease-out; }
.sr-btn--neo { animation: sr-neon 3.2s ease-in-out infinite; }

.sr-pip { animation: sr-pip 2.4s ease-in-out infinite; }

/* a slow Ken Burns push on the hero. It also earns its keep: the banner is
   `cover`-cropped inside the frame, and a picture that never sits still never
   reads as a still that was cut. The slide clips, so the overscan is free. */
.sr-slide__bg { animation: sr-kb 26s ease-in-out infinite; will-change: transform; }
.sr-slide--b .sr-slide__bg { animation-duration: 31s; animation-delay: -8s; }

/* the cut-out characters drift, the flat banner art does not */
.sr-offer .sr-deco,
.sr-tour .sr-deco,
.sr-vip .sr-deco { animation: sr-float 5.5s ease-in-out infinite; }
.sr-tour--b .sr-deco { animation-delay: -2.2s; }
.sr-vip .sr-deco { animation-duration: 7s; }

.sr-jack__w {
  background-size: 220% 100%;
  animation: sr-shimmer 5s linear infinite;
}
.sr-art__h1 {
  background-size: 220% 100%;
  animation: sr-shimmer 7.5s linear infinite;
}

/* ---- the two banner blocks ---------------------------------------------- */
/* A breathing neon rim, and a slow spotlight that crosses the whole block.
   The rim goes on a PSEUDO-ELEMENT, never on .sr-jack/.sr-vip themselves: both
   carry .sr-in, and the reveal rule's `animation` shorthand at (0,3,0) would
   reset animation-name and the rim would never play. These two pseudos already
   exist as full-bleed layers and declare no animation of their own. */
.sr-jack::after { animation: sr-rim 5.5s ease-in-out infinite; }
.sr-vip::before { animation: sr-rim 5.5s ease-in-out infinite -2.6s; }

.sr-jack .sr-shine {
  /* a scatter of motes over the band — two groups on two clocks so they do not
     all blink in unison */
  background:
    radial-gradient(circle at 12% 26%, rgba(255,255,255,.92) 0 1.6px, transparent 2.2px),
    radial-gradient(circle at 31% 74%, rgba(255,236,150,.9)  0 1.3px, transparent 1.9px),
    radial-gradient(circle at 47% 15%, rgba(255,255,255,.8)  0 1.4px, transparent 2px);
  animation: sr-twinkle 3.4s ease-in-out infinite;
}
.sr-jack .sr-shine::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 63% 82%, rgba(180,240,255,.9)  0 1.5px, transparent 2.1px),
    radial-gradient(circle at 79% 33%, rgba(255,255,255,.85) 0 1.3px, transparent 1.9px),
    radial-gradient(circle at 91% 66%, rgba(255,236,150,.85) 0 1.6px, transparent 2.2px);
  animation: sr-twinkle 4.7s ease-in-out -1.9s infinite;
}
.sr-jack .sr-shine::before,
.sr-vip .sr-shine::before {
  top: -60%; bottom: -60%; width: 46%;
  background: linear-gradient(90deg, transparent,
    rgba(255,255,255,.16) 44%, rgba(255,255,255,.26) 56%, transparent);
  animation: sr-sweep 7s ease-in-out 1.4s infinite;
}
.sr-vip .sr-shine::before { animation-duration: 8.5s; animation-delay: 3.2s; }

.sr-game__art { transition: transform .4s cubic-bezier(.22,.8,.3,1); }
.sr-game:hover .sr-game__art { transform: scale(1.07); }
.sr-game { position: relative; transition: transform .22s, box-shadow .22s; }
.sr-game:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0,0,0,.45),
              0 0 0 1px rgba(233,48,255,.55),
              0 0 26px rgba(233,48,255,.30);
}
.sr-game__art, .sr-game__ft { position: relative; z-index: 1; }

.sr-chip { transition: transform .18s, border-color .16s, box-shadow .16s; }
.sr-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(233,48,255,.5), 0 6px 18px rgba(233,48,255,.22);
}

/* the section badges give one soft outward pulse, like a beat */
.sr-sec__ic { animation: sr-halo 3.6s ease-out infinite; }

.sr-tier { transition: transform .2s, box-shadow .2s; }
.sr-tier:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(0,0,0,.28); }
/* every tier bar reads 0 / N, so instead of a fill there is a light running
   along the empty track */
.sr-tier__m { position: relative; }
.sr-tier__m::after {
  content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255,232,26,.42), transparent);
  transform: translateX(-100%);
  animation: sr-track 3.6s ease-in-out infinite;
}
.sr-tier:nth-child(2) .sr-tier__m::after { animation-delay: -1.2s; }
.sr-tier:nth-child(3) .sr-tier__m::after { animation-delay: -2.4s; }

.sr-btn { transition: transform .16s, filter .16s; }
.sr-btn:hover { transform: translateY(-1px); filter: brightness(1.07); }
.sr-btn:active { transform: translateY(0); }

.sr-offer, .sr-tour, .sr-promo { transition: transform .22s, box-shadow .22s; }
.sr-offer:hover, .sr-tour:hover, .sr-promo:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(0,0,0,.38);
}

/* the cut-out on a promo drifts like every other character cut-out */
.sr-promo .sr-deco { animation: sr-float 6.2s ease-in-out infinite; }
.sr-promo:nth-of-type(2n) .sr-deco { animation-delay: -2.8s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  /* the reveal's resting state is invisible, so it has to be lifted outright
     rather than merely sped up */
  .sr-js .sr-in { opacity: 1; }
  .sr-btn::after, .sr-shine::before { display: none; }
}
