.mystery-page { padding: 2rem 0 4rem; }
.mystery-page .lede { max-width: 40rem; }
.mystery-balance { font-weight: 600; }
.mystery-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.mystery-pay { border: 0; padding: 0; display: flex; gap: 1rem; }
.mystery-form, .mystery-topup { max-width: 36rem; margin-top: 1.5rem; }
.mystery-stage { margin: 1.5rem 0 2rem; }
.mystery-preview-copy { margin: 0 0 0.7rem; max-width: 40rem; }
.mystery-window {
  position: relative;
  overflow: hidden;
  height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md, 10px);
  background: color-mix(in srgb, var(--text) 6%, var(--bg));
}
.mystery-reel {
  display: flex;
  gap: 8px;
  height: 100%;
  align-items: center;
  padding: 14px 0;
  will-change: transform;
}
.mystery-reel.is-preview {
  width: max-content;
  animation: mystery-marquee 28s linear infinite;
}
.mystery-reel.is-spinning .mystery-item {
  filter: saturate(0.85);
}
@keyframes mystery-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.mystery-item {
  flex: 0 0 168px;
  width: 168px;
  height: 192px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface, #fff);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mystery-item img {
  width: 100%;
  height: 124px;
  object-fit: cover;
  background: color-mix(in srgb, var(--accent) 12%, var(--bg));
}
.mystery-item .ph {
  height: 124px;
  display: grid;
  place-items: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  background: color-mix(in srgb, var(--accent) 16%, var(--bg));
}
.mystery-item span {
  padding: 0.4rem 0.5rem;
  font-size: 0.82rem;
  line-height: 1.2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.mystery-item.is-win {
  border-color: var(--accent);
  outline: 2px solid var(--accent);
  filter: none;
}
.mystery-marker {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--accent);
  z-index: 2;
  pointer-events: none;
  transform: translateX(-1px);
}
.mystery-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 1;
  pointer-events: none;
}
.mystery-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--bg), transparent);
}
.mystery-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--bg), transparent);
}
.mystery-win {
  margin-top: 1.1rem;
  display: grid;
  gap: 0.35rem;
  max-width: 22rem;
}
.mystery-win img {
  width: 100%;
  height: 12rem;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--accent) 12%, var(--bg));
}
.mystery-win-kicker {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.mystery-win-link {
  font-size: 1.35rem;
  font-family: var(--font-heading);
  text-decoration: none;
}
.mystery-page .error { color: #8b1e1e; }
@media (prefers-reduced-motion: reduce) {
  .mystery-reel { transition: none !important; animation: none !important; }
}
