/* ═══════════════════════════════════════════════════════════════
   SLOT SINGLE PAGE STYLES
   ═══════════════════════════════════════════════════════════════ */

/* ── Page wrapper ─────────────────────────────────────────────── */
.sh-slot-page {
  max-width: 1152px; /* 6xl */
  margin: 0 auto;
  padding: 80px 16px 48px; /* 80px top clears the 64px fixed navbar */
}


/* ── Breadcrumb ───────────────────────────────────────────────── */
.sh-slot-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  color: var(--muted-fg);
  padding: 16px 0;
}
.sh-slot-breadcrumb a {
  color: var(--muted-fg);
  text-decoration: none;
  transition: color 0.2s;
}
.sh-slot-breadcrumb a:hover {
  color: var(--primary);
}
.sh-breadcrumb-sep {
  opacity: 0.4;
}


/* ── Hero Section ─────────────────────────────────────────────── */
.sh-slot-hero {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
}
.sh-slot-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    hsla(220, 20%, 4%, 0.97) 0%,
    hsla(220, 20%, 4%, 0.85) 40%,
    hsla(220, 20%, 4%, 0.7) 70%,
    hsla(220, 20%, 4%, 0.55) 100%
  );
  z-index: 1;
}
.sh-slot-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 32px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.sh-slot-hero-content {
  flex: 1;
  min-width: 0;
}
.sh-slot-hero-badge {
  display: inline-block;
  padding: 4px 14px;
  background: hsla(0, 0%, 100%, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid hsla(0, 0%, 100%, 0.15);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--fg);
  letter-spacing: 0.03em;
  margin-bottom: 12px;
}
.sh-slot-hero-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin: 0 0 8px;
  line-height: 1.1;
}
.sh-slot-hero-desc {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--muted-fg);
  line-height: 1.5;
  margin: 0 0 20px;
  max-width: 560px;
}
.sh-slot-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sh-slot-hero-cta svg {
  flex-shrink: 0;
}

/* Flicker / pulse glow animation on Play Now CTA */
@keyframes sh-btn-flicker {
  0%, 100% {
    box-shadow: 0 0 8px hsla(45, 100%, 51%, 0.3);
  }
  25% {
    box-shadow: 0 0 20px hsla(45, 100%, 51%, 0.6), 0 0 40px hsla(45, 100%, 51%, 0.2);
  }
  50% {
    box-shadow: 0 0 12px hsla(45, 100%, 51%, 0.4);
  }
  75% {
    box-shadow: 0 0 24px hsla(45, 100%, 51%, 0.7), 0 0 50px hsla(45, 100%, 51%, 0.25);
  }
}

.sh-slot-hero-cta {
  animation: sh-btn-flicker 2s ease-in-out infinite;
}

/* Hero stats box */
.sh-slot-hero-stats {
  display: flex;
  gap: 1px;
  background: hsla(0, 0%, 100%, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid hsla(0, 0%, 100%, 0.12);
  overflow: hidden;
  flex-shrink: 0;
}
.sh-slot-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 16px 24px;
  background: hsla(220, 20%, 4%, 0.4);
  min-width: 100px;
}
.sh-slot-stat-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--muted-fg);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.sh-slot-stat-value {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 4px;
}
.sh-slot-stat-value .sh-star-icon {
  color: var(--gold);
}


/* ── Demo Section ─────────────────────────────────────────────── */
.sh-slot-demo-wrap {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 24px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sh-slot-demo-wrap iframe {
  width: 100%;
  max-height: 500px;
  border: 0;
}
.sh-slot-demo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  color: var(--muted-fg);
  font-family: var(--font-body);
  font-size: 0.9375rem;
}
.sh-slot-demo-placeholder .sh-play-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(152, 69%, 41%, 0.15);
  border: 2px solid var(--primary);
  border-radius: 50%;
  color: var(--primary);
  transition: background 0.2s;
}
.sh-slot-demo-placeholder .sh-play-icon:hover {
  background: hsla(152, 69%, 41%, 0.25);
}


/* ── Content / Article Section ────────────────────────────────── */
.sh-slot-article {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 24px;
}
.sh-slot-article h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin: 32px 0 12px;
}
.sh-slot-article h2:first-child {
  margin-top: 0;
}
.sh-slot-article h3 {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin: 24px 0 8px;
}
.sh-slot-article p {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--muted-fg);
  margin: 0 0 16px;
}
.sh-slot-article ul,
.sh-slot-article ol {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--muted-fg);
  margin: 0 0 16px;
  padding-left: 24px;
}
.sh-slot-article li {
  margin-bottom: 6px;
}
.sh-slot-article strong {
  color: var(--fg);
}
.sh-slot-article a {
  color: var(--primary);
  text-decoration: underline;
}
.sh-slot-article a:hover {
  opacity: 0.8;
}

/* Info boxes inside articles */
.sh-slot-info-box {
  background: hsla(152, 69%, 41%, 0.06);
  border: 1px solid hsla(152, 69%, 41%, 0.2);
  padding: 20px;
  margin: 20px 0;
}
.sh-slot-info-box h3 {
  margin-top: 0;
  color: var(--primary);
}

/* Feature cards inside article */
.sh-slot-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 20px 0;
}
.sh-slot-feature-card {
  background: hsla(220, 15%, 8%, 0.8);
  border: 1px solid var(--border-color);
  padding: 20px;
}
.sh-slot-feature-card h3 {
  margin-top: 0;
  font-size: 1rem;
}
.sh-slot-feature-card p {
  margin-bottom: 0;
}

/* Verdict box */
.sh-slot-verdict {
  background: linear-gradient(135deg, hsla(152, 69%, 41%, 0.1), hsla(152, 50%, 30%, 0.08));
  border: 1px solid hsla(152, 69%, 41%, 0.2);
  padding: 24px;
  margin: 24px 0;
}
.sh-slot-verdict h2 {
  color: var(--primary);
  margin-top: 0;
}
.sh-slot-verdict-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
}
.sh-slot-verdict-rating .sh-star-icon {
  color: var(--gold);
}

/* Stats table in article */
.sh-slot-stats-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.sh-slot-stats-table td {
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  font-family: var(--font-body);
  font-size: 0.9375rem;
}
.sh-slot-stats-table td:first-child {
  color: var(--muted-fg);
  font-weight: 600;
  width: 180px;
  background: hsla(220, 15%, 8%, 0.6);
}
.sh-slot-stats-table td:last-child {
  color: var(--fg);
}


/* ── Section spacing (slot/game page specific) ───────────────── */
.sh-slot-page .sh-section {
  margin-bottom: 32px;
}

.sh-slot-page .sh-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--fg);
  margin-bottom: 16px;
}

/* ── FAQ Accordion ───────────────────────────────────────────── */
.sh-slot-faq .sh-faq-box {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 24px;
}

.sh-slot-page .sh-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sh-slot-page .sh-faq-item {
  border: 1px solid var(--border-color);
  padding: 0 16px;
  background: hsla(220, 20%, 4%, 0.5);
}

.sh-slot-page .sh-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--fg);
  font-family: var(--font-body);
  transition: color 0.2s;
}

.sh-slot-page .sh-faq-question:hover {
  color: var(--primary);
}

.sh-slot-page .sh-faq-question .sh-chevron-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--muted-fg);
}

.sh-slot-page .sh-faq-item.is-open .sh-faq-question .sh-chevron-icon {
  transform: rotate(180deg);
}

.sh-slot-page .sh-faq-answer {
  display: none;
  padding-bottom: 16px;
}

.sh-slot-page .sh-faq-item.is-open .sh-faq-answer {
  display: block;
}

.sh-slot-page .sh-faq-answer p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 12px;
}

.sh-slot-page .sh-faq-answer p:last-child {
  margin-bottom: 0;
}


/* ── Author Box ───────────────────────────────────────────────── */
.sh-slot-author-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  padding: 24px;
}
.sh-slot-author-avatar {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid hsla(152, 69%, 41%, 0.3);
  background: hsla(152, 69%, 41%, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sh-slot-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sh-slot-author-initials {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}
.sh-slot-author-info {
  flex: 1;
  min-width: 0;
}
.sh-slot-author-written {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--muted-fg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 4px;
}
.sh-slot-author-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.sh-slot-author-role {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--primary);
  display: block;
  margin-top: 2px;
}
.sh-slot-author-bio {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted-fg);
  margin: 12px 0 0;
}


/* ── Responsive ───────────────────────────────────────────────── */
@media (min-width: 640px) {
  .sh-slot-hero {
    min-height: 400px;
  }
  .sh-slot-hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .sh-slot-hero {
    min-height: 440px;
  }
  .sh-slot-hero-title {
    font-size: 3.5rem;
  }
  .sh-slot-page {
    padding: 0 24px 64px;
  }
  .sh-slot-article {
    padding: 32px;
  }
  .sh-slot-faq .sh-faq-box {
    padding: 32px;
  }
}

/* Mobile: hero stacks vertically */
@media (max-width: 767px) {
  .sh-slot-hero-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 16px;
  }
  .sh-slot-hero-stats {
    align-self: stretch;
  }
  .sh-slot-stat {
    flex: 1;
    padding: 12px 16px;
    min-width: 0;
  }
  .sh-slot-stat-value {
    font-size: 1.1rem;
  }
  .sh-slot-hero-title {
    font-size: 2rem;
  }
  .sh-slot-hero-desc {
    font-size: 0.9375rem;
  }

  /* Author box stacks */
  .sh-slot-author-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  .sh-slot-author-header {
    text-align: center;
  }

  .sh-slot-article {
    padding: 16px;
  }
  .sh-slot-demo-wrap {
    padding: 16px;
  }
  .sh-slot-faq .sh-faq-box {
    padding: 16px;
  }
}
