/* ==========================================================================
   RAJSPIN GAME — Home & shared showcase components
   Hero, phone mockup, OG banner, reel-strip selector, bonus cabinet,
   screenshot slider, VIP tiers, testimonials, provider strip.
   ========================================================================== */

/* ------------------------------------------------------------------ *
 * HERO
 * ------------------------------------------------------------------ */

.hero {
  position: relative;
  padding-block: clamp(2.5rem, 1.5rem + 4.5vw, 5.5rem) clamp(3rem, 2rem + 4vw, 5.5rem);
  overflow: clip;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(720px 420px at 74% 18%, rgba(109, 15, 36, 0.55), transparent 68%),
    radial-gradient(560px 380px at 12% 8%, rgba(203, 161, 53, 0.16), transparent 66%);
}
/* faint cabinet grid */
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(203, 161, 53, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(203, 161, 53, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 72%);
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 72%);
}

/* drifting light beams */
.hero__beam {
  position: absolute;
  top: -30%;
  width: 220px;
  height: 160%;
  background: linear-gradient(180deg, rgba(203, 161, 53, 0.14), transparent 70%);
  filter: blur(28px);
  transform: rotate(14deg);
  animation: beam-drift 11s ease-in-out infinite alternate;
}
.hero__beam--a { left: 8%; }
.hero__beam--b { left: 62%; animation-delay: -4s; opacity: 0.7; }
@keyframes beam-drift {
  from { transform: rotate(14deg) translateX(-30px); opacity: 0.5; }
  to   { transform: rotate(9deg) translateX(40px); opacity: 0.95; }
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2.5rem, 2rem + 3vw, 4rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 1000px) {
  .hero__inner { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(2rem, 3vw, 4rem); }
}

.hero__copy { min-width: 0; }

/* --- Phone view: lift the app mockup between the feature pills and the
   primary CTA, so the device is seen before the "Pull to Play" button.
   `display: contents` promotes the copy block's children to grid items of
   .hero__inner, which lets the mockup be ordered in among them. --- */
@media (max-width: 999px) {
  .hero__copy { display: contents; }

  /* the grid gap now provides all vertical rhythm, so the per-element
     bottom margins are cleared to avoid double spacing */
  .hero__inner { gap: var(--sp-5); }
  .hero__kicker,
  .hero h1,
  .hero__lead,
  .hero__usps,
  .hero__cta { margin-bottom: 0; }

  .hero__kicker { order: 1; justify-self: start; }
  .hero h1      { order: 2; }
  .hero__lead   { order: 3; }
  .hero__usps   { order: 4; }
  .mockup       { order: 5; padding-block: 0; }
  .hero__cta    { order: 6; }
  .hero__trust  { order: 7; }

  /* halo and rings are sized off the column — keep them contained */
  .mockup__halo { width: min(112%, 400px); }
  .mockup__rings { width: min(100%, 380px); }
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.42rem 0.95rem 0.42rem 0.5rem;
  margin-bottom: var(--sp-4);
  border-radius: var(--r-pill);
  background: rgba(203, 161, 53, 0.09);
  border: 1px solid var(--color-border-gold);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
}
.hero__kicker b {
  display: inline-block;
  padding: 0.16rem 0.6rem;
  border-radius: var(--r-pill);
  background: var(--grad-gold);
  color: var(--color-text-on-gold);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: var(--fs-hero);
  line-height: 1.04;
  margin-bottom: var(--sp-4);
  letter-spacing: -0.015em;
}
.hero h1 .line { display: block; }
.hero h1 .text-gold { filter: drop-shadow(0 4px 22px rgba(203, 161, 53, 0.28)); }

.hero__lead {
  font-size: var(--fs-lead);
  color: var(--color-text-muted);
  max-width: 58ch;
  margin-bottom: var(--sp-5);
}
.hero__lead strong { color: var(--color-text-primary); font-weight: 700; }

.hero__usps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--sp-5);
}
.hero__usps li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.42rem 0.85rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--color-border-soft);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-text-muted);
}
.hero__usps li svg { width: 14px; height: 14px; color: var(--color-gold); flex: none; }

.hero__cta { margin-bottom: var(--sp-5); }

.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem 1.25rem;
  padding-top: var(--sp-5);
  border-top: 1px solid var(--color-border-soft);
  max-width: 520px;
}
.hero__trust div strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 0.9rem + 1.1vw, 1.65rem);
  line-height: 1.2;
  background: var(--grad-text-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero__trust div span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  font-weight: 700;
}

/* ------------------------------------------------------------------ *
 * PHONE MOCKUP — hero + download page
 * ------------------------------------------------------------------ */

.mockup {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  padding-block: 1rem;
  perspective: 1400px;
}

.mockup__halo {
  position: absolute;
  width: min(120%, 560px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(203, 161, 53, 0.28) 0%, rgba(109, 15, 36, 0.28) 38%, transparent 68%);
  filter: blur(10px);
  animation: halo-breathe 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes halo-breathe {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.07); opacity: 1; }
}

/* concentric gold rings behind the device */
.mockup__rings {
  position: absolute;
  width: min(108%, 520px);
  aspect-ratio: 1;
  pointer-events: none;
}
.mockup__rings i {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(203, 161, 53, 0.16);
}
.mockup__rings i:nth-child(2) { inset: 11%; border-color: rgba(203, 161, 53, 0.11); border-style: dashed; animation: ring-spin 44s linear infinite; }
.mockup__rings i:nth-child(3) { inset: 22%; border-color: rgba(109, 15, 36, 0.5); }
@keyframes ring-spin { to { transform: rotate(360deg); } }

.phone {
  position: relative;
  z-index: 2;
  width: clamp(228px, 20vw + 110px, 322px);
  aspect-ratio: 852 / 1846;
  border-radius: clamp(30px, 3.4vw, 42px);
  padding: clamp(7px, 0.85vw, 11px);
  background:
    linear-gradient(150deg, #F2DFA4 0%, #CBA135 16%, #6B5216 38%, #2A2019 52%, #6B5216 70%, #CBA135 88%, #8A6A1C 100%);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(0, 0, 0, 0.5),
    0 0 70px rgba(203, 161, 53, 0.22);
  transform-style: preserve-3d;
  animation: phone-float 7s ease-in-out infinite;
  will-change: transform;
}
@keyframes phone-float {
  0%, 100% { transform: translateY(0) rotateZ(0deg); }
  50% { transform: translateY(-16px) rotateZ(-0.5deg); }
}

.phone--tilt { animation: phone-float-tilt 8s ease-in-out infinite; }
@keyframes phone-float-tilt {
  0%, 100% { transform: translateY(0) rotateY(-11deg) rotateX(3deg) rotateZ(-1.5deg); }
  50% { transform: translateY(-18px) rotateY(-7deg) rotateX(1deg) rotateZ(-0.5deg); }
}

.phone__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: clamp(24px, 2.7vw, 33px);
  overflow: hidden;
  background: #060405;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.85);
}
.phone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* slow auto-scroll of the app screen content */
.phone__screen--scroll img {
  height: auto;
  animation: screen-pan 22s ease-in-out infinite alternate;
}
@keyframes screen-pan {
  from { transform: translateY(0); }
  to { transform: translateY(calc(-100% + 100cqh)); }
}
.phone__screen--scroll { container-type: size; }

/* notch / dynamic island */
.phone__notch {
  position: absolute;
  top: clamp(7px, 1vw, 11px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 33%;
  height: clamp(15px, 1.6vw, 21px);
  border-radius: var(--r-pill);
  background: #050303;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.07);
}
.phone__notch::after {
  content: "";
  position: absolute;
  right: 16%;
  top: 50%;
  transform: translateY(-50%);
  width: 5px; height: 5px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2b4a63, #08121a);
  box-shadow: 0 0 3px rgba(90, 170, 220, 0.5);
}

/* glass glare sweep */
.phone__glare {
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: inherit;
  overflow: hidden;
  pointer-events: none;
}
.phone__glare::before {
  content: "";
  position: absolute;
  top: -60%; left: -40%;
  width: 55%; height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.13), transparent);
  transform: rotate(18deg);
  animation: glare-sweep 6.5s ease-in-out infinite;
}
@keyframes glare-sweep {
  0%, 62% { transform: translateX(-60%) rotate(18deg); opacity: 0; }
  70% { opacity: 1; }
  100% { transform: translateX(320%) rotate(18deg); opacity: 0; }
}

/* side buttons */
.phone__btns i {
  position: absolute;
  right: -2px;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, #C9A03A, #6B5216);
}
.phone__btns i:nth-child(1) { top: 22%; height: 8%; }
.phone__btns i:nth-child(2) { top: 33%; height: 5%; }
.phone__btns i:nth-child(3) { left: -2px; right: auto; top: 20%; height: 4%; border-radius: 3px 0 0 3px; }

/* floating info chips around the device */
.mockup__chip {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.6rem 0.95rem;
  border-radius: var(--r-pill);
  background: rgba(11, 7, 8, 0.82);
  border: 1px solid var(--color-border-gold);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--color-text-primary);
  white-space: nowrap;
  animation: chip-bob 5.5s ease-in-out infinite;
}
.mockup__chip small {
  display: block;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-text-dim);
  text-transform: uppercase;
}
.mockup__chip i {
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad-gold);
  color: var(--color-text-on-gold);
  font-size: 0.8rem;
  font-style: normal;
  font-weight: 900;
  flex: none;
}
.mockup__chip--a { top: 9%; left: -2%; animation-delay: -0.6s; }
.mockup__chip--b { bottom: 22%; right: -4%; animation-delay: -2.4s; }
.mockup__chip--c { top: 44%; right: -6%; animation-delay: -3.8s; }
@keyframes chip-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-11px); }
}
@media (max-width: 560px) {
  .mockup__chip { font-size: 0.68rem; padding: 0.45rem 0.7rem; }
  .mockup__chip--a { left: -1%; }
  .mockup__chip--b { right: -1%; }
  .mockup__chip--c { display: none; }
}

/* mini reel panel overlapping the device */
.mockup__reels {
  position: absolute;
  z-index: 6;
  bottom: 2%;
  left: -6%;
  width: clamp(150px, 15vw + 60px, 208px);
  --reel-cell: 56px;
  animation: chip-bob 6.5s ease-in-out infinite -1.4s;
}
.mockup__reels .reel__sym { font-size: clamp(1.35rem, 1rem + 1.1vw, 1.9rem); }
.mockup__reels .reelframe { padding: 0.5rem; gap: 0.4rem; background: linear-gradient(180deg, #2A1D14, #120C0A); }
.mockup__reels-cap {
  margin-top: 0.45rem;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
}
@media (max-width: 720px) {
  .mockup__reels { left: -2%; width: clamp(126px, 32vw, 168px); --reel-cell: 46px; }
}

@media (prefers-reduced-motion: reduce) {
  .phone, .phone--tilt, .mockup__chip, .mockup__halo, .mockup__reels,
  .hero__beam, .phone__glare::before, .phone__screen--scroll img,
  .mockup__rings i:nth-child(2) { animation: none !important; }
  .phone--tilt { transform: rotateY(-8deg) rotateX(2deg); }
}

/* ------------------------------------------------------------------ *
 * PROVIDER / TRUST STRIP
 * ------------------------------------------------------------------ */

.providers {
  padding-block: clamp(1.6rem, 1.2rem + 1.4vw, 2.4rem);
  border-block: 1px solid var(--color-border-soft);
  background: rgba(6, 4, 5, 0.5);
}
.providers__label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  margin-bottom: 1.2rem;
}
.providers .marquee__item {
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 0.8rem + 0.5vw, 1.35rem);
  letter-spacing: 0.08em;
  color: rgba(243, 233, 218, 0.42);
  transition: color var(--t-base) var(--ease-out);
}
.providers .marquee__item:hover { color: var(--color-gold-bright); }
.providers .marquee__item::before { background: rgba(203, 161, 53, 0.45); }

/* ------------------------------------------------------------------ *
 * OG BANNER SHOWCASE
 * ------------------------------------------------------------------ */

.ogbanner {
  position: relative;
}
.ogbanner__frame {
  position: relative;
  border-radius: var(--r-xl);
  padding: clamp(6px, 0.8vw, 12px);
  background: var(--grad-gold);
  box-shadow: var(--shadow-xl), 0 0 70px rgba(203, 161, 53, 0.22);
  overflow: hidden;
}
.ogbanner__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, transparent 34%, rgba(255, 255, 255, 0.4) 46%, transparent 58%);
  transform: translateX(-120%);
  animation: og-shine 6s var(--ease-out) infinite;
  pointer-events: none;
}
@keyframes og-shine {
  0%, 65% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}
.ogbanner__inner {
  position: relative;
  border-radius: calc(var(--r-xl) - 6px);
  overflow: hidden;
  background: #060405;
}
.ogbanner__inner img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 900ms var(--ease-out);
}
.ogbanner__frame:hover .ogbanner__inner img { transform: scale(1.025); }

.ogbanner__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(1.2rem, 1rem + 2.5vw, 3rem);
  background: linear-gradient(0deg, rgba(6, 4, 5, 0.96) 12%, rgba(6, 4, 5, 0.7) 55%, transparent 100%);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
}
.ogbanner__overlay h3 {
  font-size: clamp(1.1rem, 0.9rem + 1.4vw, 1.9rem);
  margin-bottom: 0.4rem;
}
.ogbanner__overlay p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  max-width: 52ch;
  margin: 0;
}
.ogbanner__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
@media (max-width: 700px) {
  .ogbanner__overlay { position: static; background: rgba(11, 7, 8, 0.9); }
}

/* ------------------------------------------------------------------ *
 * BONUS CABINET — triple match + coin shower
 * ------------------------------------------------------------------ */

.bonus__grid {
  display: grid;
  gap: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 980px) { .bonus__grid { grid-template-columns: 0.95fr 1.05fr; } }

.bonus__cab {
  position: relative;
  text-align: center;
  --reel-cell: clamp(74px, 8vw, 106px);
}
.bonus__cab .reelframe { margin-bottom: var(--sp-5); }
.bonus__amount {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 1.6rem + 5vw, 4.6rem);
  line-height: 1;
  background: var(--grad-text-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 6px 26px rgba(203, 161, 53, 0.35));
  display: block;
}
.bonus__amount-label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.bonus__tiers { margin-top: var(--sp-5); }

.bonus__list { display: grid; gap: 0.85rem; margin-top: var(--sp-5); }
.bonus__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.95rem 1.1rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid var(--color-border-soft);
  transition: border-color var(--t-base) var(--ease-out), transform var(--t-base) var(--ease-out);
}
.bonus__list li:hover { border-color: var(--color-border-gold); transform: translateX(4px); }
.bonus__list i {
  flex: none;
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(140deg, rgba(203, 161, 53, 0.22), rgba(109, 15, 36, 0.32));
  border: 1px solid var(--color-border-gold);
  color: var(--color-gold-bright);
  font-style: normal;
  font-weight: 900;
  font-size: 0.8rem;
}
.bonus__list b { display: block; font-size: 0.95rem; margin-bottom: 0.15rem; }
.bonus__list span { font-size: 0.86rem; color: var(--color-text-muted); line-height: 1.7; }

/* ------------------------------------------------------------------ *
 * REEL-STRIP CATEGORY SELECTOR
 * ------------------------------------------------------------------ */

.reelstrip {
  position: relative;
  margin-bottom: clamp(1.75rem, 1.4rem + 1.5vw, 2.75rem);
}
.reelstrip__window {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  padding: clamp(0.6rem, 1vw, 1rem) 0;
  background: linear-gradient(180deg, #241A14 0%, #0F0A0B 50%, #241A14 100%);
  box-shadow:
    0 0 0 1px rgba(203, 161, 53, 0.5),
    0 0 0 5px rgba(11, 7, 8, 0.95),
    0 0 0 6px rgba(203, 161, 53, 0.3),
    var(--shadow-lg),
    inset 0 16px 22px -16px rgba(0, 0, 0, 0.95),
    inset 0 -16px 22px -16px rgba(0, 0, 0, 0.95);
}
/* the "landing" indicator */
.reelstrip__window::before,
.reelstrip__window::after {
  content: "";
  position: absolute;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  border: 9px solid transparent;
  pointer-events: none;
}
.reelstrip__window::before { top: -1px; border-top-color: var(--color-gold); }
.reelstrip__window::after { bottom: -1px; border-bottom-color: var(--color-gold); }

.reelstrip__track {
  display: flex;
  gap: clamp(0.5rem, 1vw, 0.9rem);
  padding-inline: 0.7rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-behavior: smooth;
}
.reelstrip__track::-webkit-scrollbar { display: none; }

.reelchip {
  position: relative;
  flex: 1 0 auto;
  min-width: clamp(120px, 17vw, 178px);
  scroll-snap-align: center;
  display: grid;
  place-items: center;
  gap: 0.4rem;
  padding: clamp(0.9rem, 1.4vw, 1.35rem) 0.75rem;
  border-radius: var(--r-md);
  background: linear-gradient(180deg, rgba(38, 26, 31, 0.95), rgba(15, 10, 11, 0.95));
  border: 1px solid var(--color-border-soft);
  color: var(--color-text-muted);
  text-align: center;
  cursor: pointer;
  transition: transform var(--t-base) var(--ease-out),
              border-color var(--t-base) var(--ease-out),
              box-shadow var(--t-base) var(--ease-out),
              color var(--t-base) var(--ease-out),
              background var(--t-base) var(--ease-out);
}
.reelchip__ico {
  font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2.1rem);
  line-height: 1;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.6));
  transition: transform var(--t-base) var(--ease-spring);
}
.reelchip__name {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}
.reelchip__count { font-size: 0.66rem; color: var(--color-text-dim); letter-spacing: 0.08em; }
.reelchip:hover { color: var(--color-text-primary); border-color: var(--color-border-gold); transform: translateY(-4px); }
.reelchip:hover .reelchip__ico { transform: scale(1.14) rotate(-6deg); }
.reelchip.is-active {
  color: var(--color-text-primary);
  border-color: var(--color-gold);
  background: linear-gradient(180deg, rgba(109, 15, 36, 0.55), rgba(30, 21, 24, 0.95));
  box-shadow: var(--shadow-gold-glow), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.reelchip.is-active .reelchip__name { color: var(--color-gold-bright); }

/* spin blur during selection */
.reelstrip.is-spinning .reelstrip__track { filter: blur(1.6px); }
.reelstrip.is-spinning .reelchip { transition: none; }

.reelstrip__lever {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

/* results area */
.catresults { position: relative; min-height: 200px; }
.catresults__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: var(--sp-5);
}
.catresults__head h3 { margin-bottom: 0.3rem; }
.catresults__head p { font-size: 0.9rem; color: var(--color-text-muted); max-width: 62ch; margin: 0; }
.catresults .game-grid { animation: fade-up 520ms var(--ease-out) both; }
@keyframes fade-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------------ *
 * SCREENSHOT SLIDER
 * ------------------------------------------------------------------ */

.shots { position: relative; }
.shots__viewport {
  position: relative;
  overflow: hidden;
  padding-block: clamp(1rem, 2vw, 2rem);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.shots__track {
  display: flex;
  gap: clamp(0.9rem, 1.6vw, 1.75rem);
  transition: transform 720ms var(--ease-out);
  will-change: transform;
}
.shots__item {
  flex: 0 0 auto;
  width: var(--shot-w, 220px);
  transition: transform 620ms var(--ease-out), opacity 620ms var(--ease-out), filter 620ms var(--ease-out);
  opacity: 0.42;
  transform: scale(0.86);
  filter: saturate(0.7);
}
.shots__item.is-active {
  opacity: 1;
  transform: scale(1);
  filter: none;
}
.shots__item.is-near { opacity: 0.72; transform: scale(0.93); }

.shot-frame {
  position: relative;
  border-radius: clamp(20px, 2.4vw, 30px);
  padding: clamp(5px, 0.6vw, 8px);
  background: linear-gradient(150deg, #E8CB7C 0%, #CBA135 18%, #5C4614 42%, #241C15 55%, #5C4614 72%, #CBA135 90%, #8A6A1C 100%);
  box-shadow: 0 26px 55px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(0, 0, 0, 0.4);
}
.shot-frame__screen {
  position: relative;
  border-radius: clamp(16px, 1.9vw, 24px);
  overflow: hidden;
  background: #060405;
  aspect-ratio: 1280 / 2800;
}
.shot-frame__screen img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.shot-frame__notch {
  position: absolute;
  top: clamp(5px, 0.6vw, 8px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 30%;
  height: clamp(11px, 1.2vw, 16px);
  border-radius: var(--r-pill);
  background: #050303;
}
.shots__cap {
  margin-top: 0.85rem;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-text-dim);
  transition: color var(--t-base) var(--ease-out);
}
.shots__item.is-active .shots__cap { color: var(--color-gold-bright); }

.shots__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: clamp(1rem, 2vw, 1.75rem);
}
.shots__nav {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--color-surface-glass);
  border: 1px solid var(--color-border-gold);
  color: var(--color-gold-bright);
  transition: transform var(--t-base) var(--ease-spring), box-shadow var(--t-base) var(--ease-out), background var(--t-base) var(--ease-out);
}
.shots__nav svg { width: 18px; height: 18px; }
.shots__nav:hover { transform: scale(1.08); box-shadow: var(--shadow-gold-glow); background: rgba(203, 161, 53, 0.16); }
.shots__dots { display: flex; gap: 0.45rem; }
.shots__dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(203, 161, 53, 0.28);
  transition: width var(--t-base) var(--ease-out), background var(--t-base) var(--ease-out);
}
.shots__dots button.is-active {
  width: 26px;
  border-radius: var(--r-pill);
  background: var(--grad-gold);
  box-shadow: 0 0 12px rgba(203, 161, 53, 0.6);
}

/* ------------------------------------------------------------------ *
 * VIP TIERS
 * ------------------------------------------------------------------ */

.vip-grid {
  display: grid;
  gap: clamp(0.9rem, 0.6rem + 1vw, 1.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
}
.vip {
  position: relative;
  padding: clamp(1.4rem, 1.1rem + 1vw, 2rem) clamp(1.1rem, 1rem + 0.8vw, 1.6rem);
  border-radius: var(--r-md);
  background: var(--grad-surface);
  border: 1px solid var(--color-border-soft);
  text-align: center;
  overflow: hidden;
  transition: transform var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out), box-shadow var(--t-base) var(--ease-out);
}
.vip::before {
  content: "";
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: var(--tier-color, var(--grad-gold));
}
.vip:hover { transform: translateY(-7px); border-color: var(--color-border-gold); box-shadow: var(--shadow-md), 0 0 26px rgba(203, 161, 53, 0.14); }
.vip__crown { font-size: 1.9rem; line-height: 1; margin-bottom: 0.6rem; }
.vip__name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}
.vip__req {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-dim);
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--color-border-soft);
}
.vip ul { display: grid; gap: 0.5rem; text-align: left; }
.vip li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.84rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}
.vip li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  transform: rotate(45deg);
  background: var(--color-gold);
}

/* ------------------------------------------------------------------ *
 * TESTIMONIALS
 * ------------------------------------------------------------------ */

.quote {
  position: relative;
  padding: clamp(1.5rem, 1.2rem + 1.2vw, 2.2rem);
  border-radius: var(--r-md);
  background: var(--grad-surface);
  border: 1px solid var(--color-border-soft);
  height: 100%;
  transition: transform var(--t-base) var(--ease-out), border-color var(--t-base) var(--ease-out);
}
.quote:hover { transform: translateY(-5px); border-color: var(--color-border-gold); }
.quote::before {
  content: "\201C";
  position: absolute;
  top: -0.15em; right: 0.4em;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: rgba(203, 161, 53, 0.14);
  pointer-events: none;
}
.quote__stars { color: var(--color-gold); font-size: 0.85rem; letter-spacing: 0.14em; margin-bottom: 0.85rem; }
.quote p { position: relative; font-size: 0.95rem; color: var(--color-text-muted); line-height: 1.8; margin-bottom: 1.2rem; }
.quote__who { display: flex; align-items: center; gap: 0.75rem; }
.quote__av {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  flex: none;
  border-radius: 50%;
  background: var(--grad-burgundy);
  border: 1px solid var(--color-border-gold);
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--color-gold-bright);
}
.quote__who b { display: block; font-size: 0.9rem; color: var(--color-text-primary); }
.quote__who span { font-size: 0.76rem; color: var(--color-text-dim); }

/* ------------------------------------------------------------------ *
 * CTA BAND
 * ------------------------------------------------------------------ */

.ctaband {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(2rem, 1.5rem + 3vw, 4rem) clamp(1.4rem, 1rem + 3vw, 3.5rem);
  background:
    radial-gradient(900px 340px at 50% 0%, rgba(203, 161, 53, 0.2), transparent 70%),
    var(--grad-burgundy);
  border: 1px solid var(--color-border-strong);
  box-shadow: var(--shadow-xl), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-align: center;
}
.ctaband::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.6;
  pointer-events: none;
}
.ctaband > * { position: relative; }
.ctaband h2 { margin-bottom: var(--sp-4); }
.ctaband p { color: rgba(253, 240, 220, 0.82); max-width: 68ch; margin-inline: auto; margin-bottom: var(--sp-5); }

/* Telegram highlight band */
.tgband {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: clamp(1.75rem, 1.4rem + 2vw, 3rem);
  background: linear-gradient(120deg, rgba(34, 158, 217, 0.14), rgba(11, 7, 8, 0.6) 55%);
  border: 1px solid rgba(44, 165, 224, 0.32);
  display: grid;
  gap: clamp(1.25rem, 1rem + 1.5vw, 2.25rem);
  align-items: center;
}
@media (min-width: 860px) { .tgband { grid-template-columns: 1fr auto; } }
.tgband h3 { margin-bottom: 0.6rem; }
.tgband p { color: var(--color-text-muted); font-size: 0.95rem; max-width: 66ch; margin: 0; }
.tgband__ico {
  position: absolute;
  right: -30px; top: 50%;
  transform: translateY(-50%);
  width: 220px; height: 220px;
  color: rgba(44, 165, 224, 0.07);
  pointer-events: none;
}
.tgband__btns { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ------------------------------------------------------------------ *
 * MISC HOME BLOCKS
 * ------------------------------------------------------------------ */

.split {
  display: grid;
  gap: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 940px) {
  .split { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split--wide-left { grid-template-columns: 1.15fr 0.85fr; }
  .split--wide-right { grid-template-columns: 0.85fr 1.15fr; }
  .split--flip > *:first-child { order: 2; }
}

.paycard {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.95rem 1.1rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border-soft);
  transition: border-color var(--t-base) var(--ease-out), transform var(--t-base) var(--ease-out);
}
.paycard:hover { border-color: var(--color-border-gold); transform: translateY(-3px); }
.paycard i {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  flex: none;
  border-radius: 11px;
  background: linear-gradient(140deg, rgba(203, 161, 53, 0.2), rgba(109, 15, 36, 0.3));
  border: 1px solid var(--color-border-gold);
  font-style: normal;
  font-size: 1.05rem;
}
.paycard b { display: block; font-size: 0.9rem; }
.paycard span { font-size: 0.76rem; color: var(--color-text-dim); }

/* Keyword cloud (semantic SEO helper) */
.kwcloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.kwcloud a {
  padding: 0.45rem 0.9rem;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border-soft);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-text-muted);
  transition: all var(--t-base) var(--ease-out);
}
.kwcloud a:hover {
  color: var(--color-text-on-gold);
  background: var(--grad-gold);
  border-color: transparent;
  transform: translateY(-2px);
}
