@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&family=Noto+Sans+Sinhala:wght@600;700&family=Noto+Sans+Tamil:wght@600;700&display=swap");
@import "tailwindcss";

/* 1xBet brand system: navy + electric blue + yellow CTA + green wins */
@theme {
  --font-sans: "Inter", "Noto Sans Sinhala", "Noto Sans Tamil", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Inter", ui-sans-serif, system-ui, sans-serif;
  --color-navy: #061428;
  --color-navy2: #0a1f3d;
  --color-blue: #1a66ff;
  --color-blue-bright: #3d8bff;
  --color-yellow: #ffd200;
  --color-yellow-hot: #ffe566;
  --color-green: #00e676;
  --color-green-dark: #00c853;
  --color-accent: #ffd200;
  --color-accent2: #1a66ff;
  --color-ink: #ffffff;
  --color-muted: #9bb0cc;
  --color-line: rgba(61, 139, 255, 0.25);
  --color-cta-text: #061428;
  --color-gold: #ffd200;
  --color-saffron: #ffd200;
  --color-magenta: #1a66ff;
  --color-lotus: #3d8bff;
  --color-teal: #00e676;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--color-ink);
  background:
    radial-gradient(ellipse 100% 70% at 50% -15%, rgba(26, 102, 255, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 30%, rgba(255, 210, 0, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #061428 0%, #0a1f3d 40%, #050d1a 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, .font-display { font-family: var(--font-display); }

.fest-lights {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
  background-image:
    radial-gradient(1.5px 1.5px at 12% 18%, rgba(255, 210, 0, 0.9), transparent),
    radial-gradient(1.5px 1.5px at 28% 8%, rgba(61, 139, 255, 0.9), transparent),
    radial-gradient(1.5px 1.5px at 48% 14%, rgba(0, 230, 118, 0.7), transparent),
    radial-gradient(1.5px 1.5px at 68% 6%, rgba(255, 210, 0, 0.85), transparent),
    radial-gradient(1.5px 1.5px at 88% 16%, rgba(61, 139, 255, 0.8), transparent);
  animation: twinkle 5s ease-in-out infinite alternate;
}

@keyframes twinkle {
  from { opacity: 0.35; }
  to { opacity: 0.7; }
}

.brand-frame {
  position: relative;
  border-radius: 1rem;
  background: linear-gradient(160deg, rgba(10, 31, 61, 0.98), rgba(6, 20, 40, 0.98));
  border: 1px solid rgba(61, 139, 255, 0.35);
  box-shadow:
    0 0 0 1px rgba(255, 210, 0, 0.08),
    0 12px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.brand-frame--glow {
  box-shadow:
    0 0 0 1px rgba(255, 210, 0, 0.2),
    0 0 40px rgba(26, 102, 255, 0.25),
    0 12px 40px rgba(0, 0, 0, 0.4);
}

.kolam-frame { /* alias for older components */
  position: relative;
  border-radius: 1rem;
  background: linear-gradient(160deg, rgba(10, 31, 61, 0.98), rgba(6, 20, 40, 0.98));
  border: 1px solid rgba(61, 139, 255, 0.35);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.section-title {
  font-size: clamp(1.2rem, 4vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}

.section-title span {
  color: var(--color-yellow);
}

.kicker {
  display: inline-block;
  margin-bottom: 0.3rem;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-yellow);
}

/* Alternating section rhythm so the page reads in distinct beats */
.section-tint {
  position: relative;
  background:
    linear-gradient(180deg, rgba(26, 102, 255, 0.07), rgba(26, 102, 255, 0) 40%),
    rgba(255, 255, 255, 0.015);
  border-top: 1px solid rgba(61, 139, 255, 0.14);
  border-bottom: 1px solid rgba(61, 139, 255, 0.14);
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 54px;
  padding: 0 1.5rem;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffe566 0%, #ffd200 40%, #f5b800 100%);
  color: var(--color-cta-text);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  box-shadow:
    0 0 24px rgba(255, 210, 0, 0.45),
    0 4px 0 #c49200,
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
  animation: cta-pulse 2.2s ease-in-out infinite;
}

/* Keep Tailwind .hidden working over .cta-btn { display:flex } */
.cta-btn.hidden,
.hidden.cta-btn {
  display: none !important;
}

.cta-btn--inline {
  display: inline-flex;
  width: auto;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.cta-btn:active {
  transform: translateY(2px);
  box-shadow: 0 0 12px rgba(255, 210, 0, 0.35), 0 1px 0 #c49200;
}

.cta-btn--blue {
  background: linear-gradient(180deg, #4d94ff 0%, #1a66ff 50%, #0d4fd6 100%);
  color: #fff;
  box-shadow:
    0 0 24px rgba(26, 102, 255, 0.5),
    0 4px 0 #0a3a9e,
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  animation: none;
}

.cta-btn--green {
  background: linear-gradient(180deg, #69f0ae 0%, #00e676 45%, #00c853 100%);
  color: #003d1f;
  box-shadow:
    0 0 24px rgba(0, 230, 118, 0.4),
    0 4px 0 #009624,
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.cta-btn.is-locked {
  opacity: 0.5;
  pointer-events: none;
  animation: none;
}

@keyframes cta-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(255, 210, 0, 0.4), 0 4px 0 #c49200, inset 0 1px 0 rgba(255,255,255,0.5); }
  50% { box-shadow: 0 0 36px rgba(255, 210, 0, 0.7), 0 4px 0 #c49200, inset 0 1px 0 rgba(255,255,255,0.5); }
}

/* Hero: floating particles + jackpot ticker */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-particle {
  position: absolute;
  bottom: -10%;
  font-size: 1.1rem;
  opacity: 0;
  animation: hero-float 9s ease-in infinite;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.hero-particle--0 { left: 6%; animation-delay: 0s; font-size: 1.3rem; }
.hero-particle--1 { left: 18%; animation-delay: 1.2s; font-size: 0.9rem; }
.hero-particle--2 { left: 30%; animation-delay: 2.6s; font-size: 1.1rem; }
.hero-particle--3 { left: 45%; animation-delay: 0.6s; font-size: 0.85rem; }
.hero-particle--4 { left: 58%; animation-delay: 3.4s; font-size: 1.2rem; }
.hero-particle--5 { left: 70%; animation-delay: 1.8s; font-size: 0.95rem; }
.hero-particle--6 { left: 82%; animation-delay: 2.2s; font-size: 1.15rem; }
.hero-particle--7 { left: 92%; animation-delay: 0.2s; font-size: 0.9rem; }
.hero-particle--8 { left: 12%; animation-delay: 4.1s; font-size: 1rem; }

@keyframes hero-float {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  12% { opacity: 0.85; }
  85% { opacity: 0.6; }
  100% { transform: translateY(-420px) rotate(30deg); opacity: 0; }
}

.jackpot-box {
  position: relative;
  z-index: 1;
  margin: 0 auto 0.9rem;
  max-width: 320px;
  border-radius: 14px;
  padding: 0.65rem 1rem;
  background: linear-gradient(160deg, rgba(255, 210, 0, 0.16), rgba(26, 102, 255, 0.14));
  border: 1px solid rgba(255, 210, 0, 0.4);
  box-shadow: 0 0 26px rgba(255, 210, 0, 0.14);
}

.jackpot-box__label {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-yellow);
}

.jackpot-box__value {
  margin-top: 2px;
  font-size: clamp(1.15rem, 5vw, 1.5rem);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  color: #fff;
  letter-spacing: -0.01em;
}

.jackpot-box__sub {
  margin-top: 2px;
  font-size: 10px;
  color: var(--color-muted);
}

@media (prefers-reduced-motion: reduce) {
  .hero-particle { animation: none; opacity: 0; }
}

/* Bonus Hunt — unified stepper + stages */
.hunt-badge {
  margin-bottom: 0.25rem;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-yellow);
}

.hunt-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin: 0 auto 1.1rem;
  max-width: 380px;
}

.hunt-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.hunt-step__dot {
  display: grid;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--color-line);
  font-size: 11px;
  font-weight: 900;
  color: var(--color-muted);
  transition: all 0.25s ease;
}

.hunt-step__label {
  font-size: 9px;
  font-weight: 700;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.hunt-step.is-active .hunt-step__dot {
  background: var(--color-yellow);
  border-color: var(--color-yellow);
  color: #061428;
  box-shadow: 0 0 14px rgba(255, 210, 0, 0.5);
}

.hunt-step.is-active .hunt-step__label { color: #fff; }

.hunt-step.is-done .hunt-step__dot {
  background: var(--color-green);
  border-color: var(--color-green);
  color: #003d1f;
}

.hunt-step.is-done .hunt-step__label { color: var(--color-green); }

.hunt-step__line {
  height: 2px;
  width: 32px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.25s ease;
}

.hunt-step__line.is-done { background: var(--color-green); }

.hunt-stage { position: relative; }

.hunt-divider {
  margin: 1.1rem 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-line), transparent);
}

.hunt-stage--locked {
  pointer-events: none;
  filter: grayscale(0.5);
  opacity: 0.4;
}

.hunt-stage__lockmsg {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(6, 20, 40, 0.55);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
  padding: 0 1rem;
}

.hunt-stage--locked .hunt-stage__lockmsg { display: flex; }
.hunt-stage:not(.hunt-stage--locked) .hunt-stage__lockmsg { display: none; }

.hunt-stage--unlocked-pulse {
  animation: hunt-pulse 1.4s ease-in-out 2;
}

@keyframes hunt-pulse {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 210, 0, 0); }
  50% { box-shadow: 0 0 0 6px rgba(255, 210, 0, 0.12); }
}

/* Fortune wheel — restrained black & antique-gold casino cabinet */
.wheel-scene {
  position: relative;
  display: grid;
  place-items: center;
  padding: 10px 0 6px;
}

.wheel-glow {
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(179, 134, 31, 0.22), transparent 70%);
  filter: blur(6px);
  pointer-events: none;
  z-index: 0;
}

.wheel-wrap {
  --wheel-size: min(268px, 74vw);
  position: relative;
  z-index: 1;
  width: var(--wheel-size);
  height: var(--wheel-size);
  margin: 0 auto;
  flex-shrink: 0;
}

.wheel-pointer {
  position: absolute;
  top: -18px;
  left: 50%;
  z-index: 10;
  transform: translateX(-50%);
  width: 22px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.6));
}

.wheel-pointer__needle {
  width: 100%;
  height: auto;
  display: block;
}

.wheel-disc {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid #b3861f;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 1;
  box-shadow:
    0 0 0 1px rgba(179, 134, 31, 0.6),
    0 0 0 5px rgba(6, 20, 40, 0.9),
    0 0 0 6px rgba(179, 134, 31, 0.35),
    0 14px 36px rgba(0, 0, 0, 0.55),
    inset 0 0 26px rgba(0, 0, 0, 0.55);
  transition: transform 4.2s cubic-bezier(0.15, 0.7, 0.1, 1);
  background:
    repeating-conic-gradient(
      from -22.5deg,
      rgba(230, 187, 92, 0.9) 0deg 0.9deg,
      transparent 0.9deg 45deg
    ),
    conic-gradient(
      from -22.5deg,
      #0e1626 0deg 45deg,
      #a9791f 45deg 90deg,
      #0e1626 90deg 135deg,
      #a9791f 135deg 180deg,
      #0e1626 180deg 225deg,
      #a9791f 225deg 270deg,
      #0e1626 270deg 315deg,
      #a9791f 315deg 360deg
    );
  will-change: transform;
}

.wheel-disc__gloss {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 20%, rgba(255, 255, 255, 0.22), transparent 42%);
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* One wrapper per sector — rotates to sector center, then text sits mid-radius */
.wheel-seg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform: rotate(var(--seg-angle));
}

.wheel-seg__text {
  position: absolute;
  left: 50%;
  top: 0;
  width: 64px;
  margin-left: -32px;
  /* push toward rim: ~32% of radius from center, then counter-rotate so every label stays upright */
  transform: translateY(calc(var(--wheel-size) * -0.34)) rotate(calc(-1 * var(--seg-angle)));
  text-align: center;
  font-size: clamp(8px, 2.3vw, 10px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.15;
  color: #f5e6c4;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.95);
  white-space: normal;
  word-break: break-word;
}

.wheel-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 62px;
  height: 62px;
  margin: -31px 0 0 -31px;
  z-index: 5;
  pointer-events: none;
}

.wheel-hub__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(150deg, #f3d47e, #b3861f 55%, #7a5a15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.55);
}

.wheel-hub__core {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #10192c, #0b1220 70%);
  border: 1px solid rgba(179, 134, 31, 0.7);
  display: grid;
  place-items: center;
  box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.08), 0 0 14px rgba(179, 134, 31, 0.35);
  animation: wheel-hub-pulse 2.6s ease-in-out infinite;
}

@keyframes wheel-hub-pulse {
  0%, 100% { box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.08), 0 0 10px rgba(179, 134, 31, 0.28); }
  50% { box-shadow: inset 0 2px 6px rgba(255, 255, 255, 0.08), 0 0 18px rgba(179, 134, 31, 0.55); }
}

.wheel-hub__seal {
  width: 24px;
  height: 24px;
}

.wheel-hub__label {
  margin-top: 1px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #e6c667;
}

/* Sticky CTA bar */
.sticky-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(to top, #061428 55%, rgba(6, 20, 40, 0.92) 85%, transparent);
  box-sizing: border-box;
}

.sticky-cta-bar .cta-btn {
  width: 100%;
  max-width: 720px;
  display: flex;
}

.sticky-cta-bar .sticky-sub {
  width: 100%;
  max-width: 720px;
  margin: 0.35rem 0 0;
  text-align: center;
  font-size: 10px;
  color: var(--color-muted);
}

/* Packs — restrained lacquered plaques with a wax-seal emblem */
.pack-card {
  position: relative;
  border-radius: 10px;
  padding: 1.2rem 0.6rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(179, 134, 31, 0.4);
  overflow: hidden;
  background: linear-gradient(165deg, #131b2c, #0a0e18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 8px 20px rgba(0, 0, 0, 0.4);
}

.pack-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.08) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  z-index: 1;
}

.pack-card:hover::before { transform: translateX(120%); }
.pack-card:hover {
  transform: translateY(-3px);
  border-color: rgba(230, 198, 103, 0.7);
}

.pack-card--bronze { border-top: 2px solid #a9791f; }
.pack-card--silver { border-top: 2px solid #9aa5ae; }
.pack-card--gold { border-top: 2px solid #e6c667; }

.pack-card.is-opened { animation: pack-burst 0.5s ease; }
.pack-card.is-locked-visual { opacity: 0.55; filter: grayscale(0.4); }

@keyframes pack-burst {
  0% { transform: scale(1); }
  40% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.pack-seal {
  width: 34px;
  height: 34px;
  margin: 0 auto 0.5rem;
  display: block;
}

.pack-card__name {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f1e4bf;
}

.pack-ribbon {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  padding: 2px 7px;
  border-radius: 3px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.pack-ribbon--free {
  background: rgba(0, 230, 118, 0.16);
  border: 1px solid rgba(0, 230, 118, 0.55);
  color: #6ef7ae;
}

.pack-ribbon--lock {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-muted);
}

.pack-keys-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  background: rgba(26, 102, 255, 0.12);
  border: 1px solid var(--color-line);
  font-size: 11px;
  font-weight: 700;
}

.pack-keys-left {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.pack-pity {
  flex: 1;
  max-width: 160px;
  text-align: right;
  font-size: 9px;
  color: var(--color-muted);
}

.pack-pity-track {
  margin-top: 4px;
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}

.pack-pity-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--color-blue), var(--color-yellow));
  transition: width 0.4s ease;
}

/* Pack modal ritual */
.pack-modal[hidden] { display: none !important; }

.pack-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.pack-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 24, 0.85);
  backdrop-filter: blur(6px);
}

.pack-modal__panel {
  position: relative;
  z-index: 1;
  width: min(400px, 100%);
  padding: 1.25rem;
  border-radius: 16px;
  background: linear-gradient(165deg, #0a1f3d, #061428);
  border: 2px solid rgba(255, 210, 0, 0.4);
  box-shadow: 0 0 50px rgba(26, 102, 255, 0.35);
  text-align: center;
}

.pack-modal__stage {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-blue-bright);
}

.pack-modal__title {
  margin: 0.35rem 0 1rem;
  font-size: 1.25rem;
  font-weight: 900;
}

.pack-chest {
  position: relative;
  height: 168px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  perspective: 900px;
}

.pack-chest__glow {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(179, 134, 31, 0.35), transparent 70%);
  z-index: 0;
}

/* Sealed bonus card — flips over like a playing card to reveal the win */
.card-flip {
  position: relative;
  z-index: 1;
  width: 132px;
  height: 168px;
  transform-style: preserve-3d;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.55));
}

.card-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 12px;
  backface-visibility: hidden;
}

.card-face--front {
  background: linear-gradient(165deg, #131b2c, #0a0e18);
  border: 1px solid rgba(179, 134, 31, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), inset 0 0 0 6px rgba(179, 134, 31, 0.08);
}

.card-face--front::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(179, 134, 31, 0.35);
  border-radius: 8px;
  pointer-events: none;
}

.card-face__seal {
  width: 44px;
  height: 44px;
  display: none;
}

.card-flip[data-active-tier="bronze"] .card-face__seal--bronze,
.card-flip[data-active-tier="silver"] .card-face__seal--silver,
.card-flip[data-active-tier="gold"] .card-face__seal--gold {
  display: block;
}

.card-face__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #c9b586;
}

.card-face--back {
  background: linear-gradient(165deg, #f3d47e, #b3861f);
  border: 1px solid #f3d47e;
  transform: rotateY(180deg);
}

.card-face--back .card-face__check {
  font-size: 34px;
  color: #061428;
  line-height: 1;
}

.card-face--back .card-face__label {
  color: #061428;
  opacity: 0.75;
}

.chest-sparkle {
  position: absolute;
  color: var(--color-yellow);
  font-size: 14px;
  opacity: 0;
  filter: drop-shadow(0 0 4px rgba(230, 198, 103, 0.8));
  z-index: 2;
}

.chest-sparkle--1 { top: 10%; left: 14%; }
.chest-sparkle--2 { top: 14%; right: 12%; }

.card-flip.is-shaking {
  animation: card-rattle 0.15s linear 6;
}

.card-flip.is-open {
  animation: card-settle 0.6s cubic-bezier(0.4, 0.1, 0.2, 1) forwards;
}

.card-flip.is-open ~ .chest-sparkle--1 {
  animation: chest-sparkle-pop 0.6s ease 0.5s forwards;
}

.card-flip.is-open ~ .chest-sparkle--2 {
  animation: chest-sparkle-pop 0.6s ease 0.65s forwards;
}

@keyframes card-rattle {
  0%, 100% { transform: rotate(0) translateX(0); }
  25% { transform: rotate(-3deg) translateX(-3px); }
  75% { transform: rotate(3deg) translateX(3px); }
}

@keyframes card-settle {
  0% { transform: rotateY(0deg) scale(1); }
  70% { transform: rotateY(196deg) scale(1.08); }
  100% { transform: rotateY(180deg) scale(1); }
}

@keyframes chest-sparkle-pop {
  0% { transform: scale(0.4) translateY(0); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: scale(1.1) translateY(-24px); opacity: 0; }
}

.pack-loot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.loot-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.75rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  animation: loot-flip 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.loot-card__rarity {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

.loot-card__icon {
  font-size: 11px;
}

.loot-card__name {
  font-size: 15px;
  font-weight: 900;
}

.loot-card--common { border-color: rgba(158, 158, 158, 0.5); }
.loot-card--rare { border-color: #3d8bff; box-shadow: 0 0 16px rgba(61, 139, 255, 0.35); }
.loot-card--epic { border-color: #b388ff; box-shadow: 0 0 16px rgba(179, 136, 255, 0.4); }
.loot-card--legendary {
  position: relative;
  overflow: hidden;
  border-color: #ffd200;
  background: linear-gradient(145deg, rgba(255, 210, 0, 0.2), rgba(26, 102, 255, 0.15));
  box-shadow: 0 0 22px rgba(255, 210, 0, 0.45);
}

.loot-card--legendary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.35) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: legendary-shine 2.4s ease-in-out infinite;
}

@keyframes legendary-shine {
  0% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

@keyframes loot-flip {
  from { transform: rotateY(90deg) scale(0.8); opacity: 0; }
  to { transform: rotateY(0) scale(1); opacity: 1; }
}

.pack-modal__total {
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--color-yellow);
  margin-bottom: 0.75rem;
}

.pack-modal__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pack-modal__actions .cta-btn,
.pack-modal__locked .cta-btn {
  width: 100%;
}

.pack-modal__skip {
  margin-top: 0.75rem;
  background: none;
  border: none;
  color: var(--color-muted);
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}

.pack-modal__locked {
  text-align: center;
}

/* Share / invite loop */
.share-card {
  border-radius: 16px;
  padding: 1.1rem;
  background: linear-gradient(150deg, rgba(0, 230, 118, 0.14), rgba(26, 102, 255, 0.14));
  border: 1px solid rgba(0, 230, 118, 0.35);
  box-shadow: 0 0 30px rgba(0, 230, 118, 0.08);
}

.share-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.share-card__icon {
  flex-shrink: 0;
  font-size: 1.6rem;
  line-height: 1;
}

.share-card__title {
  font-size: 15px;
  font-weight: 900;
  color: #fff;
}

.share-card__subtitle {
  margin-top: 2px;
  font-size: 12px;
  color: var(--color-muted);
}

.share-card__actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  min-height: 42px;
  border-radius: 10px;
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s ease, filter 0.15s ease;
}

.share-btn:hover { transform: translateY(-1px); filter: brightness(1.08); }
.share-btn:active { transform: translateY(1px); }

.share-btn--whatsapp {
  background: linear-gradient(180deg, #35d566, #22b954);
  border-color: transparent;
  color: #04220f;
}

.share-btn--telegram {
  background: linear-gradient(180deg, #3fa9f5, #1a8cd8);
  border-color: transparent;
  color: #04162c;
}

.share-card__unlocked {
  margin-top: 0.75rem;
  border-radius: 10px;
  background: rgba(255, 210, 0, 0.14);
  border: 1px solid rgba(255, 210, 0, 0.4);
  padding: 0.5rem 0.7rem;
  font-size: 11px;
  font-weight: 800;
  color: var(--color-yellow);
  text-align: center;
}

/* Payment methods */
.pay-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.9rem 0.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-line);
  text-align: center;
}

/* Odd leftover card (e.g. 7th of 7) spans the full row instead of sitting orphaned */
.pay-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.pay-card--hot {
  background: linear-gradient(160deg, rgba(0, 230, 118, 0.12), rgba(26, 102, 255, 0.15));
  border-color: rgba(0, 230, 118, 0.45);
  box-shadow: 0 0 18px rgba(0, 230, 118, 0.12);
}

.pay-card__badge {
  position: absolute;
  top: 6px;
  right: 6px;
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  color: #003d1f;
  background: var(--color-green);
  padding: 1px 5px;
  border-radius: 4px;
}

.pay-card__icon-badge {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(160deg, rgba(26, 102, 255, 0.28), rgba(26, 102, 255, 0.08));
  border: 1px solid rgba(61, 139, 255, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.pay-card__icon-badge--green {
  background: linear-gradient(160deg, rgba(0, 230, 118, 0.28), rgba(0, 230, 118, 0.08));
  border-color: rgba(0, 230, 118, 0.4);
}

.pay-card__icon-badge--gold {
  background: linear-gradient(160deg, rgba(255, 210, 0, 0.28), rgba(255, 210, 0, 0.08));
  border-color: rgba(255, 210, 0, 0.4);
}

.pay-card__icon-badge--teal {
  background: linear-gradient(160deg, rgba(0, 230, 118, 0.2), rgba(26, 102, 255, 0.12));
  border-color: rgba(0, 230, 118, 0.35);
}

.pay-card__icon-badge--purple {
  background: linear-gradient(160deg, rgba(179, 136, 255, 0.28), rgba(179, 136, 255, 0.08));
  border-color: rgba(179, 136, 255, 0.4);
}

.pay-card__icon { font-size: 1.25rem; line-height: 1; }
.pay-card__name { font-size: 12px; font-weight: 800; }

/* Ticker */
.ticker-track {
  display: flex;
  gap: 1.5rem;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  white-space: nowrap;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(26, 102, 255, 0.18);
  border: 1px solid rgba(61, 139, 255, 0.3);
  font-size: 12px;
}

.ticker-win {
  color: var(--color-green);
  font-weight: 800;
}

/* Reward days */
.reward-day {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 0.45rem 0.15rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(61, 139, 255, 0.2);
  font-size: 9px;
}

.reward-day.is-today {
  background: linear-gradient(180deg, rgba(255, 210, 0, 0.25), rgba(26, 102, 255, 0.2));
  border-color: var(--color-yellow);
  box-shadow: 0 0 14px rgba(255, 210, 0, 0.25);
  transform: scale(1.04);
}

.reward-day.is-locked { opacity: 0.4; }
.reward-day__icon { font-size: 1.15rem; display: block; margin-bottom: 2px; }

/* Vault / prize lock */
.vault-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 1.25rem;
  background:
    linear-gradient(145deg, rgba(26, 102, 255, 0.25), rgba(6, 20, 40, 0.95)),
    #0a1f3d;
  border: 2px solid rgba(255, 210, 0, 0.45);
  box-shadow: 0 0 40px rgba(255, 210, 0, 0.15);
}

.vault-card .cta-btn {
  width: 100%;
  max-width: 20rem;
  margin-left: auto;
  margin-right: auto;
}

.vault-prize {
  font-size: clamp(1.4rem, 5vw, 1.85rem);
  font-weight: 900;
  color: var(--color-yellow);
  letter-spacing: -0.02em;
}

.vault-lock {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  font-size: 11px;
  font-weight: 700;
  color: var(--color-muted);
}

/* Urgency bar */
/* Online players only */
.online-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 230, 118, 0.08);
  border-bottom: 1px solid rgba(0, 230, 118, 0.2);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
}

.urgency-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 0.55rem 1rem;
  background: linear-gradient(90deg, rgba(26, 102, 255, 0.35), rgba(255, 210, 0, 0.15), rgba(26, 102, 255, 0.35));
  border-bottom: 1px solid var(--color-line);
  font-size: 12px;
  font-weight: 700;
}

.urgency-timer {
  font-variant-numeric: tabular-nums;
  color: var(--color-yellow);
  background: rgba(0, 0, 0, 0.45);
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  letter-spacing: 0.06em;
  font-weight: 900;
}

.urgency-timer.is-critical {
  color: #ff5252;
  animation: blink 0.8s ease-in-out infinite;
}

.online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-green);
  box-shadow: 0 0 8px var(--color-green);
  animation: blink 1.4s ease-in-out infinite;
}

/* Bonus limit banner (hero area) */
.bonus-limit-banner {
  width: 100%;
}

.bonus-limit-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: linear-gradient(90deg, rgba(255, 210, 0, 0.18), rgba(255, 82, 82, 0.12), rgba(255, 210, 0, 0.18));
  border: 1px solid rgba(255, 210, 0, 0.45);
  box-shadow: 0 0 24px rgba(255, 210, 0, 0.12);
}

.bonus-limit-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.bonus-limit-copy {
  flex: 1;
  min-width: 0;
}

.bonus-limit-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--color-yellow);
  line-height: 1.2;
}

.bonus-limit-sub {
  margin-top: 2px;
  font-size: 11px;
  color: var(--color-muted);
  line-height: 1.3;
}

.bonus-limit-clock {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}

.bonus-limit-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
}

.sticky-timer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  max-width: 720px;
  margin-bottom: 0.45rem;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
}

.sticky-timer-text {
  opacity: 0.9;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.confetti-piece {
  position: fixed;
  width: 8px;
  height: 8px;
  pointer-events: none;
  z-index: 9999;
  animation: confetti-fall 1.15s ease-out forwards;
}

@keyframes confetti-fall {
  0% { opacity: 1; transform: translateY(0) rotate(0); }
  100% { opacity: 0; transform: translateY(130px) rotate(720deg); }
}

.prize-reveal { animation: prize-pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); }

@keyframes prize-pop {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.progress-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.progress-dot {
  width: 28px;
  height: 6px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.15);
}

.progress-dot.is-done {
  background: var(--color-green);
  box-shadow: 0 0 8px rgba(0, 230, 118, 0.5);
}

.progress-dot.is-active {
  background: var(--color-yellow);
  box-shadow: 0 0 8px rgba(255, 210, 0, 0.5);
}

.logo-1x {
  display: inline-flex;
  align-items: baseline;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.logo-1x .x {
  color: var(--color-yellow);
}

.logo-1x .bet {
  color: #fff;
}

/* FAQ */
.faq-item {
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-line);
  padding: 0.15rem 0.9rem;
}

.faq-item__q {
  display: flex;
  cursor: pointer;
  list-style: none;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.75rem 0;
  font-weight: 700;
  font-size: 14px;
}

.faq-item__q::-webkit-details-marker { display: none; }

.faq-item__chevron {
  flex-shrink: 0;
  font-size: 16px;
  color: var(--color-yellow);
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-item__chevron { transform: rotate(180deg); }

.faq-item__a {
  padding: 0 0 0.85rem;
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.5;
}

/* Reviews */
.review-card {
  border-radius: 14px;
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.9rem 1rem;
}

.review-card__stars {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 12px;
  color: var(--color-yellow);
  letter-spacing: 0.1em;
}

.review-card__text {
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.5;
}

.review-card__author {
  margin-top: 0.6rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 12px;
  color: #fff;
}

.review-card__avatar {
  display: grid;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--color-blue), var(--color-blue-bright));
  font-size: 11px;
  font-weight: 900;
  color: #fff;
}

/* Final shell and game catalogue */
.site-header {
  border-bottom: 1px solid rgba(61, 139, 255, 0.28);
  background: rgba(6, 20, 40, 0.88);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.logo-link {
  display: inline-flex;
  flex-shrink: 0;
  border-radius: 8px;
}

.logo-img {
  display: block;
  height: 34px;
  width: auto;
  aspect-ratio: 460 / 103;
  object-fit: contain;
  object-position: left center;
}

.age-badge {
  display: grid;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.game-tile {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(61, 139, 255, 0.35);
  border-radius: 13px;
  background: #0a1f3d;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
  isolation: isolate;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.game-tile:hover,
.game-tile:focus-visible {
  transform: translateY(-3px);
  border-color: var(--color-yellow);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38), 0 0 18px rgba(255, 210, 0, 0.14);
}

.game-tile__img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.28s ease, filter 0.28s ease;
}

.game-tile:hover .game-tile__img {
  transform: scale(1.04);
  filter: saturate(1.12);
}

.game-tile__promo {
  position: absolute;
  top: 7px;
  right: 7px;
  z-index: 2;
  border-radius: 4px;
  background: var(--color-yellow);
  color: #061428;
  padding: 3px 6px;
  font-size: 8px;
  font-weight: 900;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.game-tile__bar {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding: 7px 8px;
  background: linear-gradient(180deg, #0d2a51, #081a33);
}

.game-tile__name {
  min-width: 0;
  overflow: hidden;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.game-tile__play {
  flex-shrink: 0;
  border-radius: 5px;
  background: var(--color-blue);
  color: #fff;
  padding: 4px 6px;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.rg-box {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0.85rem 1rem;
  color: var(--color-muted);
  font-size: 11px;
  line-height: 1.55;
}

.rg-box strong {
  color: #fff;
}

.site-footer {
  color: var(--color-muted);
  font-size: 10px;
  line-height: 1.55;
  text-align: center;
}

:where(a, button):focus-visible {
  outline: 3px solid var(--color-yellow);
  outline-offset: 3px;
}

@media (max-width: 380px) {
  .logo-img {
    height: 27px;
  }
}

/* Deposit Ladder — anchored tier picker with a decaying multiplier */
.ladder-decay {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto 1rem;
  max-width: 320px;
  padding: 0.45rem 0.9rem;
  border-radius: 10px;
  background: rgba(255, 82, 82, 0.1);
  border: 1px solid rgba(255, 82, 82, 0.35);
  font-size: 11px;
  font-weight: 700;
  color: #ffb4b4;
}

.ladder-decay__timer {
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  color: #ff6b6b;
  letter-spacing: 0.04em;
}

.ladder-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.ladder-list--flash {
  animation: ladder-flash 0.7s ease;
}

@keyframes ladder-flash {
  0%, 100% { background: transparent; }
  30% { background: rgba(255, 82, 82, 0.12); }
}

.ladder-tier {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--color-line);
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.15s ease;
}

.ladder-tier:hover { border-color: rgba(255, 210, 0, 0.5); }

.ladder-tier.is-selected,
.ladder-tier--best {
  border-color: var(--color-yellow);
  background: rgba(255, 210, 0, 0.08);
}

.ladder-tier.is-selected { transform: scale(1.02); }

.ladder-tier__badge {
  position: absolute;
  top: -8px;
  left: 12px;
  padding: 1px 8px;
  border-radius: 4px;
  background: var(--color-yellow);
  color: #061428;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.ladder-tier__amount {
  flex-shrink: 0;
  min-width: 84px;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.ladder-tier__arrow {
  flex-shrink: 0;
  color: var(--color-muted);
  font-size: 12px;
}

.ladder-tier__bonus {
  display: flex;
  flex: 1;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.4rem;
  text-align: right;
}

.ladder-tier__pct {
  font-size: 13px;
  font-weight: 900;
  color: var(--color-yellow);
  font-variant-numeric: tabular-nums;
}

.ladder-tier__result {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-green);
  font-variant-numeric: tabular-nums;
}

/* Reserved bundle countdown banner (inside Bonus Hunt vault stage) */
.reserved-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  background: rgba(255, 210, 0, 0.1);
  border: 1px solid rgba(255, 210, 0, 0.35);
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

.reserved-banner #reserved-timer {
  font-variant-numeric: tabular-nums;
  color: var(--color-yellow);
}

.reserved-banner.is-critical {
  border-color: rgba(255, 82, 82, 0.6);
  background: rgba(255, 82, 82, 0.12);
  animation: blink 0.8s ease-in-out infinite;
}

.reserved-banner.is-extended {
  border-color: rgba(255, 210, 0, 0.6);
  animation: hunt-pulse 1.2s ease-in-out 3;
}

.reserved-banner.is-expired {
  opacity: 0.7;
  color: var(--color-muted);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
