/* ══════════════════════════════════════════════════════════════
   WHEELS catalog — displays the real SPINCHAIN wheel-card artwork.
   ══════════════════════════════════════════════════════════════ */
.wc-screen {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: var(--s-3) var(--s-4) var(--s-8);
  display: flex; flex-direction: column; gap: var(--s-4);
}

.wc-hero { text-align: center; padding: var(--s-2) 0 var(--s-1); }
.wc-title {
  font-family: var(--font-display); font-weight: 900; font-style: italic;
  font-size: clamp(28px, 9vw, 40px); margin: 0; letter-spacing: 0.02em;
}
.wc-subtitle { margin: 4px 0 var(--s-3); color: var(--text-2); font-size: 13px; }
.wc-legend { display: flex; flex-wrap: wrap; gap: var(--s-2); justify-content: center; }
.wc-leg {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.05em; color: var(--text-2);
  background: rgba(255,255,255,0.04); border: 1px solid var(--stroke);
  padding: 4px 9px; border-radius: var(--r-pill);
}
.wc-leg i { width: 9px; height: 9px; border-radius: 50%; box-shadow: 0 0 8px currentColor; }

/* card */
.wc-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(180deg, #160e3e, #0c0822);
  border: 1.5px solid color-mix(in srgb, var(--tier-now) 45%, transparent);
  box-shadow: 0 0 26px -8px color-mix(in srgb, var(--tier-now) 55%, transparent), var(--shadow-card);
}
.wc-card.is-active {
  border-color: var(--tier-now);
  box-shadow: 0 0 0 1px var(--tier-now), 0 0 38px -6px color-mix(in srgb, var(--tier-now) 75%, transparent);
}
.wc-card.is-locked { opacity: 0.96; }

.wc-active {
  position: absolute; top: 12px; right: -34px; z-index: 3;
  transform: rotate(38deg);
  background: var(--grad-gold); color: #2a1c00;
  font-family: var(--font-display); font-weight: 900; font-size: 11px; letter-spacing: 0.08em;
  padding: 5px 40px; box-shadow: 0 4px 10px rgba(0,0,0,0.5), var(--glow-gold);
}

/* Featured Change Your Life Wheel card — premium casino treatment */
.wc-card--clw {
  position: relative;
  background:
    radial-gradient(120% 90% at 50% -10%, rgba(255, 216, 74, 0.16), transparent 60%),
    linear-gradient(180deg, #2a1f04, #140d02);
  border-width: 2px;
  border-color: color-mix(in srgb, var(--tier-now) 75%, transparent);
  box-shadow: 0 0 48px -8px color-mix(in srgb, var(--tier-now) 85%, transparent), var(--shadow-card);
}
/* Classic diagonal corner ribbon — the band crosses the top-left corner; its
   ends are clipped by the card, the centred (short) text stays fully visible. */
.wc-clw-flag {
  position: absolute; top: 20px; left: -56px; z-index: 4;
  width: 200px; text-align: center;
  transform: rotate(-45deg);
  background: var(--grad-gold); color: #2a1c00;
  padding: 5px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.55);
  pointer-events: none;
}
.wc-clw-flag span {
  font-family: var(--font-display); font-weight: 900; font-size: 11px;
  letter-spacing: 0.14em; text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}
.wc-clw-desc {
  font-size: 12.5px; line-height: 1.5; color: var(--text-2);
  margin: 2px 0 4px;
}
.wc-clw-desc b { color: var(--gold-2); }

/* artwork (the document card image) */
.wc-art {
  position: relative;
  line-height: 0;
  aspect-ratio: 5 / 4;            /* stable area so there is never a white gap */
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 45%, rgba(40,28,90,0.45), rgba(7,4,16,0.92));
  padding: 12px;
}
.wc-art img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;           /* show the whole wheel, crop nothing, no white */
  display: block;
}
.wc-card.is-locked .wc-art img { filter: saturate(0.55) brightness(0.5); }
.wc-lock {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px;                          /* clear separation: icon never touches text */
  /* Strong dim so the wheel artwork can't bleed through and clash with the
     lock text (the previous translucent layer made them look overlapped). */
  background: radial-gradient(circle at 50% 45%, rgba(10,7,24,0.82), rgba(5,3,12,0.94));
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: var(--s-4);
}
.wc-lockico {
  font-size: 30px;
  line-height: 1;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.8));
}
.wc-locktxt {
  font-family: var(--font-display); font-weight: 800; font-size: 11px;
  letter-spacing: 0.06em; line-height: 1.3;
  color: #fff; text-align: center; max-width: 88%;
  background: color-mix(in srgb, var(--tier-now) 22%, rgba(0,0,0,0.78));
  border: 1px solid color-mix(in srgb, var(--tier-now) 55%, transparent);
  padding: 7px 14px; border-radius: var(--r-pill);
  box-shadow: 0 4px 14px rgba(0,0,0,0.5);
}

/* body: prize table */
.wc-body { padding: var(--s-3) var(--s-4) var(--s-4); display: flex; flex-direction: column; gap: var(--s-3); }
.wc-head { display: flex; align-items: center; justify-content: space-between; }
.wc-badge {
  font-family: var(--font-display); font-weight: 800; font-size: 11px; letter-spacing: 0.14em;
  color: #fff; padding: 4px 12px; border-radius: var(--r-pill);
  background: color-mix(in srgb, var(--tier-now) 30%, transparent);
  border: 1px solid color-mix(in srgb, var(--tier-now) 60%, transparent);
}
.wc-chip { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: var(--r-pill); }
.wc-chip--on { color: var(--success); background: rgba(43,214,107,0.12); border: 1px solid rgba(43,214,107,0.4); }
.wc-chip--off { color: var(--text-3); background: rgba(255,255,255,0.04); border: 1px solid var(--stroke); }

.wc-prizes { display: flex; flex-direction: column; gap: 7px; }
.wc-prow { display: grid; grid-template-columns: 12px 1fr 70px 38px; align-items: center; gap: 8px; }
.wc-dot { width: 11px; height: 11px; border-radius: 50%; box-shadow: 0 0 8px currentColor; }
.wc-pname { font-size: 12.5px; color: var(--text-1); font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.wc-bar { height: 7px; border-radius: 4px; background: rgba(255,255,255,0.08); overflow: hidden; }
.wc-bar i { display: block; height: 100%; border-radius: 4px; box-shadow: 0 0 8px currentColor; }
.wc-pprob { font-family: var(--font-display); font-weight: 700; font-size: 12px; color: var(--text-2); text-align: right; }

.wc-foot { display: flex; align-items: center; justify-content: space-between; gap: var(--s-3); margin-top: 2px; }
.wc-avg { font-family: var(--font-display); font-weight: 700; font-size: 11px; letter-spacing: 0.04em; color: var(--gold-2); }
.wc-spin { font-size: 12px; padding: 9px 16px; white-space: nowrap; }

.wc-wheel { width: 100%; max-width: 240px; aspect-ratio: 1; margin: 0 auto; }
