/* ============================================
   WILLIAM HILL APUESTAS — styles.css
   ============================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Barlow', 'Arial', sans-serif;
  background-color: #060A2A;
  color: #FFFCFF;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
details { cursor: pointer; }

/* ---- CSS VARIABLES ---- */
:root {
  --gold-light: #FCE1A5;
  --gold-mid: #BCA979;
  --white: #FFFCFF;
  --navy: #060A2A;
  --navy-mid: #0A1040;
  --navy-light: #111850;
  --navy-card: #0E1545;
  --accent: #FCE1A5;
  --accent-dark: #BCA979;
  --border: rgba(252,225,165,0.18);
  --shadow-gold: 0 4px 32px rgba(252,225,165,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --container: 1200px;
  --header-h: 68px;
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
}

/* ---- CONTAINER ---- */
.section-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  width: 100%;
}

/* ---- TYPOGRAPHY ---- */
.section-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  background: linear-gradient(90deg, var(--gold-light), var(--gold-mid));
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.section-tag--light {
  color: var(--navy);
}
.section-tag--gold {
  background: linear-gradient(90deg, #FFD700, var(--gold-mid));
  color: var(--navy);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 16px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.section-title .highlight {
  color: var(--gold-light);
  background: linear-gradient(90deg, var(--gold-light), var(--gold-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: clamp(0.95rem, 2vw, 1.08rem);
  color: rgba(255,252,255,0.72);
  max-width: 680px;
  margin: 0 auto;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-height: 48px;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
  overflow-wrap: anywhere;
  word-break: break-word;
  text-align: center;
  line-height: 1.2;
}

.btn--primary {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-mid) 100%);
  color: var(--navy);
  box-shadow: 0 6px 24px rgba(252,225,165,0.35), 0 2px 8px rgba(0,0,0,0.3);
  border: 2px solid rgba(252,225,165,0.5);
}
.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 36px rgba(252,225,165,0.5), 0 4px 12px rgba(0,0,0,0.3);
  filter: brightness(1.06);
}
.btn--primary:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: 0 4px 16px rgba(252,225,165,0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid var(--gold-light);
  box-shadow: 0 2px 12px rgba(252,225,165,0.12);
}
.btn--ghost:hover {
  background: rgba(252,225,165,0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(252,225,165,0.22);
}
.btn--ghost:active {
  transform: translateY(0);
}

.btn--lg { font-size: 1.05rem; padding: 16px 36px; min-height: 52px; }
.btn--xl { font-size: 1.15rem; padding: 18px 42px; min-height: 56px; border-radius: 10px; }

/* ---- MEDIA WRAPPER ---- */
.media {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--navy-mid);
  line-height: 0;
}
.media img {
  max-width: 100%;
  height: auto;
  width: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.4s ease;
}
.media:hover img { transform: scale(1.03); }

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(6,10,42,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}

.header__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
}

.header__logo { display: flex; align-items: center; flex-shrink: 0; }
.header__logo-img { height: 40px; width: auto; max-width: 160px; object-fit: contain; }

.header__nav { display: flex; align-items: center; }
.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(8px, 2vw, 28px);
  flex-wrap: nowrap;
  white-space: nowrap;
}

.header__nav-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,252,255,0.82);
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.header__nav-link:hover { color: var(--gold-light); border-bottom-color: var(--gold-light); }
.header__nav-link--cta {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid));
  color: var(--navy) !important;
  padding: 8px 18px;
  border-radius: 6px;
  border: none !important;
  font-weight: 900;
  box-shadow: 0 2px 12px rgba(252,225,165,0.3);
}
.header__nav-link--cta:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(252,225,165,0.45);
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.header__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--gold-light);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Burger active */
.header__burger.is-active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.header__burger.is-active span:nth-child(2) { opacity: 0; }
.header__burger.is-active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 768px) {
  .header__burger { display: flex; }
  .header__nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(6,10,42,0.98);
    border-bottom: 1px solid var(--border);
    padding: 16px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    backdrop-filter: blur(16px);
  }
  .header__nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    white-space: normal;
  }
  .header__nav-link {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    border-bottom: none !important;
    background: rgba(252,225,165,0.05);
  }
  .header__nav-link--cta { text-align: center; }
}

@media (max-width: 480px) {
  .header__logo-img { height: 32px; max-width: 130px; }
}

/* ============================================
   HERO
   ============================================ */
.hero { position: relative; background: var(--navy); overflow: hidden; }

.hero__image-wrap {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  max-height: 540px;
}
.hero__img-link { display: block; }
.hero__img {
  width: 100%;
  height: auto;
  max-height: 540px;
  object-fit: cover;
  display: block;
}

.hero__content {
  background: linear-gradient(180deg, rgba(6,10,42,0.0) 0%, rgba(6,10,42,0.92) 30%, #060A2A 100%);
  padding: clamp(24px, 5vw, 72px) 0 clamp(48px, 8vw, 96px);
  position: relative;
}

.hero__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  text-align: center;
}

.hero__brand-tag {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--gold-mid);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero__bonus {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 8vw, 6rem);
  letter-spacing: 0.03em;
  line-height: 1.0;
  background: linear-gradient(135deg, #FFE88A 0%, var(--gold-light) 40%, var(--gold-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 32px;
  text-shadow: none;
  overflow-wrap: anywhere;
  word-break: break-word;
  filter: drop-shadow(0 4px 24px rgba(252,225,165,0.28));
}

.hero__cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  .hero__cta-group { flex-direction: column; align-items: stretch; }
  .hero__cta-group .btn { width: 100%; }
  .hero__image-wrap { max-height: 260px; }
  .hero__img { max-height: 260px; }
}

/* ============================================
   ADVANTAGES
   ============================================ */
.advantages {
  padding: clamp(48px, 8vw, 96px) 0;
  background: var(--navy-mid);
  position: relative;
}
.advantages::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(252,225,165,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.advantage-card {
  display: block;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  min-width: 0;
}
.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(252,225,165,0.4);
}

.advantage-card__icon {
  font-size: 2.2rem;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}

.advantage-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}

.advantage-card__text {
  font-size: 0.92rem;
  color: rgba(255,252,255,0.7);
  line-height: 1.55;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 900px) { .advantages__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 540px) { .advantages__grid { grid-template-columns: minmax(0, 1fr); gap: 16px; } }

/* ============================================
   PROMO
   ============================================ */
.promo {
  padding: clamp(48px, 8vw, 96px) 0;
  background: linear-gradient(135deg, #060A2A 0%, #0D1550 50%, #060A2A 100%);
  position: relative;
  overflow: hidden;
}
.promo::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(252,225,165,0.08) 0%, transparent 70%);
  top: -200px;
  right: -100px;
  pointer-events: none;
}

.promo__inner {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 48px;
  align-items: center;
}

.promo__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.0;
  background: linear-gradient(135deg, #FFE88A, var(--gold-light), var(--gold-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  overflow-wrap: anywhere;
}

.promo__desc {
  color: rgba(255,252,255,0.78);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 24px;
  overflow-wrap: anywhere;
}

.promo__list {
  list-style: none;
  margin-bottom: 32px;
}
.promo__list li {
  padding: 8px 0;
  font-size: 0.95rem;
  color: rgba(255,252,255,0.82);
  border-bottom: 1px solid rgba(252,225,165,0.08);
  overflow-wrap: anywhere;
}
.promo__list li:last-child { border-bottom: none; }

.promo__media { position: relative; min-width: 0; }
.promo__img { border-radius: var(--radius-lg); width: 100%; }

.promo__badge-wrap {
  position: absolute;
  bottom: -20px;
  right: -10px;
}
.promo__badge {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid));
  color: var(--navy);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(252,225,165,0.4);
  min-width: 110px;
}
.promo__badge-amount {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--navy);
}
.promo__badge-label {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(6,10,42,0.8);
}

@media (max-width: 768px) {
  .promo__inner { grid-template-columns: minmax(0,1fr); gap: 36px; }
  .promo__badge-wrap { position: static; margin-top: 16px; display: flex; justify-content: flex-end; }
}

/* ============================================
   HOW TO START
   ============================================ */
.howto {
  padding: clamp(48px, 8vw, 96px) 0;
  background: var(--navy);
}

.steps__grid {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto minmax(0,1fr) auto minmax(0,1fr);
  gap: 16px;
  align-items: start;
  margin-bottom: 40px;
}

.step-card {
  display: block;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  min-width: 0;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(252,225,165,0.4);
}

.step-card__number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: block;
}
.step-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}
.step-card__text {
  font-size: 0.9rem;
  color: rgba(255,252,255,0.68);
  line-height: 1.6;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.steps__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-mid);
  font-size: 1.4rem;
  padding-top: 64px;
  flex-shrink: 0;
}

.howto__cta { text-align: center; }

@media (max-width: 860px) {
  .steps__grid { grid-template-columns: minmax(0,1fr); }
  .steps__connector { padding: 0; transform: rotate(90deg); font-size: 1rem; }
}

/* ============================================
   SPORTS
   ============================================ */
.sports {
  padding: clamp(48px, 8vw, 96px) 0;
  background: var(--navy-mid);
}

.sports__layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: 48px;
  align-items: start;
}

.sports__media { min-width: 0; }
.sports__img { border-radius: var(--radius-lg); width: 100%; }

.sports__list { margin-bottom: 28px; display: flex; flex-direction: column; gap: 12px; }

.sport-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  transition: border-color var(--transition), transform var(--transition);
  min-width: 0;
}
.sport-item:hover {
  border-color: rgba(252,225,165,0.38);
  transform: translateX(4px);
}
.sport-item__icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; margin-top: 2px; }
.sport-item strong {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.sport-item p { font-size: 0.88rem; color: rgba(255,252,255,0.65); line-height: 1.5; overflow-wrap: anywhere; }

@media (max-width: 768px) {
  .sports__layout { grid-template-columns: minmax(0,1fr); }
}

/* ============================================
   CASINO
   ============================================ */
.casino {
  padding: clamp(48px, 8vw, 96px) 0;
  background: linear-gradient(135deg, #060A2A 0%, #0B1240 50%, #060A2A 100%);
}

.casino__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.casino-card {
  display: block;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  min-width: 0;
}
.casino-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(252,225,165,0.15);
  border-color: rgba(252,225,165,0.38);
}

.casino-card__media {
  border-radius: 0;
  border: none;
  overflow: hidden;
  line-height: 0;
}
.casino-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.casino-card:hover .casino-card__img { transform: scale(1.05); }

.casino-card__body { padding: 20px 22px 24px; }
.casino-card__title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}
.casino-card__text {
  font-size: 0.9rem;
  color: rgba(255,252,255,0.68);
  line-height: 1.55;
  margin-bottom: 16px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.casino-card__cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--gold-mid);
  letter-spacing: 0.08em;
  transition: color var(--transition);
}
.casino-card:hover .casino-card__cta { color: var(--gold-light); }

.casino__info {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.casino__info p { font-size: 0.95rem; color: rgba(255,252,255,0.72); line-height: 1.65; overflow-wrap: anywhere; }
.casino__info strong { color: var(--gold-light); }

@media (max-width: 640px) { .casino__grid { grid-template-columns: minmax(0,1fr); } }

/* ============================================
   MOBILE APP
   ============================================ */
.mobile-app {
  padding: clamp(48px, 8vw, 96px) 0;
  background: var(--navy-mid);
}

.mobile-app__features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.app-feature {
  display: block;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  min-width: 0;
}
.app-feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(252,225,165,0.36);
}
.app-feature__icon { font-size: 2rem; display: block; margin-bottom: 12px; line-height: 1; }
.app-feature h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}
.app-feature p { font-size: 0.87rem; color: rgba(255,252,255,0.65); line-height: 1.55; overflow-wrap: anywhere; word-break: break-word; }

.mobile-app__cta-wrap { text-align: center; }

@media (max-width: 900px) { .mobile-app__features { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 540px) { .mobile-app__features { grid-template-columns: minmax(0,1fr); } }

/* ============================================
   PAYMENTS
   ============================================ */
.payments {
  padding: clamp(48px, 8vw, 96px) 0;
  background: var(--navy);
}

.payments__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.payment-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 12px;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  min-width: 0;
}
.payment-card:hover {
  transform: translateY(-4px);
  border-color: rgba(252,225,165,0.36);
  box-shadow: var(--shadow-gold);
}
.payment-card__icon { font-size: 2rem; line-height: 1; }
.payment-card__name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  overflow-wrap: anywhere;
}
.payment-card__detail { font-size: 0.75rem; color: rgba(255,252,255,0.5); overflow-wrap: anywhere; }

.payments__note {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.payments__note p { font-size: 0.9rem; color: rgba(255,252,255,0.65); line-height: 1.6; overflow-wrap: anywhere; }

@media (max-width: 900px) { .payments__grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 480px) { .payments__grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }

/* ============================================
   SUPPORT
   ============================================ */
.support {
  padding: clamp(48px, 8vw, 96px) 0;
  background: var(--navy-mid);
}

.support__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.support-card {
  display: block;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  min-width: 0;
}
.support-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(252,225,165,0.4);
}
.support-card__icon { font-size: 2.4rem; display: block; margin-bottom: 14px; line-height: 1; }
.support-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 10px;
  overflow-wrap: anywhere;
}
.support-card p { font-size: 0.9rem; color: rgba(255,252,255,0.68); line-height: 1.55; margin-bottom: 14px; overflow-wrap: anywhere; }
.support-card__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  background: rgba(252,225,165,0.12);
  color: var(--gold-light);
  padding: 4px 12px;
  border-radius: 20px;
  border: 1px solid rgba(252,225,165,0.2);
}

.support__responsible {
  background: var(--navy-card);
  border: 1px solid rgba(252,225,165,0.18);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  text-align: center;
}
.support__responsible h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 16px;
  overflow-wrap: anywhere;
}
.support__responsible p {
  font-size: 0.95rem;
  color: rgba(255,252,255,0.72);
  line-height: 1.65;
  margin-bottom: 24px;
  overflow-wrap: anywhere;
}
.support__responsible strong { color: var(--gold-light); }

@media (max-width: 768px) { .support__grid { grid-template-columns: minmax(0,1fr); } }
@media (max-width: 540px) { .support__responsible { padding: 24px 20px; } }

/* ============================================
   FAQ
   ============================================ */
.faq {
  padding: clamp(48px, 8vw, 96px) 0;
  background: var(--navy);
}

.faq__list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq__item {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq__item[open] { border-color: rgba(252,225,165,0.38); }

.faq__question {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  padding: 18px 22px;
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color var(--transition);
  overflow-wrap: anywhere;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold-light);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq__item[open] .faq__question::after { transform: rotate(45deg); }
.faq__question:hover { color: var(--gold-light); }

.faq__answer {
  padding: 0 22px 20px;
  border-top: 1px solid rgba(252,225,165,0.08);
}
.faq__answer p { font-size: 0.93rem; color: rgba(255,252,255,0.7); line-height: 1.65; padding-top: 14px; overflow-wrap: anywhere; word-break: break-word; }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: clamp(64px, 10vw, 120px) 0;
  background: linear-gradient(135deg, #060A2A 0%, #0F1850 50%, #060A2A 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(252,225,165,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.final-cta__inner { position: relative; z-index: 1; }

.final-cta__badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--navy);
  background: linear-gradient(90deg, var(--gold-light), var(--gold-mid));
  padding: 6px 18px;
  border-radius: 4px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.final-cta__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  line-height: 1.0;
  background: linear-gradient(135deg, #FFE88A, var(--gold-light), var(--gold-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  overflow-wrap: anywhere;
  filter: drop-shadow(0 4px 24px rgba(252,225,165,0.28));
}

.final-cta__sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255,252,255,0.72);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.final-cta__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.final-cta__media {
  max-width: 600px;
  margin: 0 auto 28px;
}
.final-cta__img { border-radius: var(--radius-lg); width: 100%; }

.final-cta__disclaimer {
  font-size: 0.78rem;
  color: rgba(255,252,255,0.38);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

@media (max-width: 480px) {
  .final-cta__buttons { flex-direction: column; align-items: stretch; }
  .final-cta__buttons .btn { width: 100%; }
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #020618;
  border-top: 1px solid var(--border);
  padding-top: clamp(40px, 6vw, 72px);
}

.footer__container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(252,225,165,0.1);
}

.footer__logo { height: 44px; width: auto; max-width: 160px; margin-bottom: 16px; object-fit: contain; }
.footer__brand-desc { font-size: 0.88rem; color: rgba(255,252,255,0.52); line-height: 1.65; margin-bottom: 20px; overflow-wrap: anywhere; }

.footer__badges { display: flex; flex-wrap: wrap; gap: 8px; }
.footer__badge {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  background: rgba(252,225,165,0.1);
  color: var(--gold-mid);
  border: 1px solid rgba(252,225,165,0.2);
  padding: 4px 10px;
  border-radius: 4px;
}

.footer__nav-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 16px;
}
.footer__nav-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__nav-col a {
  font-size: 0.88rem;
  color: rgba(255,252,255,0.52);
  transition: color var(--transition);
  overflow-wrap: anywhere;
}
.footer__nav-col a:hover { color: var(--gold-light); }

.footer__bottom { padding: 28px 0 clamp(20px, 4vw, 40px); }
.footer__legal {
  font-size: 0.78rem;
  color: rgba(255,252,255,0.35);
  line-height: 1.65;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.footer__legal strong { color: rgba(255,252,255,0.5); }
.footer__copy {
  font-size: 0.78rem;
  color: rgba(255,252,255,0.32);
  overflow-wrap: anywhere;
}
.footer__copy a { color: rgba(252,225,165,0.5); }
.footer__copy a:hover { color: var(--gold-light); }

@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer__top { grid-template-columns: minmax(0,1fr); gap: 28px; }
}

/* ============================================
   CATFISH
   ============================================ */
.catfish {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(90deg, #0A1040 0%, #101A60 100%);
  border-top: 2px solid var(--gold-mid);
  padding: clamp(10px, 2vw, 14px) 16px;
  padding-bottom: calc(clamp(10px, 2vw, 14px) + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  max-width: 100%;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.catfish.is-hidden { transform: translateY(100%); opacity: 0; pointer-events: none; }

.catfish__inner {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  flex: 1;
  flex-wrap: wrap;
  min-width: 0;
}
.catfish__text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 700;
  color: var(--gold-light);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: min(480px, calc(100% - 160px));
  letter-spacing: 0.02em;
}
.catfish__cta { flex-shrink: 0; white-space: nowrap; font-size: 0.9rem; padding: 10px 20px; min-height: 40px; }
.catfish__close {
  background: none;
  border: none;
  color: rgba(255,252,255,0.45);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
  line-height: 1;
  transition: color var(--transition);
}
.catfish__close:hover { color: var(--gold-light); }

/* ============================================
   EXIT POPUP
   ============================================ */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.exit-popup.is-active { display: flex; }

.exit-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(6,10,42,0.88);
  backdrop-filter: blur(6px);
  cursor: pointer;
}
.exit-popup__box {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #0D1550, #0A1040);
  border: 1px solid rgba(252,225,165,0.3);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 5vw, 52px) clamp(24px, 5vw, 52px);
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.6), 0 0 60px rgba(252,225,165,0.08);
}
.exit-popup__close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: rgba(255,252,255,0.6);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.exit-popup__close:hover { background: rgba(252,225,165,0.15); color: var(--gold-light); }
.exit-popup__badge {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  background: linear-gradient(90deg, var(--gold-light), var(--gold-mid));
  color: var(--navy);
  padding: 5px 14px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.exit-popup__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.2rem;
  color: var(--white);
  margin-bottom: 16px;
}
.exit-popup__bonus {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  line-height: 1.1;
  background: linear-gradient(135deg, #FFE88A, var(--gold-light), var(--gold-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  overflow-wrap: anywhere;
}
.exit-popup__sub {
  font-size: 0.92rem;
  color: rgba(255,252,255,0.65);
  margin-bottom: 28px;
  line-height: 1.55;
}
.exit-popup__cta { width: 100%; }

/* ============================================
   UTILITY / RESPONSIVE FIXES
   ============================================ */
*, *::before, *::after {
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

/* Section padding bottom when catfish visible */
body { padding-bottom: 72px; }

@media (max-width: 480px) {
  body { padding-bottom: 84px; }
  .btn--xl { font-size: 1rem; padding: 16px 24px; }
  .btn { width: 100%; }
  .section-header { margin-bottom: 32px; }
  .faq__question { font-size: 0.97rem; padding: 16px 16px; }
  .faq__answer { padding: 0 16px 16px; }
  .support__responsible { padding: 20px 16px; }
}
/* ============================================================
   WILLIAM HILL APUESTAS — DGOJ / RGIAJ / Tax / Bono Context
   Namespace: williamhill-context__
   Page palette: #060A2A (navy bg), #0E1545 (card), #FCE1A5 (gold-light),
                 #BCA979 (gold-mid), #FFFCFF (text)
   ============================================================ */

.williamhill-context__section {
  background:
    radial-gradient(900px 500px at 90% 0%, rgba(252, 225, 165, 0.05), transparent 60%),
    linear-gradient(180deg, #0A1040 0%, #060A2A 100%);
  padding: 4rem 0;
  color: #FFFCFF;
  font-family: 'Barlow', 'Arial', sans-serif;
  line-height: 1.65;
}

.williamhill-context__container {
  width: 100%;
  max-width: 75rem; /* 1200px */
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 3rem);
}

/* ---- Headings ---- */
.williamhill-context__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, #FFE88A, #FCE1A5, #BCA979);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  filter: drop-shadow(0 4px 24px rgba(252, 225, 165, 0.18));
  overflow-wrap: anywhere;
  word-break: break-word;
}

.williamhill-context__h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.1rem, 2.3vw, 1.5rem);
  font-weight: 800;
  color: #FCE1A5;
  margin: 0 0 0.85rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
  border-left: 3px solid #FCE1A5;
  padding-left: 0.85rem;
  text-transform: uppercase;
}

.williamhill-context__h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #FFFCFF;
  margin: 1.1rem 0 0.55rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ---- Lead block ---- */
.williamhill-context__lead {
  background: #0E1545;
  border: 1px solid rgba(252, 225, 165, 0.18);
  border-left: 3px solid #FCE1A5;
  border-radius: 0.875rem;
  padding: 1.5rem 1.6rem;
  margin: 0 auto 2rem;
  max-width: 56rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.williamhill-context__lead p {
  font-size: 0.97rem;
  line-height: 1.75;
  color: rgba(255, 252, 255, 0.82);
  margin: 0;
}

/* ---- Articles ---- */
.williamhill-context__article {
  background: #0E1545;
  border: 1px solid rgba(252, 225, 165, 0.14);
  border-radius: 0.875rem;
  padding: 1.6rem 1.5rem;
  margin-bottom: 1.25rem;
  transition: border-color 0.22s cubic-bezier(0.4, 0, 0.2, 1), transform 0.22s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.williamhill-context__article:hover {
  border-color: rgba(252, 225, 165, 0.36);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(252, 225, 165, 0.1);
}

.williamhill-context__article p {
  font-size: 0.94rem;
  line-height: 1.7;
  color: rgba(255, 252, 255, 0.78);
  margin: 0 0 0.85rem;
}

.williamhill-context__article p:last-child { margin-bottom: 0; }

.williamhill-context__article strong {
  color: #FFFCFF;
  font-weight: 700;
}

.williamhill-context__article em {
  color: #FCE1A5;
  font-style: italic;
  font-weight: 600;
}

/* ---- Lists ---- */
.williamhill-context__list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0.85rem;
  counter-reset: wh-counter;
}

.williamhill-context__list li {
  position: relative;
  padding: 0.6rem 0 0.6rem 1.7rem;
  font-size: 0.93rem;
  line-height: 1.7;
  color: rgba(255, 252, 255, 0.78);
  border-bottom: 1px dashed rgba(252, 225, 165, 0.1);
}

.williamhill-context__list li:last-child {
  border-bottom: none;
}

.williamhill-context__list li::before {
  content: "▸";
  position: absolute;
  left: 0.25rem;
  top: 0.6rem;
  color: #FCE1A5;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1;
}

.williamhill-context__list--ordered {
  counter-reset: wh-counter;
}

.williamhill-context__list--ordered li {
  padding-left: 2.6rem;
  counter-increment: wh-counter;
}

.williamhill-context__list--ordered li::before {
  content: counter(wh-counter);
  left: 0;
  top: 0.55rem;
  width: 1.7rem;
  height: 1.7rem;
  background: linear-gradient(135deg, #FCE1A5 0%, #BCA979 100%);
  color: #060A2A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 4px 14px rgba(252, 225, 165, 0.3);
  border: 1px solid rgba(252, 225, 165, 0.5);
}

/* ---- Table ---- */
.williamhill-context__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 0.85rem 0 1rem;
  background: #0A1040;
  border: 1px solid rgba(252, 225, 165, 0.18);
  border-radius: 0.625rem;
  overflow: hidden;
  font-size: 0.9rem;
}

.williamhill-context__table thead {
  background: linear-gradient(135deg, rgba(252, 225, 165, 0.18) 0%, rgba(188, 169, 121, 0.1) 100%);
}

.williamhill-context__table thead th {
  padding: 0.85rem 0.9rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FCE1A5;
  text-align: left;
  border-bottom: 1px solid rgba(252, 225, 165, 0.3);
}

.williamhill-context__table tbody td {
  padding: 0.8rem 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: top;
  line-height: 1.6;
  color: rgba(255, 252, 255, 0.78);
}

.williamhill-context__table tbody tr:nth-child(even) td {
  background: rgba(252, 225, 165, 0.03);
}

.williamhill-context__table tbody tr:last-child td {
  border-bottom: none;
}

.williamhill-context__table td:first-child {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  color: #FFFCFF;
  width: 24%;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

/* ---- Aside ---- */
.williamhill-context__aside {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, rgba(252, 225, 165, 0.12) 0%, rgba(0, 0, 0, 0.2) 100%);
  border-left: 3px solid #FCE1A5;
  border-radius: 0 0.5rem 0.5rem 0;
}

.williamhill-context__aside .williamhill-context__h4 {
  margin-top: 0;
  color: #FCE1A5;
}

.williamhill-context__aside p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ---- Final CTA-style article ---- */
.williamhill-context__article--cta {
  background:
    radial-gradient(700px 240px at 80% 0%, rgba(252, 225, 165, 0.18), transparent 55%),
    linear-gradient(180deg, #0F1850 0%, #0A1040 100%);
  border: 1px solid rgba(252, 225, 165, 0.36);
  text-align: center;
}

.williamhill-context__article--cta .williamhill-context__h3 {
  border-left: none;
  padding-left: 0;
  text-align: center;
  background: linear-gradient(135deg, #FFE88A, #FCE1A5, #BCA979);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.williamhill-context__cta-line {
  margin-top: 0.85rem !important;
  font-size: 0.86rem;
  color: #FCE1A5;
  letter-spacing: 0.03em;
}

/* ============================================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================================ */
@media (max-width: 64em) {
  .williamhill-context__section { padding: 3.25rem 0; }
  .williamhill-context__article { padding: 1.4rem 1.25rem; }
  .williamhill-context__lead { padding: 1.25rem; }
  .williamhill-context__table { font-size: 0.85rem; }
  .williamhill-context__table thead th,
  .williamhill-context__table tbody td { padding: 0.65rem 0.65rem; }
  .williamhill-context__table td:first-child { width: 28%; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤768px)
   ============================================================ */
@media (max-width: 48em) {
  .williamhill-context__section { padding: 2.75rem 0; }
  .williamhill-context__container { padding: 0 1rem; }

  .williamhill-context__title { font-size: 1.5rem; line-height: 1.2; }
  .williamhill-context__h3 {
    font-size: 1.08rem;
    border-left-width: 3px;
    padding-left: 0.7rem;
  }
  .williamhill-context__h4 { font-size: 0.9rem; }

  .williamhill-context__lead { padding: 1.1rem; margin-bottom: 1.5rem; }
  .williamhill-context__lead p { font-size: 0.92rem; line-height: 1.75; }

  .williamhill-context__article { padding: 1.1rem 1rem; margin-bottom: 1rem; }
  .williamhill-context__article p { font-size: 0.92rem; }

  .williamhill-context__list li,
  .williamhill-context__list--ordered li { font-size: 0.92rem; }

  /* Card-style table on mobile */
  .williamhill-context__table {
    border: none;
    background: transparent;
    border-radius: 0;
  }
  .williamhill-context__table thead { display: none; }
  .williamhill-context__table tbody tr {
    display: block;
    margin-bottom: 0.85rem;
    background: #0A1040;
    border: 1px solid rgba(252, 225, 165, 0.18);
    border-left: 3px solid #FCE1A5;
    border-radius: 0.5rem;
    padding: 0.7rem 0.95rem;
  }
  .williamhill-context__table tbody tr:nth-child(even) td {
    background: transparent;
  }
  .williamhill-context__table tbody td {
    display: block;
    border-bottom: 1px dashed rgba(252, 225, 165, 0.12);
    padding: 0.5rem 0;
    font-size: 0.9rem;
    width: 100% !important;
  }
  .williamhill-context__table tbody td:last-child { border-bottom: none; }
  .williamhill-context__table tbody td::before {
    content: attr(data-label);
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    color: #FCE1A5;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.2rem;
    font-weight: 800;
  }

  .williamhill-context__aside { padding: 0.9rem 1rem; }
}

/* ============================================================
   RESPONSIVE — Small (≤480px)
   ============================================================ */
@media (max-width: 30em) {
  .williamhill-context__title { font-size: 1.3rem; }
  .williamhill-context__h3 { font-size: 1rem; }
  .williamhill-context__article { padding: 0.95rem 0.85rem; }
  .williamhill-context__list--ordered li { padding-left: 2.25rem; }
  .williamhill-context__list--ordered li::before { width: 1.5rem; height: 1.5rem; font-size: 0.78rem; }
}

/* ============================================================
   RESPONSIVE — Very small (≤360px)
   ============================================================ */
@media (max-width: 22.5em) {
  .williamhill-context__container { padding: 0 0.85rem; }
  .williamhill-context__title { font-size: 1.15rem; }
  .williamhill-context__article { padding: 0.85rem 0.75rem; }
}