.category-play-cta {
  padding: clamp(48px, 6vw, 72px) 0;
  background: #080808;
}

.category-play-shell {
  width: min(1180px, calc(100% - 64px));
  margin-inline: auto;
}

.category-play-card {
  --play-accent: #d4af37;
  --play-glow: rgba(212, 175, 55, 0.18);
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px auto;
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
  min-height: 176px;
  padding: clamp(30px, 4vw, 44px) clamp(28px, 4vw, 48px);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--play-accent) 48%, transparent);
  border-radius: 26px;
  background:
    radial-gradient(circle at 82% 50%, var(--play-glow), transparent 28%),
    linear-gradient(112deg, rgba(13, 23, 26, 0.98), rgba(12, 13, 14, 0.98) 58%, rgba(27, 24, 11, 0.96));
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.category-play-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.025), transparent),
    radial-gradient(circle at 94% 0%, var(--play-glow), transparent 24%);
}

.category-play-cta--casino .category-play-card {
  --play-accent: #e9bd42;
  --play-glow: rgba(233, 189, 66, 0.17);
}

.category-play-cta--esports .category-play-card {
  --play-accent: #d7b43e;
  --play-glow: rgba(121, 87, 255, 0.16);
}

.category-play-cta--sports .category-play-card {
  --play-accent: #d9b534;
  --play-glow: rgba(64, 190, 120, 0.14);
}

.category-play-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}

.category-play-copy h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.category-play-copy p {
  max-width: 720px;
  margin: 0;
  color: #c8ced4;
  font-size: clamp(14px, 1.25vw, 16px);
  line-height: 1.65;
}

.category-play-art {
  position: relative;
  z-index: 1;
  display: grid;
  width: 180px;
  height: 100px;
  place-items: center;
  color: color-mix(in srgb, var(--play-accent) 72%, transparent);
  opacity: 0.46;
  pointer-events: none;
}

.category-play-art svg {
  display: block;
  width: 180px;
  height: 100px;
}

.category-play-action {
  position: relative;
  z-index: 2;
  display: inline-flex;
  min-width: 142px;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border: 1px solid rgba(255, 230, 139, 0.76);
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe98d 0%, #d4af37 48%, #b98c13 100%);
  box-shadow:
    0 10px 24px rgba(212, 175, 55, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  color: #fff;
  text-shadow: 0 1px 1px rgba(70, 43, 0, 0.46);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  animation: category-play-steady-beat 1.6s ease-in-out infinite;
  transform-origin: center;
}

.category-play-action:hover,
.category-play-action:focus-visible {
  background: linear-gradient(135deg, #fff1a8 0%, #e2c04f 50%, #c89718 100%);
  box-shadow:
    0 12px 30px rgba(212, 175, 55, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

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

@keyframes category-play-steady-beat {
  0%, 100% {
    transform: scale(1);
    box-shadow:
      0 10px 24px rgba(212, 175, 55, 0.25),
      inset 0 1px 0 rgba(255, 255, 255, 0.62);
  }
  50% {
    transform: scale(1.045);
    box-shadow:
      0 14px 32px rgba(212, 175, 55, 0.4),
      0 0 0 7px rgba(212, 175, 55, 0.075),
      inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }
}

@media (max-width: 760px) {
  .category-play-shell {
    width: min(100% - 32px, 620px);
  }

  .category-play-card {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    min-height: 0;
    padding: 32px 28px 28px;
  }

  .category-play-copy {
    padding-right: 52px;
  }

  .category-play-art {
    position: absolute;
    z-index: 0;
    top: 18px;
    right: -24px;
    width: 140px;
    opacity: 0.17;
  }

  .category-play-art svg {
    width: 140px;
    height: auto;
  }

  .category-play-action {
    width: 100%;
    min-height: 52px;
  }
}

@media (max-width: 420px) {
  .category-play-copy {
    padding-right: 24px;
  }

  .category-play-copy h2 {
    font-size: 25px;
  }

  .category-play-art {
    right: -42px;
    opacity: 0.13;
  }
}

@media (prefers-reduced-motion: reduce) {
  .category-play-action {
    animation: none;
  }
}
