.hc-game-widget {
  --game-accent: #ffc400;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    #0a0d11;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
  overflow: hidden;
}

.hc-game-widget__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.hc-game-widget__bar h3 {
  margin: 0;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
}

.hc-game-widget__bar p {
  margin: 4px 0 0;
  color: #b8c0ca;
}

.hc-game-widget.is-playing {
  box-shadow: 0 0 0 1px var(--game-accent), 0 24px 80px rgba(0, 0, 0, 0.48);
}

.hc-game-brief {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, auto) auto auto;
  gap: 12px;
  align-items: center;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.035);
}

.hc-game-brief div {
  min-width: 0;
}

.hc-game-brief span {
  display: block;
  color: #b8c0ca;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hc-game-brief strong {
  display: block;
  overflow: hidden;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 20px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.hc-game-progress {
  height: 5px;
  background: rgba(255, 255, 255, 0.08);
}

.hc-game-progress span {
  display: block;
  height: 100%;
  background: var(--game-accent);
}

.hc-board-tools {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 22px 0;
}

.hc-board-tools button {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.hc-board-tools button.is-active,
.hc-board-tools button:hover {
  border-color: var(--game-accent);
  color: var(--game-accent);
}

.hc-board-legend {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  color: #b8c0ca;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hc-board-legend i {
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid var(--game-accent);
  border-radius: 3px;
  background: #111820;
}

.hc-board-legend--sold i {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.hc-number-finder {
  display: inline-grid;
  grid-template-columns: auto 72px;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding-left: 8px;
  color: #b8c0ca;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hc-number-finder input {
  width: 72px;
  min-height: 34px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
  font: inherit;
}

.hc-game-grid {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  gap: 8px;
  padding: 22px;
}

.hc-game-number {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: #111820;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(16px, 2vw, 23px);
  font-weight: 800;
  cursor: pointer;
  transition: transform 140ms ease, border-color 140ms ease, background 140ms ease;
}

.hc-game-number:hover:not(:disabled) {
  transform: translateY(-2px);
  border-color: var(--game-accent);
}

.hc-game-number.is-picked,
.hc-game-number:disabled {
  background: rgba(255, 255, 255, 0.05);
  color: #788391;
  cursor: not-allowed;
}

.hc-game-number.is-in-cart {
  border-color: var(--game-accent);
  background: rgba(255, 196, 0, 0.18);
  color: #fff;
}

.hc-game-number.is-in-cart::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 4px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--game-accent);
  box-shadow: 0 0 12px var(--game-accent);
}

.hc-game-number.is-hit {
  border-color: #ef2626;
  background: rgba(239, 38, 38, 0.20);
  color: #fff;
}

.hc-game-number.is-filtered-out {
  display: none;
}

.hc-game-number.is-lucky-range:not(:disabled) {
  border-color: var(--game-accent);
  box-shadow: 0 0 0 1px var(--game-accent), 0 0 20px rgba(255, 196, 0, 0.18);
}

.hc-game-number.is-found-number {
  border-color: #12a7df;
  box-shadow: 0 0 0 2px #12a7df, 0 0 24px rgba(18, 167, 223, 0.24);
}

.hc-pack-stage {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 24px;
  padding: 24px;
}

.hc-pack-rip {
  display: grid;
  gap: 12px;
}

.hc-pack-button {
  display: grid;
  min-height: 280px;
  place-items: center;
  border: 1px solid rgba(123, 53, 214, 0.8);
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(123, 53, 214, 0.36), rgba(18, 167, 223, 0.12)),
    #101317;
  color: #fff;
  font-family: Anton, Impact, sans-serif;
  font-size: 48px;
  text-transform: uppercase;
  cursor: pointer;
}

.hc-pack-quantity {
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  gap: 8px;
}

.hc-pack-quantity button,
.hc-pack-quantity output {
  display: grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.hc-pack-quantity button {
  cursor: pointer;
}

.hc-pack-rip p {
  margin: 0;
  color: #b8c0ca;
}

.hc-pack-results {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}

.hc-game-rules {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 0 22px 22px;
}

.hc-game-rules span {
  display: grid;
  min-height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.045);
  color: #d9dee5;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.hc-game-rules span::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin-bottom: 2px;
  border-radius: 50%;
  background: var(--game-accent);
}

.hc-prize-card {
  min-height: 150px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.hc-prize-card strong {
  display: block;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  text-transform: uppercase;
}

.hc-prize-card span {
  display: inline-flex;
  margin-top: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--game-accent);
  color: #070707;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hc-buyback-notice,
.hc-buyback-note {
  margin: 0 0 14px;
  color: #d9dee5;
}

.hc-buyback-notice {
  padding: 14px 16px;
  border: 1px solid rgba(255, 196, 0, 0.5);
  border-radius: 8px;
  background: rgba(255, 196, 0, 0.10);
}

.hc-buyback-offer {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.hc-buyback-offer p {
  margin: 0;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.hc-buyback-offer form {
  margin: 0;
}

.hc-buyback-offer button {
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.hc-buyback-offer button:hover {
  border-color: var(--game-accent);
}

.hc-buyback-offer strong {
  color: var(--game-accent);
}

.hc-game-result {
  margin: 0 22px 22px;
  padding: 18px;
  border: 1px solid var(--game-accent);
  border-radius: 8px;
  background: rgba(255, 196, 0, 0.08);
  overflow: hidden;
  animation: hcResultIn 260ms ease-out;
}

.hc-game-result h4 {
  margin: 0 0 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  text-transform: uppercase;
}

.hc-game-result p {
  margin: 0;
  color: #d9dee5;
}

.hc-reveal-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(130px, 180px) 1fr;
  gap: 14px;
  align-items: center;
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 196, 0, 0.18), transparent 34%),
    radial-gradient(circle at 88% 78%, rgba(18, 167, 223, 0.16), transparent 32%),
    rgba(0, 0, 0, 0.22);
}

.hc-reveal-card {
  position: relative;
  display: grid;
  min-height: 120px;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(8, 10, 13, 0.96), rgba(28, 31, 38, 0.94));
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.34);
  text-align: center;
  transform-origin: center;
  animation: hcRevealCard 900ms cubic-bezier(0.2, 0.78, 0.2, 1);
}

.hc-reveal-card span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  background: var(--game-accent);
  color: #070707;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 900;
}

.hc-reveal-card strong {
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  line-height: 1;
  text-transform: uppercase;
}

.hc-reveal-card small {
  max-width: 150px;
  color: #b8c0ca;
  font-size: 11px;
  line-height: 1.35;
}

.hc-reveal-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.hc-reveal-steps span {
  position: relative;
  display: grid;
  min-height: 62px;
  place-items: center;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  color: #d9dee5;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.hc-reveal-steps .is-complete {
  border-color: rgba(126, 226, 160, 0.42);
  background: rgba(46, 160, 67, 0.2);
  color: #7ee2a0;
}

.hc-reveal-spark {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(255, 196, 0, 0.52), transparent 62%);
  filter: blur(1px);
  opacity: 0;
  animation: hcSpark 1150ms ease-out;
}

.hc-reveal-spark--one {
  top: -22px;
  right: 18%;
}

.hc-reveal-spark--two {
  right: -22px;
  bottom: -18px;
  background: radial-gradient(circle, rgba(18, 167, 223, 0.48), transparent 62%);
  animation-delay: 140ms;
}

.hc-cart-mini {
  display: inline-flex;
  margin-top: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hc-game-result__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.hc-game-action {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.hc-game-action--primary {
  border-color: var(--game-accent);
  background: var(--game-accent);
  color: #070707;
}

.hc-game-action--ghost {
  appearance: none;
}

@keyframes hcResultIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hcRevealCard {
  0% {
    opacity: 0;
    transform: translateY(12px) rotate(-4deg) scale(0.92);
  }

  58% {
    opacity: 1;
    transform: translateY(-3px) rotate(2deg) scale(1.03);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
  }
}

@keyframes hcSpark {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

.hc-featured-hits,
.hc-live-status,
.hc-winner-wall,
.hc-pool-disclosure,
.hc-reveals {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hc-featured-hits article,
.hc-live-status article,
.hc-winner-wall article,
.hc-pool-disclosure article,
.hc-customer-summary,
.hc-prize-card,
.hc-drop-countdown {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.hc-featured-hits strong,
.hc-live-status h3,
.hc-winner-wall strong,
.hc-pool-disclosure h3,
.hc-customer-summary strong,
.hc-drop-countdown strong {
  display: block;
  margin: 0;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.hc-featured-hits span,
.hc-live-status strong,
.hc-pool-disclosure strong,
.hc-customer-summary span,
.hc-drop-countdown span {
  color: #ffc400;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 22px;
  font-weight: 800;
}

.hc-featured-hits p,
.hc-live-status p,
.hc-live-status span,
.hc-winner-wall p,
.hc-winner-wall span,
.hc-pool-disclosure p,
.hc-pool-disclosure span,
.hc-prize-card small {
  color: #b8c0ca;
}

.hc-drop-countdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.hc-customer-summary {
  margin-bottom: 18px;
}

.hc-user-dashboard {
  display: grid;
  gap: 22px;
}

.hc-dashboard-hero,
.hc-dashboard-stats,
.hc-shipment-list,
.hc-credit-ledger,
.hc-buyback-list,
.hc-reveal-verifier {
  display: grid;
  gap: 14px;
}

.hc-dashboard-hero {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 196, 0, 0.14), rgba(18, 167, 223, 0.08)),
    rgba(255, 255, 255, 0.04);
}

.hc-dashboard-hero p,
.hc-dashboard-heading p {
  margin: 0;
  color: #b8c0ca;
}

.hc-dashboard-hero h2,
.hc-dashboard-heading h3 {
  margin: 0;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  text-transform: uppercase;
}

.hc-dashboard-hero h2 {
  font-size: 34px;
}

.hc-dashboard-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hc-dashboard-stats article,
.hc-dashboard-panel,
.hc-shipment-list article,
.hc-credit-ledger article,
.hc-buyback-list article,
.hc-reveal-verifier,
.hc-reveal-verifier article,
.hc-empty-state {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.hc-dashboard-stats strong,
.hc-shipment-list strong,
.hc-credit-ledger strong,
.hc-buyback-list strong,
.hc-reveal-verifier strong {
  display: block;
  color: #ffc400;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 24px;
  text-transform: uppercase;
}

.hc-dashboard-stats span,
.hc-shipment-list span,
.hc-credit-ledger span,
.hc-buyback-list span,
.hc-reveal-verifier span,
.hc-empty-state {
  color: #b8c0ca;
}

.hc-dashboard-heading {
  display: grid;
  gap: 4px;
  margin-bottom: 16px;
}

.hc-dashboard-heading h3 {
  font-size: 28px;
}

.hc-shipment-list,
.hc-credit-ledger,
.hc-buyback-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hc-reveal-verifier form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: end;
}

.hc-reveal-verifier label {
  grid-column: 1 / -1;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  text-transform: uppercase;
}

.hc-reveal-verifier input {
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.28);
  color: #fff;
}

@media (max-width: 720px) {
  .hc-game-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px;
    padding: 14px;
  }

  .hc-pack-stage {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .hc-game-brief {
    grid-template-columns: 1fr;
  }

  .hc-game-result__actions {
    display: grid;
  }

  .hc-reveal-stage,
  .hc-reveal-steps {
    grid-template-columns: 1fr;
  }

  .hc-game-rules {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 14px 14px;
  }

  .hc-featured-hits,
  .hc-live-status,
  .hc-winner-wall,
  .hc-pool-disclosure,
  .hc-reveals {
    grid-template-columns: 1fr;
  }

  .hc-drop-countdown {
    display: grid;
  }

  .hc-dashboard-hero,
  .hc-dashboard-stats,
  .hc-shipment-list,
  .hc-credit-ledger,
  .hc-buyback-list,
  .hc-reveal-verifier form {
    grid-template-columns: 1fr;
  }
}

/* Dashboard revamp (core 1.8.0) */
.hc-dashboard-hero__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hc-prize-card__media {
  display: block;
  margin-bottom: 10px;
}

.hc-prize-card__media img {
  width: 96px;
  height: auto;
  border-radius: 8px;
  display: block;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.45);
}

.hc-prize-card__set {
  color: #ffc400;
  font-size: 0.85rem;
  margin: 2px 0;
}

.hc-prize-card--revealed {
  position: relative;
  overflow: hidden;
  animation: hcResultIn 320ms ease-out;
}

.hc-prize-card--revealed::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 42%, transparent 64%);
  transform: translateX(-120%);
  animation: hcPrizeSheen 1.15s ease-out;
}

.hc-prize-card--grand {
  border-color: rgba(255, 196, 0, 0.55);
  box-shadow: 0 0 0 1px rgba(255, 196, 0, 0.12), 0 18px 42px rgba(255, 196, 0, 0.1);
}

.hc-grand-prize-badge {
  display: inline-flex;
  margin-bottom: 8px;
  padding: 3px 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffc400, #ef2626);
  color: #050607;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.hc-prize-card--pending {
  border-style: dashed;
  opacity: 0.92;
}

.hc-audit-line {
  display: block;
  overflow-wrap: anywhere;
  margin-top: 8px;
}

.hc-audit-line code {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 1px 6px;
  font-size: 0.78rem;
}

.hc-audit-line a {
  color: #ffc400;
  text-decoration: underline;
  margin-left: 6px;
}

.hc-status-badge {
  display: inline-block;
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.1);
  color: #d9dee5;
}

.hc-status-badge--shipped,
.hc-status-badge--delivered,
.hc-status-badge--paid,
.hc-status-badge--approved {
  background: rgba(46, 160, 67, 0.25);
  color: #7ee2a0;
}

.hc-status-badge--pending,
.hc-status-badge--review,
.hc-status-badge--packed {
  background: rgba(255, 196, 0, 0.16);
  color: #ffd75e;
}

.hc-status-badge--declined,
.hc-status-badge--cancelled {
  background: rgba(239, 38, 38, 0.18);
  color: #ff9d9d;
}

.hc-tier-badge {
  display: inline-block;
  border-radius: 999px;
  padding: 2px 10px;
  font-size: 0.78rem;
  background: rgba(255, 255, 255, 0.1);
}

.hc-tier-badge--premium {
  background: rgba(123, 53, 214, 0.3);
  color: #cfa9ff;
}

.hc-tier-badge--grail {
  background: rgba(255, 196, 0, 0.2);
  color: #ffd75e;
}

.hc-credit-pos {
  color: #7ee2a0 !important;
}

.hc-credit-neg {
  color: #ff9d9d !important;
}

.hc-dashboard-balance {
  color: #ffc400;
  font-size: 1.15rem;
}

.hc-buyback-offer button small {
  display: block;
  font-size: 0.72rem;
  opacity: 0.8;
  margin-top: 2px;
}

@keyframes hcPrizeSheen {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(120%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hc-game-result,
  .hc-reveal-card,
  .hc-reveal-spark,
  .hc-prize-card--revealed,
  .hc-prize-card--revealed::before {
    animation: none;
  }
}
