/* sohs.org.uk – Warm Teal & Gold | Unique layout – fonts loaded via <link> in HTML for non-blocking */
:root {
  --header-height: 72px;
  --bg-dark: #0d2e2c;
  --bg-card: #143834;
  --bg-page: #0a2322;
  --accent-gold: #d4a84b;
  --accent-gold-light: #e8c97a;
  --cream: #f5f0e8;
  --cream-muted: #c4bfb5;
  --text-primary: #f0ebe3;
  --text-muted: #9a958c;
  --border-subtle: rgba(212, 168, 75, 0.2);
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.25);
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  font-family: 'DM Sans', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-page);
}

h1, h2, h3, h4 {
  font-family: 'Libre Baskerville', Georgia, serif;
  font-weight: 700;
  line-height: 1.25;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-gold); text-decoration: none; transition: color var(--transition-fast); }
a:hover { color: var(--accent-gold-light); }

.l-wrapper {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* Header – warm bar, gold accent */
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: linear-gradient(180deg, rgba(13, 46, 44, 0.98) 0%, rgba(10, 35, 34, 0.96) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  z-index: 1000;
}
.c-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 var(--spacing-md);
}
.c-header__logo {
  display: inline-flex;
  align-items: center;
  /* gap: var(--spacing-sm); */
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.c-header__favicon {
  display: block;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  margin-right: 10px;
}
.c-header__logo span {
  color: var(--accent-gold);
  margin-left: -0.02em;
  letter-spacing: 0;
}
.c-nav__list {
  display: flex;
  gap: var(--spacing-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-nav__link {
  font-weight: 500;
  color: var(--cream-muted);
  padding: var(--spacing-xs) 0;
  transition: color var(--transition-fast);
}
.c-nav__link:hover {
  color: var(--accent-gold);
}
.c-header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.c-header__burger span {
  display: block;
  height: 2px;
  background: var(--accent-gold);
  border-radius: 2px;
  transition: var(--transition-smooth);
}
.c-header__burger.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.c-header__burger.is-open span:nth-child(2) { opacity: 0; }
.c-header__burger.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Burger menu at 991px and below */
@media (max-width: 991px) {
  .c-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(13, 46, 44, 0.98);
    backdrop-filter: blur(12px);
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--border-subtle);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 999;
  }
  .c-nav.is-active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  .c-nav__list { flex-direction: column; gap: 0; }
  .c-nav__link {
    display: block;
    padding: var(--spacing-md);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .c-header__burger { display: flex; }
}

/* ===== BLOCK 1: Benefits first (different structure) ===== */
.section-benefits {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-page) 100%);
}
.section-benefits .section__title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: var(--cream);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-md);
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .benefits-grid { grid-template-columns: 1fr; }
}
.m-benefit {
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-top: 3px solid var(--accent-gold);
  transition: var(--transition-smooth);
  text-align: center;
}
.m-benefit:hover {
  border-top-color: var(--accent-gold-light);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.m-benefit__icon {
  font-size: 2rem;
  margin-bottom: var(--spacing-sm);
}
.m-benefit__title { font-size: 1.1rem; margin-bottom: var(--spacing-xs); color: var(--cream); }
.m-benefit__text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.55; }

/* ===== BLOCK 2: Hero strip ===== */
/* Spotlight: animated casino chips background */
@keyframes spotlight-chip-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.35; }
  25% { transform: translate(8px, -12px) rotate(5deg); opacity: 0.5; }
  50% { transform: translate(-5px, -20px) rotate(-3deg); opacity: 0.4; }
  75% { transform: translate(10px, -8px) rotate(4deg); opacity: 0.45; }
}
@keyframes spotlight-chip-float-2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.3; }
  33% { transform: translate(-10px, 15px) rotate(-6deg); opacity: 0.45; }
  66% { transform: translate(6px, 8px) rotate(4deg); opacity: 0.35; }
}
@keyframes spotlight-glow-pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.7; }
}
.section-spotlight {
  position: relative;
  padding: calc(var(--header-height) + var(--spacing-xl)) 0 var(--spacing-xl);
  background: var(--bg-page);
  overflow: hidden;
}
.spotlight-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.spotlight-chip {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-dark) 100%);
  border: 3px solid rgba(212, 168, 75, 0.45);
  box-shadow:
    inset 0 2px 4px rgba(255,255,255,0.08),
    inset 0 -2px 4px rgba(0,0,0,0.3),
    0 4px 20px rgba(0,0,0,0.2);
  pointer-events: none;
}
.spotlight-chip::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  border: 2px solid rgba(212, 168, 75, 0.5);
  box-shadow: inset 0 0 12px rgba(212, 168, 75, 0.15);
}
.spotlight-chip--1 { width: 56px; height: 56px; top: 12%; left: 8%; background: linear-gradient(145deg, #1a3d3a 0%, var(--bg-dark) 100%); border-color: rgba(212, 168, 75, 0.6); animation: spotlight-chip-float 8s ease-in-out infinite; }
.spotlight-chip--2 { width: 44px; height: 44px; top: 25%; right: 15%; background: linear-gradient(145deg, #143834 0%, #0d2e2c 100%); border-color: rgba(212, 168, 75, 0.5); animation: spotlight-chip-float-2 10s ease-in-out infinite 1s; }
.spotlight-chip--3 { width: 36px; height: 36px; bottom: 30%; left: 12%; border-color: rgba(212, 168, 75, 0.45); animation: spotlight-chip-float 9s ease-in-out infinite 2s; }
.spotlight-chip--4 { width: 52px; height: 52px; bottom: 15%; right: 10%; background: linear-gradient(145deg, #1a3d3a 0%, var(--bg-dark) 100%); border-color: rgba(212, 168, 75, 0.55); animation: spotlight-chip-float-2 11s ease-in-out infinite 0.5s; }
.spotlight-chip--5 { width: 40px; height: 40px; top: 45%; left: 5%; border-color: rgba(212, 168, 75, 0.4); animation: spotlight-chip-float 7s ease-in-out infinite 3s; }
.spotlight-chip--6 { width: 48px; height: 48px; top: 60%; right: 8%; animation: spotlight-chip-float-2 9s ease-in-out infinite 2.5s; }
.spotlight-chip--7 { width: 32px; height: 32px; top: 18%; right: 25%; border-color: rgba(212, 168, 75, 0.35); animation: spotlight-chip-float 10s ease-in-out infinite 1.5s; }
.spotlight-chip--8 { width: 42px; height: 42px; bottom: 40%; right: 22%; animation: spotlight-chip-float-2 8s ease-in-out infinite 0.8s; }
.spotlight-chip--9 { width: 38px; height: 38px; top: 35%; left: 22%; animation: spotlight-chip-float 8.5s ease-in-out infinite 2.2s; }
.spotlight-chip--10 { width: 46px; height: 46px; bottom: 22%; left: 18%; border-color: rgba(212, 168, 75, 0.5); animation: spotlight-chip-float-2 9.5s ease-in-out infinite 1.8s; }
.section-spotlight::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  max-width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(212, 168, 75, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: spotlight-glow-pulse 4s ease-in-out infinite;
}
.section-spotlight .l-wrapper {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--spacing-xl);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .section-spotlight .l-wrapper { grid-template-columns: 1fr; text-align: center; }
}
.spotlight__title {
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  color: var(--cream);
  margin-bottom: var(--spacing-md);
  line-height: 1.2;
}
.spotlight__title .highlight {
  color: var(--accent-gold);
}
.spotlight__text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: var(--spacing-lg);
}
.spotlight__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
}
@media (max-width: 768px) {
  .spotlight__actions { justify-content: center; }
}

/* Buttons */
.m-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  padding: 14px 26px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-decoration: none;
}
.m-btn--primary {
  background: linear-gradient(135deg, var(--accent-gold), #b8923a);
  color: var(--bg-page);
}
.m-btn--primary:hover {
  background: linear-gradient(135deg, var(--accent-gold-light), var(--accent-gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 75, 0.35);
}
.m-btn--secondary {
  background: transparent;
  color: var(--accent-gold);
  border: 2px solid var(--accent-gold);
}
.m-btn--secondary:hover {
  background: rgba(212, 168, 75, 0.1);
  color: var(--accent-gold-light);
  border-color: var(--accent-gold-light);
  transform: translateY(-2px);
}
.m-btn--sm {
  padding: 10px 18px;
  font-size: 0.88rem;
}

/* ===== BLOCK 3: Offers ===== */
.section-offers {
  padding: var(--spacing-xl) 0;
  background: var(--bg-dark);
}
.section-offers .section__title {
  text-align: center;
  margin-bottom: var(--spacing-lg);
  color: var(--cream);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
}
.offers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}
.m-offer-tile {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-right: 4px solid var(--accent-gold);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
}
.m-offer-tile:hover {
  border-right-color: var(--accent-gold-light);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}
.m-offer-tile__header {
  padding: var(--spacing-md) var(--spacing-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  background: rgba(0,0,0,0.2);
  border-bottom: 1px solid var(--border-subtle);
}
.m-offer-tile__brand {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}
.m-offer-tile__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  object-fit: contain;
}
.m-offer-tile__logo-text {
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--cream);
}
.m-offer-tile__badge {
  background: var(--accent-gold);
  color: var(--bg-page);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}
.m-offer-tile__body {
  padding: var(--spacing-md) var(--spacing-lg);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}
.m-offer-tile__rating {
  display: inline-flex;
  align-items: baseline;
  font-weight: 700;
  font-size: 1rem;
  color: var(--accent-gold);
  margin-bottom: var(--spacing-xs);
}
.m-offer-tile__rating-max {
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.m-offer-tile__title { font-size: 1.1rem; margin-bottom: 0; color: var(--cream); }
.m-offer-tile__desc { color: var(--text-muted); font-size: 0.88rem; line-height: 1.55; margin-bottom: 0; }
.m-offer-tile__bonus { color: var(--accent-gold-light); font-weight: 600; font-size: 0.88rem; margin-top: var(--spacing-xs); }
.m-offer-tile__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  padding: 0 var(--spacing-lg) var(--spacing-lg);
}
.m-offer-tile__actions .m-btn { flex: 1; min-width: 110px; }

/* ===== BLOCK 4: Blog preview ===== */
.section-articles-preview {
  padding: var(--spacing-xl) 0;
  background: var(--bg-page);
  border-top: 1px solid var(--border-subtle);
}
.section-articles-preview .section__title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: var(--cream);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
}
.articles-preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-md);
}
@media (max-width: 900px) {
  .articles-preview-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .articles-preview-grid { grid-template-columns: 1fr; }
}
.m-article-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  min-height: 120px;
  color: inherit;
}
.m-article-card:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  transform: translateY(-3px);
}
.m-article-card__img-wrap {
  height: 56px;
  background: linear-gradient(135deg, rgba(212, 168, 75, 0.2), rgba(212, 168, 75, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
.m-article-card__body {
  padding: var(--spacing-sm) var(--spacing-md);
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.m-article-card__title {
  font-size: 0.95rem;
  margin-bottom: var(--spacing-xs);
  color: var(--cream);
  line-height: 1.35;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}
.m-article-card__meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== BLOCK 5: FAQ ===== */
.section-faq {
  padding: var(--spacing-xl) 0;
  background: var(--bg-dark);
}
.section-faq .section__title {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  color: var(--cream);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
}
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}
.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  transition: var(--transition-smooth);
}
.faq-item:hover {
  border-color: rgba(212, 168, 75, 0.4);
}
.faq-item.is-open {
  border-color: var(--accent-gold);
  box-shadow: 0 4px 20px rgba(212, 168, 75, 0.15);
}
.faq-item__question {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  text-align: left;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--cream);
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-sm);
}
.faq-item.is-open .faq-item__question { color: var(--accent-gold); }
.faq-item__question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-gold);
  flex-shrink: 0;
  transition: transform var(--transition-smooth);
}
.faq-item.is-open .faq-item__question::after {
  transform: rotate(45deg);
}
.faq-item__answer {
  padding: 0 var(--spacing-lg);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth);
}
.faq-item__answer-inner {
  padding: 0 0 var(--spacing-md);
  padding-top: 2px;
  border-top: 1px solid var(--border-subtle);
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.95rem;
}

/* ===== Disclaimer ===== */
.section-disclaimer {
  background: var(--bg-dark);
  color: var(--text-muted);
  padding: var(--spacing-xl) var(--spacing-lg);
  border-top: 1px solid var(--border-subtle);
  text-align: center;
}
.section-disclaimer .l-wrapper {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  background: #143834;
  border: 1px solid #d4a84b;
  border-radius: var(--radius-md);
  text-align: center;
}
.section-disclaimer p { margin: 0 0 var(--spacing-xs); font-size: 0.95rem; }
.section-disclaimer p:last-child { margin-bottom: 0; }
.section-disclaimer a { color: var(--accent-gold); text-decoration: underline; }
.section-disclaimer a:hover { color: var(--accent-gold-light); }

/* Footer */
.c-footer {
  background: var(--bg-dark);
  color: var(--text-muted);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  border-top: 1px solid var(--border-subtle);
}
.c-footer__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-lg);
}
.c-footer__legal,
.c-footer__brand,
.c-footer__nav {
  width: 100%;
  /* max-width: 360px; */
  text-align: center;
}
.c-footer__compliance {
  width: 100%;
  max-width: 1200px;
  margin-top: 20px;
  text-align: center;
}
.c-footer__legal .c-footer__links,
.c-footer__nav .c-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-xs) var(--spacing-lg);
}
.c-footer__legal .c-footer__links li,
.c-footer__nav .c-footer__links li {
  margin-bottom: 0;
}
.c-footer__logo {
  display: inline-block;
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cream);
  text-decoration: none;
  margin-bottom: var(--spacing-sm);
}
.c-footer__logo span { color: var(--accent-gold); }
.c-footer__logo:hover { color: var(--accent-gold-light); }
.c-footer__section h4 {
  color: var(--cream);
  font-size: 0.9rem;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: 'DM Sans', sans-serif;
}
.c-footer__section p { font-size: 0.88rem; margin: 0 0 var(--spacing-sm); }
.c-footer__links { list-style: none; margin: 0; padding: 0; }
.c-footer__links li { margin-bottom: var(--spacing-xs); }
.c-footer__links a { color: var(--text-muted); }
.c-footer__links a:hover { color: var(--accent-gold); }
.c-footer__compliance {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--spacing-md) var(--spacing-lg);
  padding: var(--spacing-md) var(--spacing-lg);
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--accent-gold);
  justify-content: center;
  text-align: center;
}
.c-footer__compliance h4 { width: 100%; margin-bottom: 0; font-size: 0.85rem; }
.c-footer__compliance .age-restriction { order: 0; }
.c-footer__compliance .compliance-logos-grid { order: 1; }
.c-footer__compliance .help-resources { order: 2; width: 100%; margin: 0; font-size: 0.82rem; }
.compliance-logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  align-items: center;
  justify-content: center;
}
.compliance-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
}
.compliance-logo[src*=".png"] {
  background: rgba(255,255,255,0.95);
  padding: 5px;
  border-radius: var(--radius-sm);
}
.compliance-logo[src*="raig-logo"] {
  background: none;
  padding: 0;
  border-radius: 0;
}
.compliance-logo[src*="gordon-moody"] { height: 44px; }
.age-restriction {
  display: inline-block;
  background: var(--accent-gold);
  color: var(--bg-page);
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.85rem;
}
.c-footer__bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--border-subtle);
  font-size: 0.85rem;
  color: var(--text-muted);
}
.c-footer__bottom a { color: var(--accent-gold); }

/* Modals */
.age-modal,
.cookie-consent {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  opacity: 1;
  visibility: visible;
  transition: var(--transition-smooth);
}
.age-modal.is-hidden,
.cookie-consent.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.age-modal__content,
.cookie-consent__content {
  background: var(--bg-card);
  max-width: 420px;
  width: 90%;
  padding: var(--spacing-lg);
  border-radius: var(--radius-md);
  border: 1px solid var(--accent-gold);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  text-align: center;
}
.age-modal__content h2,
.cookie-consent__content p { margin-bottom: var(--spacing-md); color: var(--cream); }
.age-modal__buttons,
.cookie-consent__buttons {
  display: flex;
  gap: var(--spacing-sm);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--spacing-lg);
}
.age-warning { font-size: 0.85rem; color: var(--text-muted); margin-top: var(--spacing-md); }
.cookie-consent {
  align-items: flex-end;
  justify-content: flex-end;
  padding: var(--spacing-md);
}
.cookie-consent__content {
  max-width: 380px;
  text-align: left;
}

/* Page hero (inner pages) – chips bg in first block */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-height) + var(--spacing-xl));
  padding-bottom: var(--spacing-lg);
  background: var(--bg-page);
  overflow: hidden;
}
.page-hero .spotlight-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.page-hero .l-wrapper {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.page-hero__title { font-size: clamp(1.7rem, 4vw, 2.4rem); margin-bottom: var(--spacing-xs); color: var(--cream); }
.page-hero__sub { color: var(--text-muted); }

/* Bookmaker cards (top-bookmakers page) */
.bookmaker-cards { display: flex; flex-direction: column; gap: var(--spacing-md); }
.b-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  border-left: 4px solid var(--accent-gold);
  padding: var(--spacing-lg);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: var(--spacing-md);
  align-items: center;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .b-card { grid-template-columns: 1fr; }
}
.b-card__logo-wrap { display: flex; align-items: center; gap: var(--spacing-sm); flex-wrap: wrap; }
.b-card__logo { width: 48px; height: 48px; object-fit: contain; }
.b-card__badge { background: var(--accent-gold); color: var(--bg-page); font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-full); }
.b-card__content { min-width: 0; }
.b-card__title { font-size: 1.15rem; margin: 0 0 var(--spacing-xs); color: var(--cream); }
.b-card__desc { color: var(--text-muted); font-size: 0.9rem; margin: 0 0 var(--spacing-xs); line-height: 1.5; }
.b-card__bonus { color: var(--accent-gold-light); font-weight: 600; font-size: 0.88rem; margin: 0; }
.b-card__actions { display: flex; gap: var(--spacing-sm); flex-wrap: wrap; }

/* Blog page */
.blog-layout .section__title { text-align: left; margin-bottom: var(--spacing-md); }
.blog-filters { display: flex; flex-wrap: wrap; gap: var(--spacing-sm); margin-bottom: var(--spacing-lg); }
.m-btn--filter {
  background: var(--bg-card);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
}
.m-btn--filter:hover,
.m-btn--filter.is-active {
  background: rgba(212, 168, 75, 0.15);
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: var(--spacing-md); }
.blog-card { background: var(--bg-card); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border-subtle); transition: var(--transition-smooth); }
.blog-card:hover { border-color: var(--accent-gold); box-shadow: 0 12px 36px rgba(0,0,0,0.25); }
.blog-card a { color: inherit; display: block; }
.blog-card__thumb { height: 120px; background: linear-gradient(135deg, rgba(212,168,75,0.2), rgba(212,168,75,0.08)); display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.blog-card__body { padding: var(--spacing-md); }
.blog-card__cat { font-size: 0.75rem; color: var(--accent-gold); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: var(--spacing-xs); display: block; }
.blog-card__title { font-size: 1rem; margin: 0 0 var(--spacing-xs); color: var(--cream); line-height: 1.35; font-family: 'DM Sans', sans-serif; font-weight: 600; }
.blog-card__excerpt { font-size: 0.88rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

/* Article content */
.article-content { max-width: 720px; margin: 0 auto; padding-top: 20px; }
.article-content h2 { margin-top: var(--spacing-lg); margin-bottom: var(--spacing-sm); color: var(--cream); }
.article-content p { margin-bottom: var(--spacing-md); color: var(--text-muted); line-height: 1.65; }
.article-content a { color: var(--accent-gold); }

/* Account page */
.account-tabs { display: flex; gap: var(--spacing-sm); margin-bottom: var(--spacing-lg); flex-wrap: wrap; justify-content: center; }
.account-panel { display: none; }
.account-panel.is-active { display: block; }
.account-panel[hidden] { display: none !important; }
.account-form label { display: block; font-weight: 600; margin-bottom: var(--spacing-xs); color: var(--cream); }
.account-form input,
.account-form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: var(--spacing-md);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg-card);
  color: var(--text-primary);
}
.account-form input:focus,
.account-form textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 2px rgba(212, 168, 75, 0.2);
}
.account-form textarea { resize: vertical; min-height: 100px; }
.account-result-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-smooth), visibility var(--transition-smooth);
}
.account-result-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.account-result-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
}
.account-result-modal__content {
  position: relative;
  background: var(--bg-card);
  padding: var(--spacing-xl);
  border-radius: var(--radius-md);
  border: 1px solid var(--accent-gold);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  max-width: 380px;
  width: 100%;
  text-align: center;
}
.account-result-modal__content h3 { margin-bottom: var(--spacing-sm); color: var(--cream); }
.account-result-modal__content p { margin-bottom: var(--spacing-lg); color: var(--text-muted); }
.account-result-modal__close { min-width: 120px; }
