.slots-play-section {
  padding: clamp(44px, 6vw, 72px) 0;
  background: #080808;
}

.slots-play-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(30px, 5vw, 64px);
  min-height: 176px;
  padding: clamp(34px, 4vw, 48px) clamp(30px, 5vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, .36);
  border-radius: 28px;
  background:
    radial-gradient(circle at 12% 10%, rgba(104, 219, 255, .11), transparent 34%),
    radial-gradient(circle at 92% 92%, rgba(212, 175, 55, .14), transparent 32%),
    linear-gradient(120deg, rgba(255,255,255,.045), rgba(9,14,17,.98) 50%, rgba(20,18,8,.98));
  box-shadow: inset 0 1px rgba(255,255,255,.055), 0 24px 58px rgba(0,0,0,.28);
}

.slots-play-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: 8%;
  top: -112px;
  width: 230px;
  height: 230px;
  border: 1px solid rgba(100, 218, 255, .13);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(100, 218, 255, .025),
    inset 0 0 44px rgba(100, 218, 255, .035);
  pointer-events: none;
}

.slots-play-card::after {
  content: "777";
  position: absolute;
  z-index: -1;
  right: clamp(170px, 20vw, 265px);
  top: 50%;
  transform: translateY(-50%);
  color: rgba(212, 175, 55, .07);
  font-size: clamp(64px, 8vw, 110px);
  font-weight: 1000;
  letter-spacing: -.1em;
  line-height: 1;
  pointer-events: none;
}

.slots-play-copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.slots-play-copy h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3.2vw, 2.55rem);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.slots-play-copy p {
  max-width: 700px;
  margin: 18px 0 0;
  color: #b9bdc3;
  font-size: clamp(.96rem, 1.35vw, 1.08rem);
  font-weight: 560;
  line-height: 1.65;
}

.slots-play-action {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-width: 142px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border: 1px solid rgba(255, 232, 133, .58);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe071 0%, #d4af37 52%, #bc8c12 100%);
  color: #090909;
  box-shadow: 0 12px 30px rgba(212, 175, 55, .2);
  font-size: .84rem;
  font-weight: 950;
  letter-spacing: .04em;
  text-decoration: none;
  text-transform: uppercase;
  transform-origin: center;
  animation: slots-play-steady-beat 1.65s ease-in-out infinite;
  will-change: transform, box-shadow;
}

.slots-play-action:hover,
.slots-play-action:focus-visible {
  animation-play-state: paused;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 18px 40px rgba(212, 175, 55, .42);
}

.slots-play-action:focus-visible {
  outline: 3px solid rgba(255, 224, 113, .4);
  outline-offset: 4px;
}

@keyframes slots-play-steady-beat {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 12px 30px rgba(212, 175, 55, .2), 0 0 0 0 rgba(253, 202, 51, 0);
  }
  50% {
    transform: scale(1.055);
    box-shadow: 0 16px 38px rgba(212, 175, 55, .42), 0 0 0 8px rgba(253, 202, 51, .08);
  }
}

@media (max-width: 700px) {
  .slots-play-card {
    grid-template-columns: 1fr;
    gap: 26px;
    min-height: 0;
    padding: 32px 24px;
    border-radius: 22px;
  }

  .slots-play-card::before {
    right: -92px;
  }

  .slots-play-card::after {
    right: 22px;
    top: 38px;
    transform: none;
    font-size: 62px;
  }

  .slots-play-copy h2,
  .slots-play-copy p {
    max-width: 100%;
  }

  .slots-play-action {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .slots-play-action {
    animation: none;
    will-change: auto;
  }
}
