.slot-kicker {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  margin-bottom: 14px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--blue);
  background: #eef5ff;
  font-size: 13px;
  font-weight: 700;
}

.slot-machine-preview {
  position: relative;
  min-height: 470px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 26px;
  padding: 34px;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 32% 20%, #fff7dd, transparent 36%),
    linear-gradient(135deg, #f8fbff, #eaf4ff);
  box-shadow: var(--shadow);
}

.slot-window {
  display: grid;
  grid-template-columns: repeat(3, 112px);
  gap: 16px;
  padding: 28px;
  border: 6px solid #fff;
  border-radius: 28px;
  background: linear-gradient(135deg, #061b49, #123f85);
  box-shadow: 0 22px 42px rgb(6 27 73 / 18%);
}

.slot-window span {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: #fff;
}

.slot-window img {
  width: 58px;
  height: 58px;
}

.slot-status-card {
  width: min(360px, 100%);
  padding: 22px;
  border: 1px solid #f0d17d;
  border-radius: 18px;
  background: rgb(255 255 255 / 96%);
  box-shadow: 0 16px 38px rgb(6 27 73 / 12%);
}

.slot-status-card span,
.slot-proof-grid span,
.slot-reward-grid span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.slot-status-card b {
  display: block;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  margin: 8px 0;
}

.slot-status-card small,
.slot-proof-grid small {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.slot-proof-grid,
.slot-step-grid,
.slot-rule-grid,
.slot-reward-grid {
  display: grid;
  max-width: 1120px;
  margin: 0 auto;
  gap: 22px;
}

.slot-proof-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.slot-proof-grid article,
.slot-step-grid article,
.slot-reward-grid article {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 32px rgb(6 27 73 / 6%);
}

.slot-proof-grid article {
  min-height: 150px;
  padding: 24px;
}

.slot-proof-grid .slot-proof-win {
  border-color: #f0d17d;
  background: linear-gradient(135deg, #fff9df, #ffffff);
  box-shadow: 0 14px 34px rgb(153 99 12 / 9%);
}

.slot-proof-grid .slot-proof-win span {
  color: #b98100;
}

.slot-proof-grid .slot-proof-win b {
  color: #7a5400;
}

.slot-proof-grid b {
  display: block;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.2;
  margin: 14px 0 8px;
}

.slot-step-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.slot-step-grid article {
  min-height: 230px;
  padding: 26px;
}

.slot-step-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-weight: 700;
  margin-bottom: 16px;
}

.slot-step-grid p,
.slot-reward-grid p {
  color: var(--ink);
  margin-bottom: 0;
}

.slot-rule-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.slot-rule-grid .icon-card {
  min-height: 214px;
}

.slot-reward-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.slot-reward-grid article {
  min-height: 238px;
  padding: 26px;
}

.slot-reward-grid h3 {
  font-size: 22px;
  margin: 12px 0;
}

@media (max-width: 760px) {
  .slot-machine-preview {
    min-height: auto;
    padding: 18px;
  }

  .slot-window {
    width: 100%;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 16px;
    border-radius: 20px;
  }

  .slot-window span {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 18px;
  }

  .slot-proof-grid,
  .slot-step-grid,
  .slot-rule-grid,
  .slot-reward-grid {
    grid-template-columns: 1fr;
  }
}
