:root {
  --orig-card-radius: 14px;
  --orig-preview-radius: 11px;
  --orig-line: rgba(166, 181, 201, 0.42);
  --orig-line-strong: rgba(212, 224, 238, 0.78);
  --orig-surface:
    radial-gradient(320px circle at 50% -44%, rgba(198, 210, 226, 0.11), transparent 64%),
    linear-gradient(180deg, #1d2631, #151d27 68%, #121822);
  --orig-shadow: 0 12px 24px rgba(5, 9, 13, 0.32);
  --orig-shadow-hover: 0 16px 30px rgba(4, 7, 11, 0.4);
  --orig-head: #edf3fb;
  --orig-copy: #b4c3d5;
  --orig-chip: #d8e6f6;
  --orig-win: #9dd8bc;
  --orig-risk: #dd9aad;
  --orig-gold: #e6bd82;
  --orig-ease: cubic-bezier(0.2, 0.76, 0.22, 1);
}

.premium-orig-grid {
  --orig-preview-ratio: 16 / 8.6;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.52rem, 0.9vw, 0.78rem);
  align-items: stretch;
}

.premium-orig-grid--lobby {
  --orig-preview-ratio: 16 / 7.2;
}

.premium-orig-card {
  position: relative;
  isolation: isolate;
  min-width: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--orig-line);
  border-radius: var(--orig-card-radius);
  background: var(--orig-surface);
  box-shadow: var(--orig-shadow);
  transform: translateZ(0);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 220ms ease;
}

.premium-orig-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(220px circle at var(--mx, 50%) var(--my, -8%), rgba(224, 235, 247, 0.18), transparent 62%);
  transition: opacity 220ms ease;
}

.premium-orig-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  pointer-events: none;
  height: 38%;
  background: linear-gradient(180deg, rgba(7, 10, 14, 0), rgba(7, 10, 14, 0.58));
}

.premium-orig-card > * {
  position: relative;
  z-index: 2;
}

@media (hover: hover) and (pointer: fine) {
  .premium-orig-card:hover {
    transform: translateY(-2px);
    border-color: var(--orig-line-strong);
    box-shadow: var(--orig-shadow-hover);
  }

  .premium-orig-card:hover::before {
    opacity: 1;
  }

  .premium-orig-card:hover .premium-orig-play {
    filter: brightness(1.04);
    transform: translateY(-1px);
  }
}

.premium-orig-card:focus-visible {
  outline: none;
  border-color: var(--orig-line-strong);
  box-shadow: 0 0 0 2px rgba(184, 202, 224, 0.28), var(--orig-shadow-hover);
}

.premium-orig-preview {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  aspect-ratio: var(--orig-preview-ratio);
  border-bottom: 1px solid rgba(172, 189, 208, 0.34);
}

.premium-orig-preview::before,
.premium-orig-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.premium-orig-preview::before {
  z-index: 7;
  background:
    linear-gradient(180deg, rgba(235, 243, 252, 0.12), rgba(235, 243, 252, 0) 32%),
    radial-gradient(200px circle at 20% -12%, rgba(208, 222, 237, 0.16), transparent 64%);
}

.premium-orig-preview::after {
  z-index: 8;
  background: radial-gradient(260px circle at 50% 118%, rgba(5, 9, 13, 0.66), rgba(5, 9, 13, 0));
}

.premium-orig-preview.is-crash {
  background:
    radial-gradient(260px circle at 84% -26%, rgba(180, 219, 247, 0.28), transparent 62%),
    linear-gradient(180deg, #3f7dc0, #376ead 66%, #2f619c);
}

.premium-orig-preview.is-dice {
  background:
    radial-gradient(240px circle at 16% -18%, rgba(134, 198, 245, 0.26), transparent 62%),
    linear-gradient(180deg, #1d4f87, #173f6c 66%, #122f52);
}

.premium-orig-preview.is-doors {
  background:
    radial-gradient(220px circle at 50% -34%, rgba(150, 194, 238, 0.24), transparent 62%),
    linear-gradient(180deg, #1d4a80, #173f6b 66%, #123359);
}

.premium-orig-preview.is-slots {
  background:
    radial-gradient(220px circle at 84% -24%, rgba(158, 210, 255, 0.2), transparent 62%),
    linear-gradient(180deg, #143762, #102f55 66%, #0c2545);
}

.premium-orig-preview.is-mines {
  background:
    radial-gradient(220px circle at 20% -20%, rgba(141, 180, 214, 0.2), transparent 62%),
    linear-gradient(180deg, #2c3b4f, #243345 66%, #1a2736);
}

.premium-orig-preview.is-cars {
  background:
    radial-gradient(220px circle at 20% -14%, rgba(214, 185, 140, 0.18), transparent 62%),
    linear-gradient(180deg, #304051, #273647 66%, #1c2938);
}

.premium-orig-top {
  position: absolute;
  left: 0.44rem;
  right: 0.44rem;
  top: 0.4rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.3rem;
  pointer-events: none;
}

.premium-orig-pill {
  border: 1px solid rgba(184, 202, 223, 0.62);
  border-radius: 999px;
  background: rgba(10, 16, 23, 0.66);
  color: var(--orig-chip);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  padding: 0.2rem 0.34rem;
}

.premium-orig-pill.is-metric {
  border-color: rgba(154, 212, 184, 0.76);
  color: #d6f4e4;
}

.premium-orig-preview.is-slots .premium-orig-pill.is-metric {
  border-color: rgba(224, 190, 134, 0.78);
  color: #f5e4c3;
}

.premium-orig-bottom,
.premium-orig-tags {
  display: none;
}

.premium-scene {
  position: absolute;
  inset: 0;
  z-index: 9;
  pointer-events: none;
}

/* Crash */
.premium-crash-grid {
  position: absolute;
  inset: 0.84rem 0.52rem 0.58rem;
  border-radius: 10px;
  border: 1px solid rgba(182, 210, 240, 0.52);
  background:
    radial-gradient(240px circle at 82% 4%, rgba(218, 240, 255, 0.22), transparent 58%),
    linear-gradient(180deg, #5b9cdb 0%, #4a88c8 42%, #3c72b2 74%, #3568a8 100%);
  box-shadow: inset 0 1px 0 rgba(229, 242, 255, 0.2);
  overflow: hidden;
}

.premium-crash-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(238, 247, 255, 0.82) 0 1.4px, transparent 1.5px) 14px 12px / 42px 34px,
    radial-gradient(circle, rgba(219, 236, 255, 0.76) 0 1.2px, transparent 1.3px) 2px 4px / 34px 28px;
  opacity: 0.66;
}

.premium-crash-grid::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 36%;
  background:
    linear-gradient(180deg, rgba(78, 122, 182, 0) 0, rgba(69, 112, 173, 0.96) 36%),
    repeating-linear-gradient(
      90deg,
      rgba(60, 102, 158, 0.98) 0 18px,
      rgba(71, 116, 174, 0.98) 18px 29px,
      rgba(59, 96, 146, 0.98) 29px 43px
    );
}

.premium-crash-curve {
  position: absolute;
  left: 5%;
  right: 5%;
  bottom: 4%;
  height: 16%;
  border: 1px solid rgba(151, 193, 239, 0.56);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(8, 22, 46, 0.88), rgba(7, 18, 39, 0.94));
  clip-path: none;
  animation: origCrashWave 3.8s ease-in-out infinite;
}

.premium-crash-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  left: 52%;
  top: 57%;
  border-radius: 50%;
  background: #ffd68e;
  box-shadow: 0 0 0 3px rgba(255, 214, 142, 0.24);
  animation: origCrashDot 3.8s ease-in-out infinite;
}

.premium-crash-plane {
  position: absolute;
  left: 41%;
  bottom: 19%;
  width: 30px;
  height: 12px;
  border-radius: 10px 11px 10px 5px;
  background: linear-gradient(180deg, #eaf6ff, #b7d9f3 58%, #78a8d1);
  box-shadow: 0 2px 7px rgba(17, 40, 78, 0.28);
  animation: origCrashPlane 3.8s cubic-bezier(0.22, 0.78, 0.24, 1) infinite;
}

.premium-crash-plane::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: -5px;
  height: 3px;
  border-radius: 999px;
  background: rgba(226, 242, 255, 0.96);
}

.premium-crash-plane::after {
  content: "";
  position: absolute;
  left: -6px;
  top: 3px;
  width: 6px;
  height: 3px;
  border-radius: 2px;
  background: #95bddf;
}

/* Dice */
.premium-scene-dice {
  display: grid;
  place-items: center;
}

.premium-dice-wheel {
  position: absolute;
  left: 50%;
  top: 52%;
  width: clamp(96px, 58%, 126px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(173, 216, 248, 0.8);
  background:
    radial-gradient(68% 68% at 50% 50%, rgba(17, 39, 73, 0.94) 0, rgba(10, 24, 47, 0.95) 58%, rgba(7, 17, 34, 0.98) 100%);
  box-shadow: inset 0 0 22px rgba(67, 196, 255, 0.2), 0 0 24px rgba(67, 196, 255, 0.22);
  animation: origDiceDrift 3.6s ease-in-out infinite;
}

.premium-dice-arc {
  position: absolute;
  inset: 5.8%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(14, 31, 58, 0.98) 49%, transparent 50%),
    conic-gradient(from -90deg, rgba(53, 218, 176, 0.97) 0 50%, rgba(216, 127, 162, 0.94) 50% 100%);
}

.premium-dice-pointer {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 4px;
  height: 38%;
  transform-origin: 50% 100%;
  transform: translate(-50%, -100%) rotate(14deg);
  background: linear-gradient(180deg, #f5d08f, rgba(231, 182, 110, 0.14));
  border-radius: 999px;
  animation: origDicePointer 3.1s cubic-bezier(0.2, 0.8, 0.22, 1) infinite;
}

.premium-dice-core {
  position: absolute;
  inset: 30%;
  border-radius: 50%;
  border: 1px solid rgba(164, 206, 241, 0.58);
  background: rgba(8, 20, 40, 0.97);
  display: grid;
  place-items: center;
  gap: 0.04rem;
}

.premium-dice-core strong {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.66rem;
  line-height: 1;
  color: #deebf8;
}

.premium-dice-core em {
  font-style: normal;
  font-size: 0.42rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #afc5dc;
}

.premium-dice-zones {
  position: absolute;
  left: 50%;
  bottom: 13%;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 0.2rem;
}

.premium-dice-zones span {
  border: 1px solid rgba(179, 198, 219, 0.56);
  border-radius: 999px;
  background: rgba(10, 16, 23, 0.66);
  color: #d6e6f7;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
  padding: 0.17rem 0.3rem;
}

.premium-dice-zones span.is-win {
  border-color: rgba(153, 212, 186, 0.7);
  color: #d6f2e4;
}

/* Doors */
.premium-doors-grid {
  position: absolute;
  inset: 0.92rem 0.6rem 0.56rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.22rem;
  border-radius: 10px;
  border: 1px solid rgba(164, 202, 240, 0.46);
  background: linear-gradient(180deg, rgba(12, 27, 52, 0.8), rgba(8, 20, 40, 0.9));
  padding: 0.2rem;
}

.premium-door {
  position: relative;
  overflow: hidden;
  border-radius: 9px;
  border: 1px solid rgba(174, 205, 239, 0.56);
  background: linear-gradient(180deg, rgba(59, 98, 154, 0.96), rgba(44, 78, 129, 0.98));
  box-shadow: inset 0 1px 0 rgba(214, 230, 248, 0.14);
}

.premium-door::before {
  content: "";
  position: absolute;
  inset: 9% 11%;
  border-radius: 6px;
  border: 1px solid rgba(185, 212, 242, 0.34);
  background: linear-gradient(180deg, rgba(125, 168, 225, 0.16), rgba(61, 95, 144, 0));
  opacity: 0.52;
}

.premium-door-leaf {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(180deg, #5f90d0, #426aa7 58%, #2f4f82);
  transition: transform 500ms var(--orig-ease);
}

.premium-door-leaf.is-left {
  left: 0;
  transform-origin: left center;
  border-right: 1px solid rgba(188, 207, 229, 0.48);
}

.premium-door-leaf.is-right {
  right: 0;
  transform-origin: right center;
  border-left: 1px solid rgba(188, 207, 229, 0.48);
}

.premium-door-core {
  position: absolute;
  left: 50%;
  bottom: 12%;
  transform: translateX(-50%);
  border: 1px solid rgba(214, 183, 124, 0.72);
  border-radius: 999px;
  background: rgba(69, 88, 120, 0.86);
  color: #ffd58d;
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  padding: 0.16rem 0.28rem;
}

.premium-door.is-trap .premium-door-core {
  border-color: rgba(214, 183, 124, 0.72);
  color: #ffd58d;
}

.premium-door.is-safe {
  border-color: rgba(174, 205, 239, 0.56);
}

.premium-door.is-safe .premium-door-core {
  border-color: rgba(214, 183, 124, 0.72);
  color: #ffd58d;
}

.premium-door.is-open::before {
  opacity: 0.52;
}

.premium-door.is-open .premium-door-leaf.is-left {
  transform: translateX(-7%);
  animation: origDoorLeft 4.2s ease-in-out infinite;
}

.premium-door.is-open .premium-door-leaf.is-right {
  transform: translateX(7%);
  animation: origDoorRight 4.2s ease-in-out infinite;
}

/* Slots */
.premium-slots-shell {
  position: absolute;
  inset: 0.86rem 0.46rem 0.56rem;
  border-radius: 10px;
  border: 1px solid rgba(170, 203, 239, 0.52);
  background: linear-gradient(180deg, rgba(10, 22, 44, 0.92), rgba(7, 16, 33, 0.95));
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.12rem;
  padding: 0.5rem 0.14rem 0.14rem;
  overflow: hidden;
}

.premium-slots-shell::before {
  content: "REACTOR JACKPOT";
  position: absolute;
  left: 0.24rem;
  top: 0.16rem;
  color: #b8cde8;
  font-size: 0.42rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  z-index: 2;
}

.premium-slots-shell::after {
  content: "$12.5k";
  position: absolute;
  right: 0.26rem;
  top: 0.14rem;
  color: #ffd58f;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.5rem;
  font-weight: 700;
  z-index: 2;
}

.premium-slots-payline {
  position: absolute;
  left: 6%;
  right: 6%;
  top: 57%;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, rgba(149, 226, 255, 0), rgba(149, 226, 255, 0.92), rgba(149, 226, 255, 0));
  animation: origPayline 2.4s ease-in-out infinite;
}

.premium-slot-reel {
  z-index: 1;
  min-height: 0;
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 0.12rem;
  animation: origReel 2.6s ease-in-out infinite;
}

.premium-slot-reel:nth-child(2) {
  animation-delay: 80ms;
}

.premium-slot-reel:nth-child(3) {
  animation-delay: 160ms;
}

.premium-slot-reel:nth-child(4) {
  animation-delay: 240ms;
}

.premium-slot-reel:nth-child(5) {
  animation-delay: 320ms;
}

.premium-slot-symbol {
  min-height: 0;
  border-radius: 6px;
  border: 1px solid rgba(157, 194, 236, 0.48);
  background: linear-gradient(180deg, rgba(7, 21, 44, 0.94), rgba(5, 14, 30, 0.96));
  display: grid;
  place-items: center;
}

.premium-slot-symbol .glyph {
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(109, 186, 255, 0.22));
}

.premium-slot-symbol.sym-seven .glyph,
.premium-slot-symbol.sym-bar .glyph {
  width: auto;
  height: auto;
}

.premium-slot-symbol.sym-seven .glyph {
  filter: drop-shadow(0 0 6px rgba(252, 225, 168, 0.34));
}

.premium-slot-symbol.sym-bar .glyph {
  filter: drop-shadow(0 0 6px rgba(255, 184, 126, 0.26));
}

.premium-slot-symbol.sym-diamond .glyph,
.premium-slot-symbol.sym-crown .glyph,
.premium-slot-symbol.sym-atom .glyph,
.premium-slot-symbol.sym-bolt .glyph,
.premium-slot-symbol.sym-cherry .glyph,
.premium-slot-symbol.sym-lemon .glyph {
  filter: drop-shadow(0 0 6px rgba(126, 205, 255, 0.24));
}

.premium-slot-symbol .glyph::before,
.premium-slot-symbol .glyph::after {
  content: none !important;
}

/* Mines */
.premium-mines-grid {
  position: absolute;
  inset: 1.04rem 0.54rem 0.6rem;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.1rem;
}

.premium-mine-cell {
  position: relative;
  border-radius: 3px;
  border: 1px solid rgba(174, 193, 214, 0.42);
  background: linear-gradient(180deg, rgba(17, 28, 40, 0.94), rgba(12, 21, 31, 0.95));
}

.premium-mine-cell.is-safe {
  border-color: rgba(151, 212, 186, 0.62);
  background: linear-gradient(180deg, rgba(53, 95, 82, 0.86), rgba(35, 67, 57, 0.9));
  animation: origSafeBlink 2.8s ease-in-out infinite;
}

.premium-mine-cell.is-safe::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  transform: translate(-50%, -50%) rotate(45deg);
  border: 1.4px solid #d2f3e3;
}

.premium-mine-cell.is-mine {
  border-color: rgba(220, 155, 175, 0.66);
  background: linear-gradient(180deg, rgba(94, 56, 69, 0.9), rgba(66, 37, 47, 0.92));
  animation: origMineBlink 2.3s ease-in-out infinite;
}

.premium-mine-cell.is-mine::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #ecd2db;
  clip-path: polygon(50% 0, 66% 34%, 100% 50%, 66% 66%, 50% 100%, 34% 66%, 0 50%, 34% 34%);
}

/* Cars */
.premium-cars-track {
  position: absolute;
  inset: 1.02rem 0.62rem 0.58rem;
  border-radius: 8px;
  border: 1px solid rgba(174, 193, 214, 0.46);
  background: linear-gradient(180deg, rgba(20, 30, 41, 0.94), rgba(14, 22, 31, 0.96));
  overflow: hidden;
}

.premium-cars-lane {
  position: absolute;
  top: -8%;
  bottom: -8%;
  width: 2px;
  background: repeating-linear-gradient(180deg, rgba(211, 223, 235, 0.82) 0 7px, rgba(211, 223, 235, 0) 7px 14px);
  background-size: 2px 24px;
  animation: origLane 1.55s linear infinite;
}

.premium-cars-lane.lane-a {
  left: 38%;
}

.premium-cars-lane.lane-b {
  right: 38%;
}

.premium-cars-car {
  position: absolute;
  width: 10px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(188, 207, 227, 0.68);
  will-change: transform, opacity;
}

.premium-cars-car.is-traffic.car-a {
  left: 26%;
  top: 18%;
  background: linear-gradient(180deg, #a2c6e3, #577a9d);
  animation: origTrafficA 5.1s linear infinite;
  animation-delay: -1.7s;
}

.premium-cars-car.is-traffic.car-b {
  right: 26%;
  top: 42%;
  border-color: rgba(220, 180, 193, 0.7);
  background: linear-gradient(180deg, #d8a6b6, #9a6172);
  animation: origTrafficB 6.2s linear infinite;
  animation-delay: -3.3s;
}

.premium-cars-car.is-player {
  left: 50%;
  bottom: 12%;
  transform: translateX(-50%);
  border-color: rgba(158, 212, 188, 0.72);
  background: linear-gradient(180deg, #b6e2cc, #5d927d);
  animation: origPlayer 4.2s cubic-bezier(0.28, 0.74, 0.26, 1) infinite;
}

/* Body */
.premium-orig-body {
  display: grid;
  gap: 0.24rem;
  align-content: start;
  padding: 0.5rem 0.54rem 0.58rem;
}

.premium-orig-kicker {
  width: max-content;
  border: 1px solid rgba(171, 189, 210, 0.52);
  border-radius: 999px;
  background: rgba(14, 22, 31, 0.62);
  color: #c9d9eb;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  padding: 0.14rem 0.34rem;
}

.premium-orig-body h3 {
  margin: 0;
  color: var(--orig-head);
  font-size: 0.9rem;
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.premium-orig-stat {
  margin: 0;
  color: #d2e1f1;
  font-size: 0.68rem;
  font-weight: 700;
}

.premium-orig-copy {
  margin: 0;
  color: var(--orig-copy);
  font-size: 0.67rem;
  line-height: 1.38;
  min-height: 1.95em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.premium-orig-grid--lobby .premium-orig-copy {
  display: none;
}

.premium-orig-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.28rem;
  min-width: 0;
}

.premium-orig-rtp,
.premium-orig-play {
  border-radius: 999px;
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  white-space: nowrap;
  padding: 0.22rem 0.36rem;
}

.premium-orig-rtp {
  border: 1px solid rgba(170, 188, 209, 0.54);
  background: rgba(12, 20, 28, 0.64);
  color: #d2e2f3;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.premium-orig-play {
  margin-left: auto;
  flex-shrink: 0;
  border: 1px solid rgba(225, 191, 136, 0.7);
  background: linear-gradient(135deg, rgba(230, 198, 149, 0.95), rgba(194, 157, 101, 0.95));
  color: #1b2027;
  box-shadow: 0 6px 12px rgba(8, 12, 18, 0.3);
  transition: transform 170ms ease, filter 170ms ease;
}

/* Reveal */
.premium-orig-card.is-prep {
  opacity: 0;
  transform: translateY(14px);
}

.premium-orig-card.is-prep .premium-orig-preview,
.premium-orig-card.is-prep .premium-orig-body {
  opacity: 0;
  transform: translateY(6px);
}

.premium-orig-card.is-prep.is-visible {
  animation: origCardIn 460ms var(--orig-ease) forwards;
  animation-delay: calc(var(--premium-index, 0) * 42ms);
}

.premium-orig-card.is-prep.is-visible .premium-orig-preview {
  animation: origLayerIn 420ms var(--orig-ease) forwards;
  animation-delay: calc(var(--premium-index, 0) * 42ms + 40ms);
}

.premium-orig-card.is-prep.is-visible .premium-orig-body {
  animation: origLayerIn 400ms var(--orig-ease) forwards;
  animation-delay: calc(var(--premium-index, 0) * 42ms + 70ms);
}

/* Keyframes */
@keyframes origCardIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes origLayerIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes origCrashWave {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1px);
  }
}

@keyframes origCrashDot {
  0%,
  100% {
    transform: scale(0.9);
  }
  50% {
    transform: scale(1.14);
  }
}

@keyframes origCrashPlane {
  0% {
    transform: translate(0, 0);
  }
  34% {
    transform: translate(8px, -4px);
  }
  68% {
    transform: translate(18px, -10px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes origDiceDrift {
  0%,
  100% {
    transform: translate(-50%, -50%);
  }
  50% {
    transform: translate(-50%, -52%);
  }
}

@keyframes origDoorLeft {
  0%,
  20%,
  100% {
    transform: translateX(-7%);
  }
  58% {
    transform: translateX(-11%);
  }
}

@keyframes origDoorRight {
  0%,
  20%,
  100% {
    transform: translateX(7%);
  }
  58% {
    transform: translateX(11%);
  }
}

@keyframes origDicePointer {
  0%,
  100% {
    transform: translate(-50%, -100%) rotate(-12deg);
  }
  50% {
    transform: translate(-50%, -100%) rotate(23deg);
  }
}

@keyframes origPayline {
  0%,
  100% {
    opacity: 0.42;
  }
  50% {
    opacity: 0.9;
  }
}

@keyframes origReel {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1px);
  }
}

@keyframes origSafeBlink {
  0%,
  100% {
    filter: brightness(0.92);
  }
  50% {
    filter: brightness(1.06);
  }
}

@keyframes origMineBlink {
  0%,
  100% {
    filter: brightness(0.94);
  }
  50% {
    filter: brightness(1.06);
  }
}

@keyframes origLane {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 24px;
  }
}

@keyframes origTrafficA {
  0% {
    transform: translateY(-40px);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  84% {
    opacity: 1;
  }
  100% {
    transform: translateY(124px);
    opacity: 0;
  }
}

@keyframes origTrafficB {
  0% {
    transform: translateY(-54px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  70% {
    transform: translateY(58px);
    opacity: 1;
  }
  100% {
    transform: translateY(136px);
    opacity: 0;
  }
}

@keyframes origPlayer {
  0%,
  100% {
    transform: translateX(-50%);
  }
  24% {
    transform: translateX(-60%);
  }
  54% {
    transform: translateX(-45%);
  }
  78% {
    transform: translateX(-56%);
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .premium-orig-grid,
  .premium-orig-grid--lobby,
  .premium-orig-grid--catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .premium-orig-body {
    padding: 0.46rem 0.5rem 0.54rem;
  }

  .premium-orig-body h3 {
    font-size: 0.86rem;
  }
}

@media (max-width: 768px) {
  .premium-orig-grid {
    gap: 0.5rem;
  }

  .premium-orig-pill {
    font-size: 0.49rem;
  }

  .premium-orig-copy {
    font-size: 0.65rem;
  }

  .premium-orig-rtp,
  .premium-orig-play {
    font-size: 0.51rem;
  }
}

@media (max-width: 430px) {
  .premium-orig-grid,
  .premium-orig-grid--lobby,
  .premium-orig-grid--catalog {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .premium-orig-body h3 {
    font-size: 0.82rem;
  }

  .premium-orig-kicker {
    font-size: 0.53rem;
  }
}

@media (max-width: 360px) {
  .premium-orig-top {
    left: 0.34rem;
    right: 0.34rem;
    top: 0.34rem;
  }

  .premium-orig-pill {
    font-size: 0.46rem;
    padding: 0.18rem 0.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .premium-orig-card,
  .premium-orig-card::before,
  .premium-orig-card::after,
  .premium-orig-play,
  .premium-orig-preview,
  .premium-scene,
  .premium-scene * {
    animation: none !important;
    transition: none !important;
  }

  .premium-orig-card.is-prep,
  .premium-orig-card.is-prep .premium-orig-preview,
  .premium-orig-card.is-prep .premium-orig-body,
  .premium-orig-card.is-prep.is-visible,
  .premium-orig-card.is-prep.is-visible .premium-orig-preview,
  .premium-orig-card.is-prep.is-visible .premium-orig-body {
    opacity: 1 !important;
    transform: none !important;
  }
}
