/* ── Slot games page — PG, Pragmatic Play, AMB SLOT ── */
.slot-page {
  position: relative;
  overflow: hidden;
  padding: 28px 14px 52px;
  color: #3f3f46;
  background:
    radial-gradient(circle at 8% 0%, rgba(124, 58, 237, 0.12), transparent 38%),
    radial-gradient(circle at 92% 5%, rgba(245, 158, 11, 0.11), transparent 40%),
    linear-gradient(180deg, #f0f0f0 0%, #f8f5ff 44%, #f0f0f0 100%);
}

.slot-wrap {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
}

/* ── Hero ── */
.slot-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px;
  margin-bottom: 16px;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(192, 132, 252, 0.15), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #faf5ff 100%);
  border: 1px solid rgba(124, 58, 237, 0.13);
  box-shadow: 0 16px 40px rgba(76, 29, 149, 0.09);
  text-align: center;
}

.slot-hero__media {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(124, 58, 237, 0.10);
  box-shadow: 0 12px 28px rgba(76, 29, 149, 0.13);
}

.slot-hero__copy {
  min-width: 0;
}

.slot-hero__eyebrow {
  display: inline-block;
  margin: 0 0 12px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(124, 58, 237, 0.08);
  border: 1px solid rgba(124, 58, 237, 0.16);
  color: #7c3aed;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  line-height: 1.35;
}

.slot-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 4.8vw, 2.1rem);
  font-weight: var(--fw-extrabold);
  line-height: 1.35;
  color: #4c1d95;
  text-wrap: balance;
}

.slot-hero__line {
  display: block;
}

.slot-hero__line--accent {
  color: #7c3aed;
}

.slot-hero__lead {
  margin: 0 auto 15px;
  max-width: 580px;
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--color-text-muted);
}

.slot-hero__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.slot-hero__chips li {
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff7e0;
  border: 1px solid rgba(245, 158, 11, 0.28);
  color: #b45309;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  white-space: nowrap;
}

/* ── Shared card ── */
.slot-card {
  padding: 24px 20px;
  margin-bottom: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(124, 58, 237, 0.10);
  box-shadow: 0 12px 30px rgba(76, 29, 149, 0.06);
}

.slot-card h2 {
  margin: 0 0 12px;
  font-size: clamp(var(--fs-lg), 3.4vw, var(--fs-2xl));
  font-weight: var(--fw-bold);
  line-height: var(--lh-snug);
  color: var(--color-heading);
}

.slot-card h3 {
  margin: 0 0 8px;
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  line-height: 1.4;
  color: var(--color-heading);
}

.slot-section__lead {
  max-width: 900px;
  margin: -4px 0 18px;
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--color-text-muted);
}

.slot-card p {
  margin: 0 0 12px;
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--color-text);
}

/* ── Provider overview ── */
.slot-providers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.slot-provider {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(160deg, #faf8ff, #f3ecff);
  border: 1px solid rgba(124, 58, 237, 0.13);
  overflow: hidden;
}

.slot-provider::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(124, 58, 237, 0.06);
}

.slot-provider--pp {
  background: linear-gradient(160deg, #fffdf5, #fff7e0);
  border-color: rgba(245, 158, 11, 0.22);
}

.slot-provider--pp::after {
  background: rgba(245, 158, 11, 0.08);
}

.slot-provider--amb {
  background: linear-gradient(160deg, #f3fff7, #edfff2);
  border-color: rgba(16, 185, 129, 0.20);
}

.slot-provider--amb::after {
  background: rgba(16, 185, 129, 0.07);
}

.slot-provider__logo {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 48px;
  margin-bottom: 12px;
}

.slot-provider__logo img {
  display: block;
  width: auto;
  max-width: 170px;
  max-height: 44px;
  object-fit: contain;
}

.slot-provider__logo--amb img {
  max-width: 190px;
  max-height: 48px;
}

.slot-provider h3,
.slot-provider p,
.slot-provider__tags {
  position: relative;
  z-index: 1;
}

.slot-provider p {
  margin: 0 0 12px;
  font-size: var(--fs-sm);
  line-height: 1.7;
  color: var(--color-text-muted);
}

.slot-provider__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: auto 0 0;
  padding: 0;
  list-style: none;
}

.slot-provider__tags li {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(124, 58, 237, 0.10);
  font-size: var(--fs-xs);
  line-height: 1.25;
  color: #6d28d9;
}

.slot-provider__demo-link {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
}

/* ── Real game gallery ── */
.slot-games {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.slot-game {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(124, 58, 237, 0.12);
  box-shadow: 0 8px 22px rgba(76, 29, 149, 0.07);
  transition: transform 0.18s, box-shadow 0.18s;
}

.slot-game:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(76, 29, 149, 0.13);
}

.slot-game__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  aspect-ratio: 1 / 1;
  padding: 10px;
  background:
    radial-gradient(circle at 50% 35%, rgba(192, 132, 252, 0.18), transparent 55%),
    linear-gradient(145deg, #25103f, #4c1d95);
  overflow: hidden;
}

.slot-game--wide .slot-game__media {
  aspect-ratio: 16 / 11;
}

.slot-game__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.slot-game--portrait .slot-game__img {
  width: auto;
  max-width: 100%;
}

.slot-game__provider {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 1;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.90);
  color: #4c1d95;
  font-size: 10px;
  font-weight: var(--fw-bold);
  line-height: 1.2;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

.slot-game__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 12px 12px 14px;
}

.slot-game__body h3 {
  margin: 0 0 4px;
  font-size: var(--fs-base);
  line-height: 1.35;
}

.slot-game__body p {
  margin: 0;
  font-size: var(--fs-xs);
  line-height: 1.55;
  color: var(--color-text-muted);
}

.slot-game__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: auto;
  padding-top: 10px;
}

.slot-game__meta span {
  padding: 4px 7px;
  border-radius: 7px;
  background: #faf5ff;
  color: #7c3aed;
  font-size: 10px;
  font-weight: var(--fw-semibold);
  line-height: 1.2;
}

.slot-source {
  margin: 14px 0 0;
  font-size: var(--fs-xs);
  line-height: 1.6;
  color: #71717a;
  text-align: center;
}

.slot-source a {
  color: #6d28d9;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.slot-gameplay {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  margin-top: 20px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(145deg, #2e1065, #4c1d95);
  color: #fff;
  box-shadow: 0 12px 28px rgba(76, 29, 149, 0.16);
}

.slot-gameplay img {
  display: block;
  width: min(100%, 230px);
  height: auto;
  margin: 0 auto;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.slot-gameplay__label {
  display: inline-block;
  margin: 0 0 8px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fde68a;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  line-height: 1.35;
}

.slot-gameplay h3 {
  margin-bottom: 8px;
  color: #fff;
}

.slot-gameplay div > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: var(--fs-sm);
  line-height: 1.75;
}

/* ── Provider directory links ── */
.slot-providers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.slot-provider-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 6px 12px;
  border-radius: 14px;
  background: linear-gradient(160deg, #faf8ff, #f5f0ff);
  border: 1px solid rgba(124, 58, 237, 0.12);
  text-align: center;
  transition: transform 0.15s, box-shadow 0.15s;
}

.slot-provider-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(76, 29, 149, 0.10);
}

.slot-provider-card img {
  width: 100%;
  max-width: 90px;
  aspect-ratio: 5 / 7;
  object-fit: cover;
  border-radius: 10px;
}

.slot-provider-card span {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--color-heading);
  line-height: 1.3;
}

/* ── SEO guides ── */
.slot-guides,
.slot-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.slot-guide,
.slot-info {
  padding: 16px;
  border-radius: 16px;
  background: linear-gradient(160deg, #faf8ff, #f5f0ff);
  border: 1px solid rgba(124, 58, 237, 0.12);
}

.slot-info {
  background: #fafafa;
}

.slot-guide p,
.slot-info p {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 1.75;
  color: var(--color-text-muted);
}

.slot-compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.slot-compare__row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  align-items: start;
  padding: 13px 14px;
  border-radius: 14px;
  background: #fafafa;
  border: 1px solid rgba(124, 58, 237, 0.09);
}

.slot-compare__row b {
  color: var(--color-heading);
  font-size: var(--fs-sm);
}

.slot-compare__row span {
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ── Steps and CTA ── */
.slot-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.slot-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(160deg, #fffdf5, #fff7e0);
  border: 1px solid rgba(245, 158, 11, 0.24);
}

.slot-step__no {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d97706, #f59e0b);
  color: #fff;
  font-size: 15px;
  font-weight: var(--fw-bold);
}

.slot-step b {
  display: block;
  margin-bottom: 2px;
  font-size: var(--fs-base);
  color: #92400e;
}

.slot-step span {
  display: block;
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: #78350f;
}

.slot-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 22px;
}

.slot-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 12px 22px;
  border-radius: 14px;
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  transition: transform 0.15s, filter 0.15s, box-shadow 0.15s;
}

.slot-cta__btn--play {
  background: linear-gradient(135deg, #6d28d9 0%, #9333ea 45%, #db2777 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(109, 40, 217, 0.32);
}

.slot-cta__btn--play:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.slot-cta__btn--register {
  background: #fff;
  color: #6d28d9;
  border: 1.5px solid rgba(124, 58, 237, 0.35);
}

.slot-note {
  margin: 16px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.07);
  border: 1px solid rgba(16, 185, 129, 0.22);
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: #047857;
  text-align: center;
}

/* ── FAQ and responsible play ── */
.slot-faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slot-faq__item {
  padding: 14px 16px;
  border-radius: 14px;
  background: #fafafa;
  border: 1px solid rgba(124, 58, 237, 0.10);
}

.slot-faq__item h3 {
  margin-bottom: 6px;
  font-size: var(--fs-base);
}

.slot-faq__item p {
  margin: 0;
  font-size: var(--fs-sm);
  line-height: 1.65;
  color: var(--color-text-muted);
}

.slot-safe {
  background:
    radial-gradient(circle at 100% 0%, rgba(16, 185, 129, 0.08), transparent 36%),
    rgba(255, 255, 255, 0.94);
  border-color: rgba(16, 185, 129, 0.18);
}

.slot-safe__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.slot-safe__list li {
  position: relative;
  padding: 10px 12px 10px 34px;
  border-radius: 12px;
  background: rgba(16, 185, 129, 0.06);
  border: 1px solid rgba(16, 185, 129, 0.14);
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: #065f46;
}

.slot-safe__list li::before {
  content: "✓";
  position: absolute;
  top: 10px;
  left: 12px;
  color: #059669;
  font-weight: var(--fw-bold);
}

@media (min-width: 600px) {
  .slot-providers {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

  .slot-gameplay {
    grid-template-columns: minmax(160px, 230px) 1fr;
    padding: 22px;
  }

  .slot-guides,
  .slot-info-grid,
  .slot-safe__list {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .slot-cta {
    flex-direction: row;
  }

  .slot-cta__btn {
    flex: 1 1 0;
  }
}

@media (min-width: 860px) {
  .slot-page {
    padding: 34px 20px 60px;
  }

  .slot-hero {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
    gap: 30px;
    padding: 32px 36px;
    text-align: left;
  }

  .slot-hero__lead {
    margin: 0 0 16px;
    max-width: none;
  }

  .slot-providers-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .slot-hero__chips {
    justify-content: flex-start;
  }

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

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