.play-shell {
  border-radius: 1.4rem;
  border: 1px solid rgba(46, 196, 182, 0.35);
  background:
    radial-gradient(circle at 20% 15%, rgba(46, 196, 182, 0.18), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(232, 184, 109, 0.14), transparent 35%),
    linear-gradient(165deg, rgba(8, 54, 62, 0.95), rgba(3, 18, 22, 0.98));
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), 0 0 50px rgba(46, 196, 182, 0.12);
  overflow: hidden;
  position: relative;
}

.play-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.04) 50%, transparent 70%);
  pointer-events: none;
}

.play-hud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(46, 196, 182, 0.18);
  position: relative;
  z-index: 1;
}

.play-stat {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(46, 196, 182, 0.1);
  border: 1px solid rgba(46, 196, 182, 0.22);
  color: var(--hb-mint);
  font-weight: 700;
  font-size: 0.88rem;
}

.play-stat i {
  color: var(--hb-gold);
}

.play-body {
  padding: 1.4rem 1.2rem 1.5rem;
  position: relative;
  z-index: 1;
}

.play-message {
  min-height: 1.5rem;
  text-align: center;
  color: var(--hb-sand);
  font-weight: 600;
  margin-bottom: 1rem;
}

.play-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 1.2rem;
}

.nova-machine {
  max-width: 560px;
  margin: 0 auto;
  padding: 1.2rem;
  border-radius: 1.2rem;
  background: linear-gradient(180deg, #0b3d47, #05191f);
  border: 2px solid rgba(46, 196, 182, 0.4);
  box-shadow: inset 0 0 30px rgba(46, 196, 182, 0.12), 0 0 35px rgba(46, 196, 182, 0.15);
}

.nova-reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  padding: 1rem;
  border-radius: 0.9rem;
  background: #020d11;
  border: 1px solid rgba(232, 184, 109, 0.25);
  box-shadow: inset 0 0 24px rgba(0, 0, 0, 0.65);
}

.nova-reel {
  height: 120px;
  border-radius: 0.75rem;
  background: linear-gradient(180deg, #103943, #071820);
  border: 1px solid rgba(46, 196, 182, 0.3);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.nova-reel.spinning .nova-symbol {
  animation: reelBlur 0.12s linear infinite;
}

.nova-symbol {
  font-size: 2.4rem;
  color: var(--hb-cyan);
  text-shadow: 0 0 18px rgba(46, 196, 182, 0.75), 0 0 4px rgba(232, 184, 109, 0.5);
  transition: transform 0.25s ease, color 0.25s ease;
}

.nova-reel.hit {
  box-shadow: 0 0 24px rgba(232, 184, 109, 0.55);
  border-color: rgba(232, 184, 109, 0.7);
}

.nova-reel.hit .nova-symbol {
  color: var(--hb-gold);
  transform: scale(1.12);
}

.aurora-table {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.25rem;
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at center, rgba(24, 92, 68, 0.55), rgba(6, 28, 24, 0.95));
  border: 2px solid rgba(46, 196, 182, 0.28);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.35), 0 0 40px rgba(46, 196, 182, 0.12);
}

.aurora-zone {
  margin-bottom: 1.1rem;
}

.aurora-zone h4 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--hb-gold);
}

.aurora-hand {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  min-height: 96px;
}

.hb-card {
  width: 68px;
  height: 96px;
  border-radius: 0.55rem;
  background: linear-gradient(160deg, #f7faf9, #dce9e7);
  color: #123;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0.35rem 0.4rem;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28), 0 0 12px rgba(46, 196, 182, 0.2);
  animation: cardIn 0.35s ease both;
  position: relative;
  overflow: hidden;
}

.hb-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-120%);
  animation: cardShine 1.2s ease 0.15s both;
}

.hb-card.red {
  color: #b42318;
}

.hb-card.back {
  background: linear-gradient(145deg, #0a5c68, #06303a);
  color: var(--hb-cyan);
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.hb-card span:last-child {
  align-self: flex-end;
}

.aurora-score {
  color: var(--hb-mint);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 0.45rem;
}

.orbit-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}

.orbit-wheel-wrap {
  position: relative;
  width: min(340px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
}

.orbit-wheel {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 6px solid rgba(232, 184, 109, 0.55);
  background: conic-gradient(
    #0d3b44 0deg 20deg,
    #1a1a1a 20deg 40deg,
    #0d3b44 40deg 60deg,
    #1a1a1a 60deg 80deg,
    #0d3b44 80deg 100deg,
    #1a1a1a 100deg 120deg,
    #0d3b44 120deg 140deg,
    #1a1a1a 140deg 160deg,
    #0d3b44 160deg 180deg,
    #1a1a1a 180deg 200deg,
    #0d3b44 200deg 220deg,
    #1a1a1a 220deg 240deg,
    #0d3b44 240deg 260deg,
    #1a1a1a 260deg 280deg,
    #0d3b44 280deg 300deg,
    #1a1a1a 300deg 320deg,
    #0d3b44 320deg 340deg,
    #1a1a1a 340deg 360deg
  );
  box-shadow: 0 0 40px rgba(46, 196, 182, 0.35), inset 0 0 30px rgba(0, 0, 0, 0.55);
  transition: transform 4s cubic-bezier(0.12, 0.75, 0.12, 1);
  position: relative;
}

.orbit-wheel::before {
  content: '';
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #1a6b74, #041c22 70%);
  border: 2px solid rgba(46, 196, 182, 0.4);
  box-shadow: 0 0 25px rgba(46, 196, 182, 0.25);
}

.orbit-wheel::after {
  content: '';
  position: absolute;
  inset: 42%;
  border-radius: 50%;
  background: linear-gradient(145deg, #e8b86d, #b8893d);
  box-shadow: 0 0 18px rgba(232, 184, 109, 0.55);
}

.orbit-pointer {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 18px solid var(--hb-gold);
  filter: drop-shadow(0 0 8px rgba(232, 184, 109, 0.8));
  z-index: 2;
}

.orbit-controls {
  display: grid;
  gap: 0.8rem;
}

.orbit-picks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.orbit-pick {
  border: 1px solid rgba(46, 196, 182, 0.25);
  background: rgba(4, 28, 34, 0.65);
  color: var(--hb-cream);
  border-radius: 0.75rem;
  padding: 0.7rem 0.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.orbit-pick:hover,
.orbit-pick.active {
  border-color: var(--hb-cyan);
  box-shadow: 0 0 18px rgba(46, 196, 182, 0.28);
  transform: translateY(-1px);
}

.orbit-result {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--hb-cyan);
  text-shadow: 0 0 16px rgba(46, 196, 182, 0.45);
  min-height: 1.6rem;
}

@keyframes reelBlur {
  from {
    transform: translateY(-8px);
    filter: blur(1px);
  }
  to {
    transform: translateY(8px);
    filter: blur(2px);
  }
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(12px) rotate(-4deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}

@keyframes cardShine {
  to {
    transform: translateX(120%);
  }
}

@media (max-width: 767.98px) {
  .orbit-layout {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .nova-reel.spinning .nova-symbol,
  .hb-card,
  .hb-card::after,
  .orbit-wheel {
    animation: none !important;
    transition: none !important;
  }
}
