/* ==========================================================================
   Six Game — pages/home.css
   Hero, app mockup, bonus strip, OG banner, screenshot slider, steps,
   providers, testimonials, responsible gaming.
   ========================================================================== */

/* ==========================================================================
   1. HERO
   ========================================================================== */

.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2rem, 1.4rem + 4vw, 4.5rem));
  padding-bottom: clamp(3rem, 2rem + 4vw, 5.5rem);
  overflow: hidden;
  isolation: isolate;
}

/* Layered light: warm candle-glow, never a neon bloom */
.hero__aura {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

.hero__aura::before,
.hero__aura::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
}

.hero__aura::before {
  top: -18%;
  left: -12%;
  width: min(680px, 90%);
  height: 560px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.22), transparent 68%);
  animation: auraDrift 18s var(--ease-inout) infinite alternate;
}

.hero__aura::after {
  bottom: -24%;
  right: -10%;
  width: min(620px, 85%);
  height: 520px;
  background: radial-gradient(circle, rgba(140, 111, 22, 0.2), transparent 66%);
  animation: auraDrift 22s var(--ease-inout) infinite alternate-reverse;
}

@keyframes auraDrift {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(40px, -30px, 0) scale(1.1); }
}

/* Ember canvas — gold particles drifting upward */
.hero__embers {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.65;
}

.hero__inner {
  position: relative;
  display: grid;
  gap: clamp(2.5rem, 1.8rem + 4vw, 4.5rem);
  align-items: center;
}

@media (min-width: 1200px) {
  .hero__inner {
    grid-template-columns: 1.06fr 0.94fr;
  }
}

.hero__copy {
  max-width: 640px;
}

.hero__title {
  font-size: var(--fs-display);
  line-height: 1.02;
  letter-spacing: -0.015em;
  margin-bottom: var(--space-sm);
}

/* Clip-path wipe reveal, line by line.
   Every entrance below animates with `backwards` fill from a visible resting
   state, so if the animation never runs the content is still on screen. */
.hero__title .line {
  display: block;
  overflow: hidden;
}

.hero__title .line > span {
  display: block;
  animation: wipeIn 900ms var(--ease-luxury) backwards;
}

.hero__title .line:nth-child(1) > span { animation-delay: 60ms; }
.hero__title .line:nth-child(2) > span { animation-delay: 150ms; }
.hero__title .line:nth-child(3) > span { animation-delay: 240ms; }

@keyframes wipeIn {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0 0 0); }
}

.hero__sub {
  font-size: var(--fs-lg);
  color: var(--color-ivory-dim);
  max-width: 56ch;
  margin-bottom: var(--space-md);
  animation: fadeUp 600ms var(--ease-luxury) 150ms backwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
  animation: fadeUp 600ms var(--ease-luxury) 90ms backwards;
}

.hero__actions {
  animation: fadeUp 600ms var(--ease-luxury) 210ms backwards;
}

/* The Telegram group button sits directly beside the hero CTAs */
.hero__tg {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: var(--space-sm);
  padding: 0.55rem 1.1rem 0.55rem 0.55rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(41, 169, 235, 0.35);
  background: rgba(41, 169, 235, 0.08);
  animation: fadeUp 600ms var(--ease-luxury) 270ms backwards;
  transition: transform var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-normal), border-color var(--transition-fast);
}

.hero__tg:hover,
.hero__tg:focus-visible {
  transform: translateY(-2px);
  background: rgba(41, 169, 235, 0.16);
  border-color: rgba(41, 169, 235, 0.65);
  box-shadow: 0 0 26px rgba(41, 169, 235, 0.32);
}

.hero__tg-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #2AABEE, #229ED9);
  color: #fff;
  box-shadow: 0 3px 12px rgba(41, 169, 235, 0.5);
}

.hero__tg-icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.hero__tg-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.hero__tg-text b {
  font-size: var(--fs-sm);
  color: var(--color-ivory);
}

.hero__tg-text span {
  font-size: 0.7rem;
  color: #7FCBF0;
}

/* Trust ticker under the CTAs */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border-soft);
  animation: fadeUp 600ms var(--ease-luxury) 330ms backwards;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  color: var(--color-ivory-muted);
  letter-spacing: 0.04em;
}

.hero__trust-item svg {
  width: 16px;
  height: 16px;
  flex: none;
  fill: none;
  stroke: var(--color-royal-gold);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==========================================================================
   2. APP MOCKUP — premium phone device frame
   ========================================================================== */

.hero__media {
  display: flex;
  justify-content: center;
  perspective: 1400px;
}

.device-stage {
  position: relative;
  display: grid;
  place-items: center;
  padding-block: 1rem;
}

/* Gold halo behind the handset */
.device-stage::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, 128%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.28) 0%, rgba(201, 162, 39, 0.08) 42%, transparent 68%);
  filter: blur(28px);
  z-index: 0;
  animation: haloBreathe 6s var(--ease-inout) infinite;
}

@keyframes haloBreathe {
  0%, 100% { opacity: 0.75; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;    transform: translate(-50%, -50%) scale(1.06); }
}

/* Rotating conic ring — subtle "engraved brass" halo */
.device-stage::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(500px, 116%);
  aspect-ratio: 1;
  border-radius: 50%;
  z-index: 0;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(232, 199, 102, 0.22) 40deg,
    transparent 110deg,
    transparent 250deg,
    rgba(201, 162, 39, 0.16) 300deg,
    transparent 360deg
  );
  mask: radial-gradient(circle, transparent 61%, #000 62%, #000 63.5%, transparent 64.5%);
  -webkit-mask: radial-gradient(circle, transparent 61%, #000 62%, #000 63.5%, transparent 64.5%);
  animation: ringSpin 26s linear infinite;
  transform: translate(-50%, -50%);
}

@keyframes ringSpin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.device {
  position: relative;
  z-index: 2;
  /* Best-fit sizing: never cramped on mobile, never oversized on desktop. */
  width: clamp(240px, 58vw, 352px);
  transform-style: preserve-3d;
  animation:
    deviceIn 850ms var(--ease-luxury) 120ms backwards,
    deviceFloat 7s var(--ease-inout) 1000ms infinite;
}

@keyframes deviceIn {
  from { opacity: 0; transform: translateY(46px) rotateX(14deg) scale(0.9); }
  to   { opacity: 1; transform: none; }
}

@keyframes deviceFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-16px) rotate(-0.5deg); }
}

.device__frame {
  position: relative;
  padding: 10px;
  border-radius: 40px;
  background:
    linear-gradient(155deg, #E8C766 0%, #8C6F16 22%, #2A2620 44%, #1A1712 60%, #8C6F16 82%, #E8C766 100%);
  box-shadow:
    0 34px 70px rgba(0, 0, 0, 0.7),
    0 0 44px rgba(201, 162, 39, 0.28),
    inset 0 1px 1px rgba(255, 255, 255, 0.22);
}

.device__screen-wrap {
  position: relative;
  border-radius: 31px;
  overflow: hidden;
  background: #0A0908;
  box-shadow: inset 0 0 0 2px #0A0908, inset 0 0 22px rgba(0, 0, 0, 0.9);
  aspect-ratio: 1279 / 2381;
}

.device__screen {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Notch / dynamic island */
.device__notch {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  width: 33%;
  height: 20px;
  border-radius: var(--radius-full);
  background: #050504;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.device__notch::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2C3A4A, #080B10 70%);
}

/* Glass sheen sweeping across the screen */
.device__sheen {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    118deg,
    transparent 34%,
    rgba(255, 255, 255, 0.13) 44%,
    rgba(255, 255, 255, 0.04) 52%,
    transparent 62%
  );
  transform: translateX(-120%);
  animation: sheenSweep 6.5s var(--ease-inout) 2s infinite;
}

@keyframes sheenSweep {
  0%   { transform: translateX(-120%); }
  38%  { transform: translateX(120%); }
  100% { transform: translateX(120%); }
}

/* Physical side buttons */
.device__key {
  position: absolute;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(180deg, #8C6F16, #E8C766, #8C6F16);
}

.device__key--power  { right: -3px; top: 27%; height: 62px; }
.device__key--vol-up { left: -3px;  top: 20%; height: 34px; }
.device__key--vol-dn { left: -3px;  top: 31%; height: 34px; }

/* Floating info chips orbiting the handset */
.device__chip {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(20, 18, 15, 0.92);
  border: 1px solid var(--color-border-gold-s);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), var(--shadow-inset-gold);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-ivory);
  animation: chipFloat 5.5s var(--ease-inout) infinite;
}

.device__chip b {
  color: var(--color-royal-gold-lt);
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.device__chip--tl {
  top: 12%;
  left: -14%;
  animation-delay: 0.4s;
}

.device__chip--br {
  bottom: 16%;
  right: -13%;
  animation-delay: 2.2s;
}

.device__chip--bl {
  bottom: 38%;
  left: -18%;
  animation-delay: 1.3s;
}

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

.device__chip-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-success);
  box-shadow: 0 0 9px var(--color-success);
  flex: none;
}

/* Reflection beneath the handset */
.device__reflection {
  position: absolute;
  left: 50%;
  bottom: -8%;
  transform: translateX(-50%);
  width: 74%;
  height: 42px;
  background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.24), transparent 72%);
  filter: blur(11px);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 520px) {
  .device__chip--tl { left: -6%; }
  .device__chip--bl { left: -8%; font-size: 0.62rem; }
  .device__chip--br { right: -6%; }
}

/* ==========================================================================
   3. BONUS STRIP
   ========================================================================== */

.bonus-strip {
  position: relative;
  padding-block: clamp(2rem, 1.5rem + 2.4vw, 3.25rem);
  border-block: 1px solid var(--color-border-gold);
  background:
    radial-gradient(900px 240px at 50% 50%, rgba(201, 162, 39, 0.14), transparent 72%),
    rgba(20, 18, 15, 0.75);
  overflow: hidden;
}

.bonus-strip__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-sm);
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .bonus-strip__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.bonus-strip .stat {
  position: relative;
}

@media (min-width: 900px) {
  .bonus-strip .stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 22%;
    height: 56%;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--color-border-gold-s), transparent);
  }
}

/* ==========================================================================
   4. OG BANNER SHOWCASE
   ========================================================================== */

.og-banner {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border-gold-s);
  overflow: hidden;
  box-shadow: var(--shadow-card), 0 0 60px rgba(201, 162, 39, 0.14);
  background: #0A0908;
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.og-banner:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover), 0 0 82px rgba(201, 162, 39, 0.24);
}

/* The artwork carries its own typography, so nothing is layered on top of it —
   the caption sits in its own bar underneath instead. */
.og-banner__media {
  position: relative;
  overflow: hidden;
}

.og-banner__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 1.2s var(--ease-luxury);
}

.og-banner:hover .og-banner__img {
  transform: scale(1.025);
}

/* Slow light sweep across the banner */
.og-banner__shine {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(112deg, transparent 38%, rgba(255, 255, 255, 0.16) 47%, transparent 57%);
  transform: translateX(-110%);
  animation: bannerShine 7s var(--ease-inout) 1.5s infinite;
}

@keyframes bannerShine {
  0%   { transform: translateX(-110%); }
  42%  { transform: translateX(110%); }
  100% { transform: translateX(110%); }
}

.og-banner__bar {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: clamp(1rem, 0.85rem + 1.2vw, 1.6rem) clamp(1.1rem, 0.9rem + 1.4vw, 2rem);
  background:
    linear-gradient(90deg, rgba(201, 162, 39, 0.09), rgba(201, 162, 39, 0.02) 60%),
    rgba(12, 11, 9, 0.96);
  border-top: 1px solid var(--color-border-gold);
}

.og-banner__label {
  font-family: var(--font-accent);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-royal-gold);
}

.og-banner__headline {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--color-ivory);
  margin-top: 0.2rem;
}

@media (max-width: 640px) {
  .og-banner__bar {
    justify-content: center;
    text-align: center;
  }

  .og-banner__bar .btn {
    width: 100%;
  }
}

.og-banner__frame {
  position: absolute;
  inset: 8px;
  z-index: 4;
  border: 1px solid rgba(232, 199, 102, 0.16);
  border-radius: calc(var(--radius-xl) - 8px);
  pointer-events: none;
}

/* ==========================================================================
   5. SCREENSHOT SLIDER
   ========================================================================== */

.shots {
  position: relative;
}

.shots__viewport {
  position: relative;
  overflow: hidden;
  /* Fade the edges so the rail reads as continuous, never clipped. */
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}

.shots__track {
  display: flex;
  gap: clamp(0.85rem, 0.6rem + 1.2vw, 1.75rem);
  padding-block: 1.25rem;
  transition: transform 750ms var(--ease-luxury);
  will-change: transform;
}

.shots__slide {
  flex: 0 0 auto;
  width: clamp(178px, 46vw, 240px);
  transition: opacity var(--transition-slow), transform var(--transition-slow), filter var(--transition-slow);
  opacity: 0.42;
  transform: scale(0.9);
  filter: saturate(0.6);
}

.shots__slide.is-active {
  opacity: 1;
  transform: scale(1);
  filter: none;
}

/* Compact device frame reused for each screenshot */
.shot-frame {
  position: relative;
  padding: 7px;
  border-radius: 28px;
  background: linear-gradient(155deg, #E8C766 0%, #8C6F16 24%, #241F19 50%, #8C6F16 80%, #E8C766 100%);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.62);
}

.shot-frame__inner {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #0A0908;
  aspect-ratio: 1280 / 2487;
}

.shot-frame__inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.shot-frame__notch {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 34%;
  height: 14px;
  border-radius: var(--radius-full);
  background: #050504;
}

.shots__caption {
  margin-top: 0.85rem;
  text-align: center;
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-accent);
  color: var(--color-ivory-muted);
  transition: color var(--transition-normal);
}

.shots__slide.is-active .shots__caption {
  color: var(--color-royal-gold);
}

.shots__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.shots__btn {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  border: 1px solid var(--color-border-gold);
  background: rgba(201, 162, 39, 0.06);
  color: var(--color-royal-gold-lt);
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-normal), border-color var(--transition-fast);
}

.shots__btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shots__btn:hover,
.shots__btn:focus-visible {
  background: rgba(201, 162, 39, 0.18);
  border-color: var(--color-royal-gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-glow);
}

.shots__dots {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.shots__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  background: rgba(245, 240, 230, 0.2);
  transition: width var(--transition-normal), background-color var(--transition-normal);
}

.shots__dot.is-active {
  width: 26px;
  border-radius: var(--radius-full);
  background: var(--gradient-gold);
  box-shadow: var(--shadow-gold-glow);
}

/* ==========================================================================
   6. STEPS
   ========================================================================== */

.steps {
  display: grid;
  gap: var(--space-md);
  counter-reset: step;
}

@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 1200px) {
  .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

.step {
  position: relative;
  padding: clamp(1.35rem, 1rem + 1.2vw, 2rem);
  background: var(--gradient-panel);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.step:hover {
  transform: translateY(-6px);
  border-color: var(--color-border-gold-s);
  box-shadow: var(--shadow-card-hover), var(--shadow-gold-glow);
}

.step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.6rem;
  background: var(--gradient-text-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.step__title {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--color-ivory);
  margin-bottom: 0.4rem;
}

.step__text {
  font-size: var(--fs-sm);
  color: var(--color-ivory-dim);
  line-height: 1.72;
}

/* Connector arrow between steps on wide screens */
@media (min-width: 1200px) {
  .step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 2.4rem;
    right: -1.1rem;
    width: 0.85rem;
    height: 1px;
    background: var(--color-border-gold-s);
    z-index: 2;
  }
}

/* ==========================================================================
   7. FEATURE / BENEFIT LIST
   ========================================================================== */

.check-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .check-list--2col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  font-size: var(--fs-sm);
  color: var(--color-ivory-dim);
  line-height: 1.7;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(201, 162, 39, 0.28), rgba(201, 162, 39, 0.08));
  border: 1px solid var(--color-border-gold-s);
}

.check-list li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 0.62em;
  width: 5px;
  height: 9px;
  border-right: 1.6px solid var(--color-royal-gold-lt);
  border-bottom: 1.6px solid var(--color-royal-gold-lt);
  transform: rotate(42deg);
}

.check-list li strong {
  color: var(--color-ivory);
}

/* ==========================================================================
   8. TESTIMONIALS
   ========================================================================== */

.quote {
  position: relative;
  padding: clamp(1.5rem, 1.2rem + 1.4vw, 2.25rem);
  background: var(--gradient-panel);
  border: 1px solid var(--color-border-gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.quote:hover {
  transform: translateY(-5px);
  border-color: var(--color-border-gold-s);
}

.quote::before {
  content: "\201C";
  position: absolute;
  top: 0.15em;
  right: 0.35em;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: rgba(201, 162, 39, 0.13);
  pointer-events: none;
}

.quote__stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 0.75rem;
  color: var(--color-royal-gold);
}

.quote__stars svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
}

.quote__text {
  font-size: var(--fs-sm);
  color: var(--color-ivory-dim);
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

.quote__meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: var(--space-sm);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--color-border-soft);
}

.quote__avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: none;
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(201, 162, 39, 0.3), rgba(201, 162, 39, 0.06));
  border: 1px solid var(--color-border-gold-s);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-royal-gold-lt);
}

.quote__who {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--color-ivory);
}

.quote__where {
  font-size: 0.7rem;
  color: var(--color-ivory-muted);
}

/* ==========================================================================
   9. RESPONSIBLE GAMING
   ========================================================================== */

.responsible {
  display: grid;
  gap: clamp(1.75rem, 1.4rem + 2vw, 3rem);
  padding: clamp(1.6rem, 1.2rem + 2vw, 3rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(198, 86, 74, 0.28);
  background:
    radial-gradient(700px 300px at 8% 0%, rgba(198, 86, 74, 0.1), transparent 68%),
    var(--gradient-panel);
}

@media (min-width: 1200px) {
  .responsible {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.responsible__shield {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-sm);
  border-radius: var(--radius-md);
  border: 1px solid rgba(198, 86, 74, 0.4);
  background: rgba(198, 86, 74, 0.1);
  color: #E08A7E;
}

.responsible__shield svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ==========================================================================
   10. PROVIDER / CATEGORY RAIL
   ========================================================================== */

.tile-rail {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .tile-rail { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1200px) {
  .tile-rail { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}

.tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.1rem 0.6rem;
  text-align: center;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-soft);
  background: rgba(29, 26, 21, 0.6);
  transition: transform var(--transition-fast), border-color var(--transition-fast), background-color var(--transition-fast);
}

.tile:hover {
  transform: translateY(-4px);
  border-color: var(--color-border-gold);
  background: rgba(201, 162, 39, 0.07);
}

.tile__icon {
  width: 26px;
  height: 26px;
  color: var(--color-royal-gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.tile__label {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--color-ivory);
  letter-spacing: 0.03em;
}

.tile__count {
  font-size: 0.66rem;
  color: var(--color-ivory-muted);
}
