/* ==========================================================================
   Slotty House — Bonus Page + Game Provider Page Styles
   ========================================================================== */

.sh-bonuspage {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
}

@media (min-width: 1024px) {
  .sh-bonuspage {
    padding: 0 24px;
  }
}

/* ---------- Hero ---------- */
.sh-bp-hero {
  position: relative;
  padding: 48px 0 40px;
  overflow: hidden;
}

.sh-bp-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 40% at 50% 30%, hsl(152 50% 14% / 0.45) 0%, transparent 70%),
    radial-gradient(ellipse 60% 30% at 30% 50%, hsl(152 40% 12% / 0.3) 0%, transparent 60%);
}

.sh-bp-hero-inner {
  position: relative;
  z-index: 1;
}

.sh-bp-hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 12px;
}

@media (min-width: 1024px) {
  .sh-bp-hero-title {
    font-size: 2.25rem;
  }
}

.sh-bp-hero-desc {
  font-size: 1rem;
  color: var(--muted-fg);
  line-height: 1.6;
  max-width: 48rem;
}

/* ---------- Content Sections ---------- */
.sh-bp-content {
  margin: 32px 0;
}

.sh-bp-article {
  color: var(--muted-fg);
  font-size: 0.9375rem;
  line-height: 1.75;
}

.sh-bp-article h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  margin: 32px 0 12px;
}

.sh-bp-article h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--fg);
  margin: 24px 0 8px;
}

.sh-bp-article p {
  margin-bottom: 16px;
}

.sh-bp-article ul,
.sh-bp-article ol {
  margin: 0 0 16px 24px;
  list-style: disc;
}

.sh-bp-article ol {
  list-style: decimal;
}

.sh-bp-article li {
  margin-bottom: 6px;
}

.sh-bp-article a {
  color: var(--primary);
  text-decoration: underline;
}

.sh-bp-article a:hover {
  color: var(--fg);
}

/* Tables inside content */
.sh-bp-article .sh-table-wrap {
  overflow-x: auto;
  margin: 24px 0;
}

.sh-bp-article table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.sh-bp-article table th {
  background: hsla(220, 15%, 12%, 0.5);
  color: var(--fg);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.75rem;
  padding: 10px 12px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}

.sh-bp-article table td {
  padding: 10px 12px;
  border-bottom: 1px solid hsla(220, 15%, 15%, 0.3);
  color: var(--muted-fg);
}

.sh-bp-article table tr:hover td {
  background: hsla(220, 15%, 12%, 0.3);
}

.sh-bp-article .sh-td-name {
  color: var(--fg);
  font-weight: 600;
}

.sh-bp-article .sh-td-primary {
  color: var(--primary);
  font-weight: 600;
}

.sh-bp-article .sh-td-gold {
  color: hsl(45, 90%, 55%);
  font-weight: 600;
}

/* ---------- Casino Grid Section ---------- */
.sh-bp-casinos {
  margin: 32px 0;
}

/* ---------- FAQ Section ---------- */
.sh-bp-faq {
  margin: 40px 0;
  padding: 32px;
  background: hsla(220, 15%, 8%, 0.5);
  border: 1px solid var(--border-color);
}

.sh-bp-faq-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--fg);
  margin-bottom: 20px;
}

/* ---------- Explore More Section ---------- */
.sh-bp-explore {
  margin: 40px 0;
  padding: 24px 32px;
  background: hsla(220, 15%, 8%, 0.3);
  border: 1px solid var(--border-color);
}

.sh-bp-explore-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--fg);
  margin-bottom: 20px;
}

.sh-bp-explore-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 640px) {
  .sh-bp-explore-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .sh-bp-explore-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sh-bp-explore-card {
  display: block;
  padding: 16px;
  border: 1px solid var(--border-color);
  background: hsla(220, 15%, 8%, 0.5);
  transition: border-color 0.3s, background 0.3s;
}

.sh-bp-explore-card:hover {
  border-color: hsla(152, 69%, 41%, 0.4);
  background: hsla(152, 69%, 41%, 0.05);
}

.sh-bp-explore-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--fg);
  margin-bottom: 4px;
  transition: color 0.3s;
}

.sh-bp-explore-card:hover .sh-bp-explore-card-title {
  color: var(--primary);
}

.sh-bp-explore-card-desc {
  font-size: 0.75rem;
  color: var(--muted-fg);
  line-height: 1.5;
}

/* ---------- Green Highlight ---------- */
.sh-hl {
  color: var(--primary);
}
