/* ==========================================================================
   dk999 Game — Homepage stylesheet
   Hero + 3D app mockup · OG banner · Screenshot coverflow · Timeline · etc.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. HERO
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(3rem, 7vw, 6rem);
  background: var(--gradient-hero);
  border-bottom: 1px solid var(--color-border);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(22, 168, 118, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 168, 118, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 65% at 50% 35%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 65% at 50% 35%, #000 25%, transparent 78%);
  pointer-events: none;
}

.hero__facet-a { top: -140px; left: -120px; width: 420px; height: 420px; opacity: 0.35; }
.hero__facet-b { bottom: -180px; right: -100px; width: 380px; height: 380px; opacity: 0.28; }
.hero__blob-a { top: 4%; right: 8%; width: 340px; height: 340px; opacity: 0.5; }
.hero__blob-b { bottom: -6%; left: -4%; width: 300px; height: 300px; opacity: 0.4; }

.hero__inner {
  position: relative;
  z-index: var(--z-content);
  display: grid;
  gap: clamp(2.75rem, 6vw, 4rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 3rem;
  }
}

/* Phone view: flatten the copy wrapper so the app mockup can slot in
   between the heading block and the bonus badge / CTA block below it. */
@media (max-width: 1023px) {
  .hero__copy { display: contents; }
  .hero__copy-top { order: 1; }
  .stage { order: 2; margin-block: 0.25rem 0.5rem; }
  .hero__copy-bottom { order: 3; }
}

/* ---- Copy column -------------------------------------------------------- */

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.375rem;
}

.hero__title { margin-bottom: 1.125rem; }
.hero__title .line-2 { display: block; }

.hero__sub {
  max-width: 56ch;
  font-size: clamp(1rem, 1.35vw, 1.1875rem);
  color: var(--color-text-secondary);
}
.hero__sub strong { color: var(--color-charcoal-900); font-weight: 650; }

.hero__urdu {
  margin-top: 0.875rem;
  padding-inline-end: 0.25rem;
  font-size: 1rem;
  color: var(--color-emerald-700);
}

/* Bonus badge ------------------------------------------------------------- */
.bonus-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  margin-top: 1.75rem;
  padding: 0.75rem 1.375rem 0.75rem 0.875rem;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid rgba(212, 175, 55, 0.55);
  box-shadow: var(--shadow-gold-glow);
  overflow: hidden;
}
.bonus-badge::after {
  content: "";
  position: absolute;
  inset-block: 0;
  left: -50%;
  width: 42%;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35), transparent);
  transform: skewX(-20deg);
  animation: sweep 4.5s var(--ease-in-out-soft) 1.5s infinite;
}
.bonus-badge__gift {
  display: grid;
  place-items: center;
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--color-charcoal-900);
}
.bonus-badge__gift svg { width: 19px; height: 19px; }
.bonus-badge__amount {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-charcoal-900);
}
.bonus-badge__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gold-700);
}

@media (max-width: 1023px) {
  .bonus-badge {
    gap: 0.5625rem;
    margin-top: 1.125rem;
    padding: 0.5rem 0.9375rem 0.5rem 0.5625rem;
  }
  .bonus-badge__gift { width: 28px; height: 28px; }
  .bonus-badge__gift svg { width: 14px; height: 14px; }
  .bonus-badge__amount { font-size: 0.9375rem; }
  .bonus-badge__label { font-size: 0.5625rem; }
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-top: 1.75rem;
}

.hero__terms {
  margin-top: 0.875rem;
  font-size: var(--fs-print);
  color: var(--color-text-secondary);
}
.hero__terms a { color: var(--color-emerald-700); text-decoration: underline; text-underline-offset: 2px; }

/* Trust strip ------------------------------------------------------------- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 2.25rem;
  background: var(--color-border);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.trust-strip__item {
  padding: 0.9375rem 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  text-align: center;
}
.trust-strip__val {
  font-family: var(--font-display);
  font-size: clamp(1.0625rem, 2.2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-emerald-900);
}
.trust-strip__val .unit { color: var(--color-gold-700); }
.trust-strip__lbl {
  margin-top: 0.1875rem;
  font-size: 0.6875rem;
  font-weight: 550;
  letter-spacing: 0.02em;
  color: var(--color-text-secondary);
}
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--color-gold-500);
  vertical-align: middle;
}
.stars svg { width: 13px; height: 13px; }

/* --------------------------------------------------------------------------
   2. HERO APP MOCKUP — "Aurora Deck" 3D device stage
   -------------------------------------------------------------------------- */

.stage {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 430px;
  perspective: 1600px;
  perspective-origin: 50% 45%;
}

@media (min-width: 560px) { .stage { min-height: 520px; } }
@media (min-width: 1024px) { .stage { min-height: 620px; } }

/* Rotating gold dashed halo behind the phone */
.stage__halo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(94%, 460px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1.5px dashed rgba(212, 175, 55, 0.55);
  animation: facetSpin 46s linear infinite;
  pointer-events: none;
}
.stage__halo::before,
.stage__halo::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--gradient-gold);
  box-shadow: 0 0 14px rgba(212, 175, 55, 0.75);
  transform: rotate(45deg);
}
.stage__halo::before { top: -6px; left: calc(50% - 6px); }
.stage__halo::after  { bottom: -6px; left: calc(50% - 6px); }

.stage__halo--inner {
  width: min(78%, 372px);
  border-style: solid;
  border-color: rgba(22, 168, 118, 0.22);
  animation-duration: 34s;
  animation-direction: reverse;
}
.stage__halo--inner::before,
.stage__halo--inner::after {
  background: var(--color-emerald-500);
  box-shadow: 0 0 14px rgba(22, 168, 118, 0.7);
  width: 9px; height: 9px;
}
.stage__halo--inner::before { top: -4.5px; left: calc(50% - 4.5px); }
.stage__halo--inner::after { bottom: -4.5px; left: calc(50% - 4.5px); }

/* Soft emerald pedestal glow under the device */
.stage__pedestal {
  position: absolute;
  bottom: 4%;
  left: 50%;
  width: min(80%, 380px);
  height: 70px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(11, 61, 46, 0.28), transparent 68%);
  filter: blur(14px);
  pointer-events: none;
}

/* --- Phone --------------------------------------------------------------- */
.phone {
  position: relative;
  width: min(74vw, 268px);
  aspect-ratio: 1279 / 2689;
  transform-style: preserve-3d;
  border-radius: 34px;
  padding: 8px;
  background:
    linear-gradient(150deg, #3C4243 0%, #16191A 28%, #2B2F30 52%, #0B0D0E 78%, #3C4243 100%);
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.14) inset,
    0 34px 70px rgba(11, 61, 46, 0.32),
    0 8px 22px rgba(22, 25, 26, 0.28);
}

@media (min-width: 560px) { .phone { width: min(58vw, 292px); } }
@media (min-width: 1024px) { .phone { width: min(30vw, 300px); } }

.phone::before {   /* gold rim hairline */
  content: "";
  position: absolute;
  inset: -1.5px;
  border-radius: 36px;
  background: linear-gradient(150deg, rgba(212, 175, 55, 0.9), rgba(212, 175, 55, 0.05) 35%, rgba(212, 175, 55, 0.65) 68%, rgba(212, 175, 55, 0.08));
  z-index: -1;
}

.phone__screen {
  position: relative;
  height: 100%;
  border-radius: 27px;
  overflow: hidden;
  background: var(--color-emerald-900);
}
.phone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.phone__notch {
  position: absolute;
  top: 8px;
  left: 50%;
  z-index: 3;
  width: 84px;
  height: 20px;
  transform: translateX(-50%);
  border-radius: var(--radius-pill);
  background: #0B0D0E;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}
.phone__notch::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle at 35% 35%, #2F6B5A, #06120E);
}

.phone__glare {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0.05) 24%, transparent 44%);
  pointer-events: none;
}
.phone__glare::after {
  content: "";
  position: absolute;
  top: -60%;
  left: -70%;
  width: 55%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: rotate(18deg);
  animation: phoneShine 7s var(--ease-in-out-soft) 2s infinite;
}
@keyframes phoneShine {
  0%, 62%  { left: -70%; }
  92%, 100% { left: 130%; }
}

.phone__home {
  position: absolute;
  bottom: 7px;
  left: 50%;
  z-index: 3;
  width: 92px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.5);
}

/* Device placement inside the stage */
.stage__device {
  position: relative;
  z-index: 3;
  transform: rotateY(-14deg) rotateX(4deg) rotateZ(-1.5deg);
  animation: deckFloat 7.5s var(--ease-in-out-soft) infinite;
  will-change: transform;
}
@keyframes deckFloat {
  0%, 100% { transform: rotateY(-14deg) rotateX(4deg) rotateZ(-1.5deg) translateY(0); }
  50%      { transform: rotateY(-9deg) rotateX(2deg) rotateZ(0.5deg) translateY(-16px); }
}

/* Secondary, smaller phone tucked behind */
.stage__device--back {
  position: absolute;
  top: 12%;
  right: 2%;
  z-index: 2;
  opacity: 0.94;
  transform: rotateY(-20deg) rotateZ(6deg) scale(0.62);
  animation: deckFloatBack 9s var(--ease-in-out-soft) 0.6s infinite;
}
@keyframes deckFloatBack {
  0%, 100% { transform: rotateY(-20deg) rotateZ(6deg) scale(0.62) translateY(0); }
  50%      { transform: rotateY(-15deg) rotateZ(4deg) scale(0.64) translateY(-22px); }
}
.stage__device--back .phone {
  box-shadow: 0 24px 50px rgba(11, 61, 46, 0.26);
}

@media (max-width: 767px) {
  .stage__device--back { display: none; }
}

/* --- Floating glass chips ------------------------------------------------ */
.chip {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 0.9375rem 0.625rem 0.625rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(11, 61, 46, 0.18);
  will-change: transform;
}
.chip__ico {
  display: grid;
  place-items: center;
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: #fff;
}
.chip__ico svg { width: 17px; height: 17px; }
.chip__ico--emerald { background: var(--gradient-emerald); }
.chip__ico--gold { background: var(--gradient-gold); color: var(--color-charcoal-900); }
.chip__ico--tg { background: linear-gradient(135deg, #2AABEE, #229ED9); }

.chip b {
  display: block;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-charcoal-900);
}
.chip span {
  display: block;
  font-size: 0.6875rem;
  color: var(--color-text-secondary);
  white-space: nowrap;
}

.chip--payout {
  top: 13%;
  left: -2%;
  animation: chipFloat 6.5s var(--ease-in-out-soft) infinite;
}
.chip--bonus {
  bottom: 20%;
  right: -3%;
  animation: chipFloat 7.8s var(--ease-in-out-soft) 0.9s infinite;
}
.chip--players {
  bottom: 12%;
  left: -2%;
  animation: chipFloat 8.6s var(--ease-in-out-soft) 1.6s infinite;
}

@keyframes chipFloat {
  0%, 100% { transform: translateY(0) translateX(0); }
  50%      { transform: translateY(-15px) translateX(5px); }
}

@media (max-width: 479px) {
  .chip { padding: 0.5rem 0.75rem 0.5rem 0.5rem; }
  .chip__ico { width: 28px; height: 28px; }
  .chip b { font-size: 0.75rem; }
  .chip span { font-size: 0.625rem; }
  .chip--payout { left: -4%; top: 9%; }
  .chip--bonus { right: -4%; }
  .chip--players { display: none; }
}

/* Orbiting slot-reel token */
.stage__token {
  position: absolute;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--color-charcoal-900);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 28px rgba(169, 120, 31, 0.4), inset 0 0 0 3px rgba(255, 255, 255, 0.45);
  animation: tokenBob 5.5s var(--ease-in-out-soft) infinite;
}
.stage__token--a { top: 6%; right: 12%; }
.stage__token--b { bottom: 30%; left: 0%; width: 48px; height: 48px; font-size: 0.625rem; animation-delay: 1.2s; }
@keyframes tokenBob {
  0%, 100% { transform: translateY(0) rotate(-6deg); }
  50%      { transform: translateY(-13px) rotate(8deg); }
}

@media (max-width: 767px) {
  .stage__token--a { top: 2%; right: 4%; }
  .stage__token--b { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .stage__device,
  .stage__device--back,
  .chip,
  .stage__token,
  .stage__halo,
  .phone__glare::after,
  .bonus-badge::after { animation: none !important; }
}

/* --------------------------------------------------------------------------
   3. MARQUEE — provider / keyword ticker
   -------------------------------------------------------------------------- */

.ticker {
  position: relative;
  padding-block: 0.875rem;
  background: var(--color-charcoal-900);
  overflow: hidden;
}
.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0;
  width: 90px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.ticker::before { left: 0; background: linear-gradient(90deg, var(--color-charcoal-900), transparent); }
.ticker::after  { right: 0; background: linear-gradient(270deg, var(--color-charcoal-900), transparent); }

.ticker__track {
  display: flex;
  width: max-content;
  gap: 2.5rem;
  animation: tickerRun 34s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  white-space: nowrap;
}
.ticker__item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 1px;
  transform: rotate(45deg);
  background: var(--color-gold-500);
}
@keyframes tickerRun {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; }
}

/* --------------------------------------------------------------------------
   4. FEATURE GRID
   -------------------------------------------------------------------------- */

.feature-grid { grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr)); }

.feature-card { padding: 1.75rem 1.5rem 1.875rem; }
.feature-card__kicker {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-700);
}
.feature-card__list {
  display: grid;
  gap: 0.5rem;
  margin-top: 1.125rem;
  padding-top: 1.125rem;
  border-top: 1px solid var(--color-border);
}
.feature-card__list li {
  position: relative;
  padding-inline-start: 1.125rem;
  font-size: var(--fs-print);
  color: var(--color-text-secondary);
}
.feature-card__list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 1px;
  transform: rotate(45deg);
  background: var(--color-emerald-500);
}

/* --------------------------------------------------------------------------
   5. POPULAR SLOTS CAROUSEL
   -------------------------------------------------------------------------- */

.carousel { position: relative; }

.carousel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.carousel__nav { display: flex; gap: 0.5rem; }
.carousel__btn {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-charcoal-700);
  box-shadow: var(--shadow-xs);
  transition: background-color var(--dur-base), color var(--dur-base), transform var(--dur-base) var(--ease-out-expo), border-color var(--dur-base);
}
.carousel__btn svg { width: 17px; height: 17px; }
.carousel__btn:hover:not(:disabled) {
  background: var(--gradient-emerald);
  border-color: transparent;
  color: #fff;
  transform: translateY(-2px);
}
.carousel__btn:disabled { opacity: 0.35; cursor: not-allowed; }

.carousel__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-block: 0.5rem 1.25rem;
}
.carousel__viewport::-webkit-scrollbar { display: none; }

.carousel__track {
  display: flex;
  gap: 1rem;
  width: max-content;
}
.carousel__track > * {
  flex: none;
  width: 152px;
  scroll-snap-align: start;
}

@media (min-width: 560px) { .carousel__track > * { width: 168px; } }
@media (min-width: 1024px) { .carousel__track > * { width: 186px; } }

.carousel__progress {
  height: 3px;
  margin-top: 0.25rem;
  border-radius: 3px;
  background: var(--color-border);
  overflow: hidden;
}
.carousel__progress span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: 3px;
  background: var(--gradient-gold);
  transition: transform var(--dur-base) var(--ease-out-expo), width var(--dur-base);
}

/* --------------------------------------------------------------------------
   6. HOW IT WORKS TIMELINE
   -------------------------------------------------------------------------- */

.timeline {
  position: relative;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .timeline { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2.25rem; }
  .timeline::before {
    content: "";
    position: absolute;
    top: 34px;
    left: 12%;
    right: 12%;
    height: 2px;
    background-image: linear-gradient(90deg, var(--color-gold-500) 55%, transparent 0);
    background-size: 14px 2px;
    background-repeat: repeat-x;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 1.6s var(--ease-out-expo) 0.2s;
  }
  .timeline.is-visible::before { transform: scaleX(1); }
}

.tl-step {
  position: relative;
  text-align: center;
  padding: 2rem 1.5rem 1.875rem;
}
.tl-step__badge {
  position: relative;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin: 0 auto 1.25rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--color-border);
  color: var(--color-emerald-700);
  box-shadow: var(--shadow-card);
  transition: transform var(--dur-base) var(--ease-out-expo), border-color var(--dur-base);
}
.tl-step__badge svg { width: 28px; height: 28px; }
.tl-step:hover .tl-step__badge {
  transform: translateY(-5px) rotate(-5deg);
  border-color: var(--color-gold-500);
}
.tl-step__badge b {
  position: absolute;
  top: -9px;
  right: -9px;
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gradient-gold);
  color: var(--color-charcoal-900);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(169, 120, 31, 0.35);
}
.tl-step h3 { margin-bottom: 0.625rem; }
.tl-step p { color: var(--color-text-secondary); font-size: 0.9375rem; }
.tl-step__hint {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3125rem 0.75rem;
  border-radius: var(--radius-pill);
  background: var(--color-emerald-100);
  font-size: var(--fs-print);
  font-weight: 600;
  color: var(--color-emerald-700);
}

/* --------------------------------------------------------------------------
   7. OG BANNER SHOWCASE
   -------------------------------------------------------------------------- */

.og-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 6vw, 5rem);
  background: var(--color-bg-alt);
  border-block: 1px solid var(--color-border);
}
.og-band__facet { top: -100px; right: -60px; width: 300px; height: 300px; opacity: 0.22; }

.og-frame {
  position: relative;
  z-index: var(--z-content);
  margin-top: 2rem;
  padding: 10px;
  border-radius: calc(var(--radius-lg) + 6px);
  background: linear-gradient(135deg, #D4AF37 0%, #F0D98C 18%, #16A876 52%, #0B3D2E 74%, #D4AF37 100%);
  box-shadow: var(--shadow-float);
  transition: transform var(--dur-slow) var(--ease-out-expo);
}
.og-frame:hover { transform: translateY(-6px); }

.og-frame__inner {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-emerald-900);
  aspect-ratio: 1915 / 821;
}
.og-frame__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out-expo);
}
.og-frame:hover .og-frame__inner img { transform: scale(1.035); }

.og-frame__shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.og-frame__shine::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: rotate(16deg);
  animation: phoneShine 9s var(--ease-in-out-soft) 3s infinite;
}

.og-frame__caption {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4375rem 0.9375rem;
  border-radius: var(--radius-pill);
  background: rgba(6, 18, 14, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.55);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gold-300);
  transition: background-color var(--dur-base), transform var(--dur-base) var(--ease-out-expo);
}
.og-frame:hover .og-frame__caption {
  background: rgba(6, 18, 14, 0.9);
  transform: translateX(-3px);
}

@media (max-width: 560px) {
  .og-frame__caption { display: none; }
}

.og-points {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr));
}
.og-point {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.125rem 1.25rem;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
  transition: transform var(--dur-base) var(--ease-out-expo), box-shadow var(--dur-base);
}
.og-point:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.og-point__ico {
  display: grid;
  place-items: center;
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--color-emerald-100);
  color: var(--color-emerald-700);
}
.og-point__ico svg { width: 19px; height: 19px; }
.og-point b { display: block; font-size: 0.9375rem; color: var(--color-charcoal-900); }
.og-point span { font-size: var(--fs-print); color: var(--color-text-secondary); }

/* --------------------------------------------------------------------------
   8. SCREENSHOT COVERFLOW SLIDER
   -------------------------------------------------------------------------- */

.shots {
  position: relative;
  margin-top: 2.5rem;
  user-select: none;
}

.shots__viewport {
  position: relative;
  height: clamp(440px, 68vw, 650px);
  overflow: hidden;
  perspective: 1500px;
  perspective-origin: 50% 46%;
  touch-action: pan-y;
  cursor: grab;
}
.shots__viewport:active { cursor: grabbing; }

.shots__track {
  position: relative;
  height: 100%;
  transform-style: preserve-3d;
}

.shot {
  position: absolute;
  top: 46%;
  left: 50%;
  width: clamp(162px, 27vw, 258px);
  aspect-ratio: 1279 / 2689;
  opacity: 0;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  transition:
    transform 0.75s var(--ease-out-expo),
    opacity 0.6s var(--ease-out-expo),
    filter 0.6s var(--ease-out-expo);
  will-change: transform, opacity;
}

.shot__frame {
  position: relative;
  height: 100%;
  padding: 7px;
  border-radius: 30px;
  background: linear-gradient(150deg, #3C4243, #16191A 30%, #2B2F30 55%, #0B0D0E 80%, #3C4243);
  box-shadow: 0 26px 60px rgba(11, 61, 46, 0.3);
}
.shot__frame::before {
  content: "";
  position: absolute;
  inset: -1.5px;
  border-radius: 32px;
  background: linear-gradient(150deg, rgba(212, 175, 55, 0.85), rgba(212, 175, 55, 0.05) 40%, rgba(212, 175, 55, 0.6));
  z-index: -1;
}
.shot__frame img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  object-position: top center;
  background: var(--color-emerald-900);
}
.shot__frame::after {   /* notch */
  content: "";
  position: absolute;
  top: 14px;
  left: 50%;
  width: 66px;
  height: 15px;
  transform: translateX(-50%);
  border-radius: var(--radius-pill);
  background: #0B0D0E;
}

.shot__label {
  position: absolute;
  left: 50%;
  bottom: -2.25rem;
  transform: translateX(-50%);
  padding: 0.3125rem 0.9375rem;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-xs);
  font-size: var(--fs-print);
  font-weight: 650;
  color: var(--color-charcoal-900);
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out-expo);
}
.shot.is-active .shot__label { opacity: 1; }

.shot:not(.is-active) .shot__frame { filter: saturate(0.72) brightness(0.94); }

.shots__nav {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--color-border);
  color: var(--color-charcoal-900);
  box-shadow: var(--shadow-card);
  transition: background-color var(--dur-base), color var(--dur-base), transform var(--dur-base) var(--ease-out-expo);
}
.shots__nav svg { width: 18px; height: 18px; }
.shots__nav:hover {
  background: var(--gradient-emerald);
  color: #fff;
  border-color: transparent;
}
.shots__nav--prev { left: 0; }
.shots__nav--next { right: 0; }
.shots__nav--prev:hover { transform: translateY(-50%) translateX(-3px); }
.shots__nav--next:hover { transform: translateY(-50%) translateX(3px); }

@media (min-width: 768px) {
  .shots__nav--prev { left: 1.5rem; }
  .shots__nav--next { right: 1.5rem; }
}

.shots__dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
}
.shots__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-border-strong);
  transition: width var(--dur-base) var(--ease-out-expo), background-color var(--dur-base);
}
.shots__dot.is-active {
  width: 30px;
  border-radius: var(--radius-pill);
  background: var(--gradient-gold);
}

.shots__hint {
  margin-top: 1rem;
  text-align: center;
  font-size: var(--fs-print);
  color: var(--color-text-secondary);
}

/* --------------------------------------------------------------------------
   9. BONUS BAND
   -------------------------------------------------------------------------- */

.bonus-band__amount {
  display: block;
  margin-block: 0.5rem 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
}

.bonus-tiers {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
}
.bonus-tier {
  padding: 1rem 1.125rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(6px);
}
.bonus-tier b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-gold-300);
}
.bonus-tier span {
  display: block;
  margin-top: 0.25rem;
  font-size: var(--fs-print);
  color: rgba(255, 255, 255, 0.68);
}

.bonus-band__panel {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(212, 175, 55, 0.35);
  backdrop-filter: blur(8px);
}
.bonus-band__panel h3 { color: #fff; margin-bottom: 1rem; font-size: 1.125rem; }
.bonus-band__panel .list-check li { color: rgba(255, 255, 255, 0.78); }
.bonus-band__panel .list-check li::before {
  background-color: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.5);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F0D98C' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
}

/* --------------------------------------------------------------------------
   10. COMMUNITY / TELEGRAM STRIP
   -------------------------------------------------------------------------- */

.tg-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
}

.tg-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.875rem;
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out-expo), box-shadow var(--dur-base), border-color var(--dur-base);
}
.tg-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 171, 238, 0.16), transparent 70%);
  transition: transform var(--dur-slow) var(--ease-out-expo);
}
.tg-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(42, 171, 238, 0.4);
}
.tg-card:hover::before { transform: scale(1.35); }

.tg-card__head {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.9375rem;
}
.tg-card__logo {
  display: grid;
  place-items: center;
  flex: none;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, #2AABEE, #229ED9);
  color: #fff;
  box-shadow: 0 10px 24px rgba(34, 158, 217, 0.32);
  transition: transform var(--dur-base) var(--ease-out-expo);
}
.tg-card:hover .tg-card__logo { transform: rotate(-8deg) scale(1.05); }
.tg-card__logo svg { width: 27px; height: 27px; }
.tg-card__handle {
  font-size: var(--fs-print);
  color: #1B8FC4;
  font-weight: 600;
}
.tg-card__text { position: relative; color: var(--color-text-secondary); font-size: 0.9375rem; }
.tg-card__list {
  position: relative;
  display: grid;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}
.tg-card__list li {
  position: relative;
  padding-inline-start: 1.25rem;
  font-size: var(--fs-print);
  color: var(--color-text-secondary);
}
.tg-card__list li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2AABEE;
}
.tg-card .btn { position: relative; margin-top: auto; align-self: flex-start; }

/* --------------------------------------------------------------------------
   11. TESTIMONIALS
   -------------------------------------------------------------------------- */

.quote-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.875rem 1.75rem;
}
.quote-card__mark {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.6;
  color: var(--color-gold-300);
}
.quote-card p {
  font-size: 0.9375rem;
  color: var(--color-charcoal-700);
  font-style: italic;
}
.quote-card__foot {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}
.quote-card__avatar {
  display: grid;
  place-items: center;
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gradient-emerald);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
}
.quote-card__foot b { display: block; font-size: 0.875rem; color: var(--color-charcoal-900); }
.quote-card__foot span { font-size: var(--fs-print); color: var(--color-text-secondary); }

/* --------------------------------------------------------------------------
   12. RESPONSIBLE GAMING
   -------------------------------------------------------------------------- */

.rg {
  display: grid;
  gap: 2.25rem;
  align-items: start;
}
@media (min-width: 992px) {
  .rg { grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; }
}

.rg__panel {
  padding: 1.875rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-gold-500);
  box-shadow: var(--shadow-card);
}
.rg__panel h3 { margin-bottom: 1rem; font-size: 1.125rem; }

.rg-tips { display: grid; gap: 1rem; }
.rg-tip {
  display: flex;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--color-border);
  transition: border-color var(--dur-base), transform var(--dur-base) var(--ease-out-expo);
}
.rg-tip:hover { border-color: var(--color-emerald-300); transform: translateX(4px); }
.rg-tip__ico {
  display: grid;
  place-items: center;
  flex: none;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--color-gold-100);
  color: var(--color-gold-700);
}
.rg-tip__ico svg { width: 18px; height: 18px; }
.rg-tip b { display: block; margin-bottom: 0.25rem; font-size: 0.9375rem; color: var(--color-charcoal-900); }
.rg-tip span { font-size: var(--fs-print); color: var(--color-text-secondary); }

/* --------------------------------------------------------------------------
   13. SEO CONTENT BLOCK
   -------------------------------------------------------------------------- */

.seo-block {
  display: grid;
  gap: 2.25rem;
}
@media (min-width: 992px) {
  .seo-block { grid-template-columns: 1.25fr 0.75fr; gap: 3.5rem; }
}

.seo-aside {
  position: relative;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--color-emerald-100);
  border: 1px solid rgba(22, 168, 118, 0.25);
}
.seo-aside h3 { font-size: 1.0625rem; margin-bottom: 1rem; }
.seo-aside__list { display: grid; gap: 0.6875rem; }
.seo-aside__list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.6875rem;
  border-bottom: 1px dashed rgba(11, 61, 46, 0.18);
  font-size: var(--fs-print);
  color: var(--color-emerald-900);
}
.seo-aside__list li:last-child { border-bottom: 0; padding-bottom: 0; }
.seo-aside__list b { font-weight: 650; }
.seo-aside__list span { color: var(--color-emerald-700); text-align: right; }
