/* ==========================================================================
   Slotty House — Static Pages Styles
   About Us, Contact, Terms, Privacy, etc.
   ========================================================================== */

/* ---------- Page wrapper ---------- */
.sh-page {
  max-width: 1152px;
  margin: 0 auto;
  padding: 64px 16px 0;
  font-family: var(--font-body);
  color: var(--fg);
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .sh-page {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.sh-page *,
.sh-page *::before,
.sh-page *::after {
  box-sizing: border-box;
}

.sh-page img {
  display: block;
  max-width: 100%;
}

.sh-page a {
  color: inherit;
  text-decoration: none;
}

/* ---------- Page Hero ---------- */
.sh-page-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0;
  text-align: center;
}

@media (min-width: 640px) {
  .sh-page-hero {
    padding: 96px 0;
  }
}

.sh-page-hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, hsla(152, 69%, 41%, 0.1), var(--bg), var(--bg));
}

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

.sh-page-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: hsla(152, 69%, 41%, 0.2);
  border: 1px solid hsla(152, 69%, 41%, 0.3);
  margin-bottom: 24px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sh-page-badge svg {
  width: 14px;
  height: 14px;
}

.sh-page-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--fg);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

@media (min-width: 640px) {
  .sh-page-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .sh-page-title {
    font-size: 3.75rem;
  }
}

.sh-page-title .sh-accent {
  color: var(--primary);
}

.sh-page-subtitle {
  color: var(--muted-fg);
  font-size: 1rem;
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.75;
}

@media (min-width: 640px) {
  .sh-page-subtitle {
    font-size: 1.125rem;
  }
}

/* ---------- Stats Bar ---------- */
.sh-stats-bar {
  background: hsla(220, 15%, 8%, 0.3);
  padding: 32px 0;
}

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

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

.sh-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (min-width: 640px) {
  .sh-stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
}

.sh-stats-grid .sh-stat {
  text-align: center;
}

.sh-stats-grid .sh-stat-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 4px;
  text-transform: uppercase;
}

@media (min-width: 640px) {
  .sh-stats-grid .sh-stat-val {
    font-size: 1.875rem;
  }
}

.sh-stats-grid .sh-stat-lbl {
  font-size: 0.75rem;
  color: var(--muted-fg);
}

@media (min-width: 640px) {
  .sh-stats-grid .sh-stat-lbl {
    font-size: 0.875rem;
  }
}

/* ---------- Content Section ---------- */
.sh-content-section {
  padding: 56px 0;
}

.sh-content-section--alt {
  background: hsla(220, 15%, 8%, 0.2);
}

.sh-content-section--card-bg {
  background: hsla(220, 15%, 8%, 0.3);
}

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

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

/* ---------- Section Headings ---------- */
.sh-section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--fg);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

@media (min-width: 640px) {
  .sh-section-title {
    font-size: 1.875rem;
  }
}

.sh-section-title .sh-accent {
  color: var(--primary);
}

.sh-section-title--center {
  text-align: center;
}

.sh-section-desc {
  color: var(--muted-fg);
  font-size: 0.875rem;
  max-width: 32rem;
  margin: 0 auto 40px;
  text-align: center;
}

/* ---------- Two-column layout ---------- */
.sh-two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .sh-two-col {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sh-prose {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.75;
}

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

.sh-prose p:last-child {
  margin-bottom: 0;
}

/* ---------- Value Cards (2x2 grid) ---------- */
.sh-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.sh-value-card {
  background: hsla(220, 15%, 8%, 0.5);
  border: 1px solid var(--border-color);
  padding: 20px;
  transition: border-color 0.2s;
}

.sh-value-card:hover {
  border-color: hsla(152, 69%, 41%, 0.3);
}

.sh-value-card svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  margin-bottom: 12px;
}

.sh-value-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--fg);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.sh-value-card p {
  font-size: 0.75rem;
  color: var(--muted-fg);
  line-height: 1.75;
}

/* ---------- Rating Criteria ---------- */
.sh-criteria-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sh-criteria-item {
  background: hsla(220, 15%, 8%, 0.6);
  border: 1px solid var(--border-color);
  padding: 20px;
  transition: border-color 0.3s;
}

.sh-criteria-item:hover {
  border-color: hsla(152, 69%, 41%, 0.3);
}

.sh-criteria-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 640px) {
  .sh-criteria-row {
    flex-direction: row;
    align-items: flex-start;
  }
}

.sh-criteria-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .sh-criteria-meta {
    width: 224px;
  }
}

.sh-criteria-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(152, 69%, 41%, 0.1);
  border: 1px solid hsla(152, 69%, 41%, 0.2);
  flex-shrink: 0;
}

.sh-criteria-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.sh-criteria-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.sh-criteria-weight {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
}

.sh-criteria-desc {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.75;
  flex: 1;
}

.sh-criteria-note {
  margin-top: 24px;
  background: hsla(152, 69%, 41%, 0.05);
  border: 1px solid hsla(152, 69%, 41%, 0.2);
  padding: 16px 20px;
}

.sh-criteria-note p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.75;
}

.sh-criteria-note strong {
  color: var(--fg);
  font-weight: 600;
}

/* ---------- Author/Expert Cards ---------- */
.sh-authors-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sh-author-card {
  background: hsla(220, 15%, 8%, 0.6);
  border: 1px solid var(--border-color);
  padding: 20px 24px;
  transition: border-color 0.3s;
}

.sh-author-card:hover {
  border-color: hsla(152, 69%, 41%, 0.3);
}

.sh-author-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 640px) {
  .sh-author-row {
    flex-direction: row;
    gap: 20px;
  }
}

.sh-author-avatar-col {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .sh-author-avatar-col {
    flex-direction: column;
    align-items: center;
    width: 112px;
    text-align: center;
    gap: 8px;
  }
}

.sh-author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid hsla(152, 69%, 41%, 0.2);
  overflow: hidden;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .sh-author-avatar {
    width: 80px;
    height: 80px;
  }
}

.sh-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sh-author-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.sh-author-role {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 500;
}

.sh-author-body {
  flex: 1;
  min-width: 0;
}

.sh-author-bio {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.75;
  margin-bottom: 12px;
}

.sh-author-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.sh-author-tag {
  font-size: 0.625rem;
  font-weight: 500;
  padding: 4px 10px;
  background: hsla(152, 69%, 41%, 0.1);
  color: var(--primary);
  border: 1px solid hsla(152, 69%, 41%, 0.2);
}

.sh-author-socials {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
}

.sh-author-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  background: hsla(220, 15%, 12%, 0.5);
  color: var(--muted-fg);
  transition: background 0.2s, color 0.2s;
}

.sh-author-social-link:hover {
  background: hsla(152, 69%, 41%, 0.2);
  color: var(--primary);
}

.sh-author-social-link svg {
  width: 14px;
  height: 14px;
}

/* ---------- Editorial Process ---------- */
.sh-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

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

.sh-process-card {
  position: relative;
  background: hsla(220, 15%, 8%, 0.5);
  border: 1px solid var(--border-color);
  padding: 20px;
  transition: border-color 0.2s;
}

.sh-process-card:hover {
  border-color: hsla(152, 69%, 41%, 0.3);
}

.sh-process-step {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.25rem;
  color: hsla(152, 69%, 41%, 0.15);
  position: absolute;
  top: 12px;
  right: 16px;
  transition: color 0.2s;
}

.sh-process-card:hover .sh-process-step {
  color: hsla(152, 69%, 41%, 0.25);
}

.sh-process-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--fg);
  margin-top: 24px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.sh-process-card p {
  font-size: 0.75rem;
  color: var(--muted-fg);
  line-height: 1.75;
}

/* ---------- CTA Section ---------- */
.sh-cta-section {
  text-align: center;
  padding: 56px 0;
}

.sh-cta-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--fg);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

@media (min-width: 640px) {
  .sh-cta-section h2 {
    font-size: 1.5rem;
  }
}

.sh-cta-section p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  max-width: 28rem;
  margin: 0 auto 24px;
}

.sh-cta-btn {
  display: inline-flex;
  padding: 12px 24px;
  background: var(--primary);
  color: var(--primary-fg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.sh-cta-btn:hover {
  background: hsla(152, 69%, 41%, 0.9);
}

/* ==========================================================================
   Contact, Legal, Responsible Gaming, UKGC — Additional Page Styles
   ========================================================================== */

/* ---------- Compact Hero (legal/contact pages) ---------- */
.sh-page-hero--compact {
  padding: 48px 0;
}

@media (min-width: 640px) {
  .sh-page-hero--compact {
    padding: 64px 0;
  }
}

.sh-page-subtitle-sm {
  color: var(--muted-fg);
  font-size: 0.875rem;
  margin-top: 8px;
}

/* ---------- Narrow content container ---------- */
.sh-legal-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sh-legal-narrow--wide {
  max-width: 900px;
}

/* ---------- Card blocks (Contact page) ---------- */
.sh-card-block {
  background: hsla(220, 15%, 8%, 0.6);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.sh-card-block--muted {
  background: hsla(220, 15%, 10%, 0.4);
  border-color: hsla(220, 15%, 15%, 0.6);
}

.sh-card-block-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--fg);
  padding: 20px 24px 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.sh-card-block-body {
  padding: 16px 24px 24px;
}

/* ---------- Contact email link ---------- */
.sh-contact-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.125rem;
  transition: color 0.2s;
  margin-bottom: 12px;
}

.sh-contact-email:hover {
  color: hsla(152, 69%, 41%, 0.8);
}

.sh-contact-email svg {
  width: 20px;
  height: 20px;
}

/* ---------- Prose small ---------- */
.sh-prose-sm {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.75;
  margin-bottom: 12px;
}

.sh-prose-sm:last-child {
  margin-bottom: 0;
}

.sh-prose-sm strong {
  color: var(--fg);
}

/* ---------- Help items list ---------- */
.sh-help-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

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

.sh-help-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--muted-fg);
}

.sh-help-list li svg {
  width: 16px;
  height: 16px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Inline links ---------- */
.sh-link {
  color: var(--primary);
  font-weight: 500;
  transition: color 0.2s;
}

.sh-link:hover {
  color: hsla(152, 69%, 41%, 0.8);
  text-decoration: underline;
}

/* ---------- Legal layout (sidebar + main) ---------- */
.sh-legal-layout {
  max-width: 1152px;
  margin: 0 auto;
  padding: 32px 16px 56px;
  display: flex;
  gap: 40px;
}

@media (min-width: 1024px) {
  .sh-legal-layout {
    padding: 48px 24px 80px;
  }
}

/* ---------- Desktop TOC sidebar ---------- */
.sh-toc-sidebar {
  display: none;
  width: 240px;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .sh-toc-sidebar {
    display: block;
  }
}

.sh-toc-sticky {
  position: sticky;
  top: 96px;
}

.sh-toc-heading {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-fg);
  margin-bottom: 12px;
  padding: 0 8px;
}

.sh-toc-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sh-toc-nav a {
  display: block;
  font-size: 0.875rem;
  color: var(--muted-fg);
  padding: 4px 8px;
  transition: color 0.2s, background 0.2s;
}

.sh-toc-nav a:hover {
  color: var(--primary);
  background: hsla(220, 15%, 12%, 0.5);
}

/* ---------- Mobile TOC ---------- */
.sh-toc-mobile {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 16px 0;
}

@media (min-width: 1024px) {
  .sh-toc-mobile {
    display: none;
  }
}

.sh-toc-toggle {
  display: flex;
  align-items: center;
  justify-content: between;
  width: 100%;
  padding: 12px 16px;
  background: hsla(220, 15%, 8%, 0.6);
  border: 1px solid var(--border-color);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
}

.sh-toc-toggle span {
  flex: 1;
  text-align: left;
}

.sh-toc-toggle .sh-chevron-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.sh-toc-mobile.is-open .sh-toc-toggle .sh-chevron-icon {
  transform: rotate(180deg);
}

.sh-toc-body {
  display: none;
  flex-direction: column;
  gap: 2px;
  margin-top: 8px;
  padding: 12px;
  background: hsla(220, 15%, 8%, 0.6);
  border: 1px solid var(--border-color);
}

.sh-toc-mobile.is-open .sh-toc-body {
  display: flex;
}

.sh-toc-body a {
  display: block;
  font-size: 0.875rem;
  color: var(--muted-fg);
  padding: 4px 8px;
  transition: color 0.2s;
}

.sh-toc-body a:hover {
  color: var(--primary);
}

/* ---------- Legal main content ---------- */
.sh-legal-main {
  flex: 1;
  max-width: 800px;
  min-width: 0;
}

.sh-legal-section {
  margin-bottom: 40px;
  scroll-margin-top: 96px;
}

.sh-legal-section:last-child {
  margin-bottom: 0;
}

.sh-legal-section h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--fg);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.sh-legal-section p {
  font-size: 0.9375rem;
  color: var(--muted-fg);
  line-height: 1.75;
  margin-bottom: 16px;
}

.sh-legal-section p:last-child {
  margin-bottom: 0;
}

/* ---------- Rights / Info cards (2-col grid) ---------- */
.sh-rights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 24px;
  margin-bottom: 24px;
}

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

.sh-rights-card {
  background: hsla(220, 15%, 8%, 0.6);
  border: 1px solid var(--border-color);
  padding: 20px;
}

.sh-rights-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--fg);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.sh-rights-card p {
  font-size: 0.75rem;
  color: var(--muted-fg);
  line-height: 1.75;
  margin-bottom: 0;
}

.sh-rights-card .sh-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.875rem;
}

/* ---------- Warning box (yellow border) ---------- */
.sh-warning-box {
  border: 1px solid hsla(45, 93%, 47%, 0.3);
  background: hsla(45, 93%, 47%, 0.05);
  padding: 24px;
}

.sh-warning-box-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--fg);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.sh-warning-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sh-warning-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--muted-fg);
}

.sh-warning-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: hsl(45, 93%, 47%);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 8px;
}

.sh-warning-footnote {
  font-size: 0.75rem;
  color: var(--muted-fg);
  margin-top: 16px;
}

/* ---------- RG Tool cards ---------- */
.sh-rg-tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

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

.sh-rg-tool-card {
  background: hsla(220, 15%, 8%, 0.6);
  border: 1px solid var(--border-color);
  padding: 20px;
}

.sh-rg-tool-card--highlight {
  border-color: hsla(152, 69%, 41%, 0.2);
}

.sh-rg-tool-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--fg);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.sh-rg-tool-card p {
  font-size: 0.75rem;
  color: var(--muted-fg);
  line-height: 1.75;
  margin-bottom: 0;
}

.sh-rg-tool-card .sh-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.875rem;
}

/* ---------- Support organisation cards ---------- */
.sh-support-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sh-support-card {
  background: hsla(220, 15%, 8%, 0.6);
  border: 1px solid var(--border-color);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 640px) {
  .sh-support-card {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}

.sh-support-card-body {
  flex: 1;
}

.sh-support-card-body h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--fg);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.sh-support-card-body p {
  font-size: 0.75rem;
  color: var(--muted-fg);
  line-height: 1.75;
  margin-bottom: 8px;
}

.sh-support-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--fg);
  background: hsla(220, 15%, 12%, 0.5);
  border: 1px solid var(--border-color);
  padding: 8px 16px;
  flex-shrink: 0;
  transition: border-color 0.2s;
  white-space: nowrap;
}

.sh-support-phone:hover {
  border-color: hsla(152, 69%, 41%, 0.5);
}

/* ---------- Underage gambling box ---------- */
.sh-underage-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.sh-underage-badge {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: hsla(0, 84%, 60%, 0.1);
  border: 2px solid hsla(0, 84%, 60%, 0.4);
  border-radius: 50%;
  color: hsl(0, 84%, 60%);
  font-weight: 900;
  font-size: 1.125rem;
  flex-shrink: 0;
}

/* ---------- Cookie table ---------- */
.sh-cookie-table-wrap {
  margin-top: 20px;
  overflow-x: auto;
  border: 1px solid var(--border-color);
}

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

.sh-cookie-table th {
  text-align: left;
  padding: 12px 16px;
  font-weight: 600;
  color: var(--fg);
  background: hsla(220, 15%, 8%, 0.6);
  border-bottom: 1px solid var(--border-color);
  white-space: nowrap;
}

.sh-cookie-table td {
  padding: 12px 16px;
  color: var(--muted-fg);
  border-bottom: 1px solid var(--border-color);
  vertical-align: top;
}

.sh-cookie-table tr:last-child td {
  border-bottom: 0;
}

.sh-cookie-table tr:nth-child(even) td {
  background: hsla(220, 15%, 10%, 0.2);
}

.sh-cookie-name {
  color: var(--primary);
  font-family: monospace;
  font-size: 0.75rem;
  white-space: nowrap;
}

/* ---------- Browser list ---------- */
.sh-browser-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sh-browser-list li {
  padding: 6px 0;
}

.sh-browser-list li a {
  font-size: 0.875rem;
}

/* ---------- UKGC objectives (3-col) ---------- */
.sh-ukgc-objectives {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 20px;
}

@media (min-width: 640px) {
  .sh-ukgc-objectives {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sh-ukgc-obj-card {
  background: hsla(220, 15%, 8%, 0.6);
  border: 1px solid var(--border-color);
  padding: 16px;
}

.sh-ukgc-obj-card p {
  font-size: 0.875rem;
  color: var(--muted-fg);
  line-height: 1.5;
  margin-bottom: 0;
}

/* ---------- Steps timeline (UKGC verification) ---------- */
.sh-steps-timeline {
  margin-top: 24px;
}

.sh-step-item {
  display: flex;
  gap: 20px;
}

.sh-step-item + .sh-step-item {
  margin-top: 0;
}

.sh-step-num {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

/* Vertical connector line */
.sh-step-item:not(:last-child) .sh-step-num::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: var(--border-color);
}

.sh-step-content {
  padding-bottom: 32px;
}

.sh-step-item:last-child .sh-step-content {
  padding-bottom: 0;
}

.sh-step-content h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--fg);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.sh-step-content p {
  font-size: 0.75rem;
  color: var(--muted-fg);
  line-height: 1.75;
  margin-bottom: 0;
}
