/* ─────────────────────────────────────────
   RESET & BASE
───────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:            #0d0a1a;
  --bg-alt:        #110e22;
  --surface:       rgba(255, 255, 255, 0.055);
  --surface-hover: rgba(255, 255, 255, 0.10);
  --border:        rgba(201, 162, 39, 0.18);
  --gold:          #c9a227;
  --gold-light:    #f0d080;
  --gold-dim:      rgba(201, 162, 39, 0.25);
  --text:          #e8e0f0;
  --text-muted:    #a098b8;
  --white:         #ffffff;
  --radius-card:   16px;
  --shadow-card:   0 8px 40px rgba(0, 0, 0, 0.55);
  --shadow-glow:   0 0 32px rgba(201, 162, 39, 0.4);
  --transition:    0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-light);
}

/* ─────────────────────────────────────────
   REVEAL ANIMATION (JS-driven)
───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('image/hero-backgroud-desktop.jpg');
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  overflow: hidden;
  padding: 60px 24px 120px;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(13, 10, 26, 0.55) 0%,
    rgba(13, 10, 26, 0.72) 60%,
    rgba(13, 10, 26, 0.95) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  width: 100%;
}

.hero__label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.3);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
}

.hero__title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.5px;
}

.hero__title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  margin-right: 0.22em;
}

.hero__title .word.show {
  opacity: 1;
  transform: translateY(0);
}

.hero__callouts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
  margin-top: 28px;
}

.hero__callout {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(232, 224, 240, 0.85);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.hero__callout.show {
  opacity: 1;
  transform: translateY(0);
}

.hero__callout-icon {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
}

/* ─────────────────────────────────────────
   CARDS SECTION
───────────────────────────────────────── */
.cards-section {
  position: relative;
  z-index: 10;
  padding: 0 16px 64px;
  background: transparent;
}

.cards-container {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: -64px;
}

/* ─────────────────────────────────────────
   BRAND CARD
───────────────────────────────────────── */
.brand-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  border-color: rgba(201, 162, 39, 0.5);
}

.brand-card--featured {
  border: 1.5px solid var(--gold);
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.25), 0 0 28px rgba(201, 162, 39, 0.2), var(--shadow-card);
}

.brand-card--featured:hover {
  box-shadow: 0 0 0 1px rgba(201, 162, 39, 0.5), var(--shadow-glow), var(--shadow-card);
}

.brand-card__badge {
  position: absolute;
  top: -11px;
  left: 20px;
  color: #0d0a1a;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-card__badge--gold {
  background: linear-gradient(90deg, #c9a227, #f0d080);
}

.brand-card__badge--orange {
  background: linear-gradient(90deg, #e8640a, #ff9a3c);
  color: #fff;
}

.brand-card__badge--green {
  background: linear-gradient(90deg, #1a8a3a, #3dd668);
  color: #fff;
}

.brand-card__body {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  min-width: 0;
}

.brand-card__logo-wrap {
  flex-shrink: 0;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-card__logo {
  width: 100%;
  height: 100px;
  object-fit: contain;
  filter: brightness(1.1);
}

.brand-card__info {
  flex: 1;
  min-width: 0;
}

.brand-card__bonus-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.brand-card__bonus-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.brand-card__bonus-img {
  width: 100%;
  max-width: 260px;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  margin-top: 2px;
}

.brand-card__rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.brand-card__stars {
  display: flex;
  gap: 3px;
}

.brand-card__stars img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  filter: sepia(1) saturate(3) hue-rotate(5deg) brightness(1.2);
}

.brand-card__score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.brand-card__cta {
  flex-shrink: 0;
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0d0a1a;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.brand-card__cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
}

.brand-card__cta:hover {
  color: #0d0a1a;
  transform: scale(1.04);
  box-shadow: 0 4px 22px rgba(201, 162, 39, 0.55);
}

.brand-card__cta:hover::after {
  left: 150%;
}

/* ─────────────────────────────────────────
   CONTENT MAIN
───────────────────────────────────────── */
.content-main {
  background-image: url('image/main-background.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.content-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13,10,26,0.88) 0%, rgba(13,10,26,0.82) 100%);
  pointer-events: none;
}

/* ─────────────────────────────────────────
   CONTENT SECTION
───────────────────────────────────────── */
.content-section {
  position: relative;
  z-index: 1;
  padding: 72px 16px;
}

.content-section--alt {
  background: rgba(255, 255, 255, 0.025);
}

.content-section__inner {
  max-width: 800px;
  margin: 0 auto;
}

.content-section__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 28px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-section p {
  color: var(--text);
  font-size: 0.96rem;
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 740px;
}

.content-section p:last-child {
  margin-bottom: 0;
}

/* ─────────────────────────────────────────
   DISCLAIMER
───────────────────────────────────────── */
.disclaimer {
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 16px;
}

.disclaimer__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.disclaimer__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  object-fit: contain;
  opacity: 0.85;
}

.disclaimer__text {
  font-size: 0.75rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.disclaimer__text strong {
  color: var(--text);
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
.footer {
  background: #090716;
  border-top: 1px solid var(--border);
  padding: 56px 16px 32px;
}

.footer__top {
  max-width: 860px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.footer__col-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}

.footer__col-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin: 16px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer__col p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}

.footer__logos {
  max-width: 860px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.footer__logos a {
  display: flex;
  align-items: center;
  opacity: 0.75;
  transition: opacity var(--transition);
}

.footer__logos a:hover {
  opacity: 1;
}

.footer__logos img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.footer__phone {
  max-width: 860px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px 0;
}

.footer__phone a {
  display: flex;
  align-items: center;
  opacity: 0.8;
  transition: opacity var(--transition);
}

.footer__phone a:hover {
  opacity: 1;
}

.footer__phone-img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.footer__phone-arrow {
  height: 20px;
  width: auto;
  opacity: 0.6;
}

.footer__phone-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.footer__links {
  max-width: 860px;
  margin: 0 auto 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 0;
  justify-content: center;
  align-items: center;
}

.footer__links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  transition: color var(--transition);
  padding: 0 8px;
}

.footer__links a:hover {
  color: var(--gold-light);
}

.footer__sep {
  color: var(--border);
  font-size: 0.78rem;
}

.footer__copy {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.5;
  margin-top: 8px;
}

/* ─────────────────────────────────────────
   MOBILE  ≤ 768px
───────────────────────────────────────── */
@media (max-width: 768px) {
  .hero__callouts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    justify-items: center;
    text-align: center;
  }

  /* Hero uses mobile background */
  .hero {
    background-image: url('image/hero-background-mb.jpg');
    background-attachment: scroll;
    min-height: auto;
    padding: 48px 0 140px;
    align-items: flex-start;
    padding-top: 48px;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  /* Cards section overlaps hero by ~50% of card height */
  .cards-section {
    padding: 0 0 40px;
  }

  .cards-container {
    margin-top: -80px;
    gap: 20px;
    max-width: 100%;
  }

  /* Each card is full viewport width, no rounded corners */
  .brand-card {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-radius: 0;
    border-left: none;
    border-right: none;
    flex-wrap: wrap;
    gap: 14px;
    padding: 20px 20px 16px;
  }

  .brand-card__body {
    display: grid;
    grid-template-columns: 150px 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
      "logo info"
      "rating info";
    gap: 8px 12px;
    width: 100%;
  }

  .brand-card__logo-wrap {
    grid-area: logo;
    width: 150px;
    align-self: center;
  }

  .brand-card__rating {
    grid-area: rating;
    justify-self: center;
  }

  .brand-card__info {
    grid-area: info;
    align-self: center;
  }

  .brand-card__logo {
    height: 60px;
  }

  .brand-card__cta {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  /* Content sections */
  .content-main {
    background-attachment: scroll;
  }

  .content-section {
    padding: 48px 20px;
  }

  /* Footer */
  .footer__top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__phone {
    flex-direction: column;
    gap: 10px;
  }

  .footer__links {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer__sep {
    display: none;
  }
}

/* ─────────────────────────────────────────
   TABLET  769px – 1024px
───────────────────────────────────────── */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    background-attachment: scroll;
  }

  .content-main {
    background-attachment: scroll;
  }

  .brand-card__body {
    flex-wrap: wrap;
  }
}

/* ─────────────────────────────────────────
   WHEEL TEASER (inline hint)
───────────────────────────────────────── */
.wheel-teaser {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  border-radius: var(--radius-card);
  border: 1px dashed rgba(201, 162, 39, 0.35);
  background: rgba(201, 162, 39, 0.04);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.wheel-teaser:hover {
  border-color: rgba(201, 162, 39, 0.65);
  background: rgba(201, 162, 39, 0.08);
}

.wheel-teaser__icon {
  display: block;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(201, 162, 39, 0.45);
}

.wheel-teaser__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wheel-teaser__text strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold-light);
}

.wheel-teaser__text span {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─────────────────────────────────────────
   SPINNING WHEEL — FLOATING WIDGET
───────────────────────────────────────── */
.wheel-widget {
  position: fixed;
  right: 20px;
  top: 70%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  user-select: none;
}

.wheel-widget__canvas {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(201, 162, 39, 0.55), 0 4px 16px rgba(0,0,0,0.5);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.wheel-widget:hover .wheel-widget__canvas {
  transform: scale(1.14);
  box-shadow: 0 0 32px rgba(201, 162, 39, 0.85), 0 6px 20px rgba(0,0,0,0.5);
}

.wheel-widget__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 1px 8px rgba(0,0,0,0.9);
  opacity: 0;
  transform: translateX(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  white-space: nowrap;
}

.wheel-widget:hover .wheel-widget__label {
  opacity: 1;
  transform: translateX(0);
}

/* ─────────────────────────────────────────
   SPINNING WHEEL — MODAL
───────────────────────────────────────── */
.wheel-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 40px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.wheel-modal.is-open {
  pointer-events: all;
  opacity: 1;
}

.wheel-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 10, 26, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.wheel-modal__panel {
  position: relative;
  z-index: 1;
  padding: 40px 28px 28px;
  background: #110e22;
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 40px rgba(201,162,39,0.12);
  width: calc(100vw - 32px);
  max-width: 420px;
  max-height: 92vh;
  overflow-y: auto;
  transform: scale(0.88);
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wheel-modal.is-open .wheel-modal__panel {
  transform: scale(1);
}

.wheel-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 2px 8px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.wheel-modal__close:hover {
  color: var(--gold-light);
  background: rgba(255,255,255,0.06);
}

/* ─────────────────────────────────────────
   SPINNING WHEEL — INNER CONTENT
───────────────────────────────────────── */
.wheel-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.wheel-section__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 4vw, 1.9rem);
  font-weight: 700;
  color: var(--gold-light);
  text-align: center;
  line-height: 1.2;
}

.wheel-section__sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: -12px;
}

.wheel-stage {
  display: flex;
  justify-content: center;
}

.wheel-canvas-wrap {
  position: relative;
  width: min(340px, calc(100vw - 72px));
  aspect-ratio: 1 / 1;
}

.wheel-canvas-wrap canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
}

.wheel-pointer {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 11px solid transparent;
  border-right: 11px solid transparent;
  border-top: 22px solid var(--gold);
  z-index: 3;
  filter: drop-shadow(0 2px 8px rgba(201, 162, 39, 0.7));
}

.wheel-spin-btn {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0d0a1a;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), opacity var(--transition);
  animation: wheel-btn-pulse 2s ease-in-out infinite;
}

.wheel-spin-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 24px rgba(201, 162, 39, 0.6);
  animation: none;
}

.wheel-spin-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  animation: none;
  transform: none;
}

@keyframes wheel-btn-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.55); }
  50%       { box-shadow: 0 0 0 12px rgba(201, 162, 39, 0); }
}

.wheel-result {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 20px 28px;
  background: rgba(201, 162, 39, 0.07);
  border: 1px solid var(--gold);
  border-radius: 12px;
  text-align: center;
  width: 100%;
  animation: wheel-result-appear 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes wheel-result-appear {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

.wheel-result__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.wheel-result__name {
  display: block;
  max-width: 200px;
  height: 64px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.15);
}

.wheel-result:hover {
  border-color: rgba(201, 162, 39, 0.6);
  background: rgba(201, 162, 39, 0.12);
}

.wheel-result__bonus {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.wheel-result__bonus-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  padding: 2px 10px;
  border-radius: 4px;
}

.wheel-result__bonus-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  text-align: center;
  line-height: 1.3;
}

.wheel-result__cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #0d0a1a;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 8px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.wheel-result__cta:hover {
  color: #0d0a1a;
  transform: scale(1.04);
  box-shadow: 0 4px 22px rgba(201, 162, 39, 0.55);
}

/* ─────────────────────────────────────────
   SCROLLBAR
───────────────────────────────────────── */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ─────────────────────────────────────────
   SELECTION
───────────────────────────────────────── */
::selection {
  background: var(--gold-dim);
  color: var(--white);
}
