/* lad-brokesbet.uk — palette + type mirrored from the official Ladbrokes identity
   (scarlet #cd1719 sampled from the official wordmark vector, charcoal dark theme). */

:root {
  --ink: #0b0c0e;
  --surface: #15171b;
  --surface-2: #1d2026;
  --surface-3: #262a32;
  --line: #2f343d;
  --text: #f3f4f6;
  --muted: #a4aab5;
  --accent: #cd1719;
  --accent-hot: #ff2f33;
  --gold: #f0b323;
  --green: #2eb872;
  --radius: 4px;
  --wrap: 1180px;
  --font-head: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }

a { color: #ff6b6d; text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.015em;
  margin: 0 0 14px;
}

h1 { font-size: clamp(30px, 4.4vw, 46px); }
h2 { font-size: clamp(24px, 3vw, 31px); margin-top: 46px; }
h3 { font-size: 20px; margin-top: 30px; }

p { margin: 0 0 16px; }

/* ---------- header ---------- */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: #000;
  border-bottom: 3px solid var(--accent);
}
.head-row { display: flex; align-items: center; gap: 18px; min-height: 62px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.brand:hover {
  text-decoration: none;
  transform: translateY(-1px);
  filter: drop-shadow(0 0 8px rgba(255, 47, 51, 0.45));
}
.brand-logo {
  height: 38px;
  width: auto;
  display: block;
}
.head-nav { display: flex; flex-wrap: wrap; gap: 4px 2px; margin-left: auto; }
.head-nav a {
  color: #d8dbe0;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 7px 10px;
  border-radius: var(--radius);
}
.head-nav a:hover { background: #1b1d21; color: #fff; text-decoration: none; }
.head-nav a[aria-current="page"] { background: var(--accent); color: #fff; }
.head-cta {
  background: var(--accent); color: #fff !important;
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  font-size: 13.5px; letter-spacing: 0.05em;
  padding: 9px 16px; border-radius: var(--radius); white-space: nowrap;
}
.head-cta:hover { background: var(--accent-hot); text-decoration: none; }

/* ---------- age strip ---------- */
.age-strip {
  background: #000; color: var(--muted);
  font-size: 12.5px; padding: 7px 0; text-align: center;
  border-bottom: 1px solid #1b1d21;
}
.age-strip b { color: #fff; }

/* ---------- hero ---------- */
.hero {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(100deg, rgba(11,12,14,.96) 0%, rgba(11,12,14,.84) 48%, rgba(205,23,25,.28) 100%),
    var(--surface);
  padding: 38px 0 36px;
}
.hero-grid { display: grid; grid-template-columns: 1.25fr 1fr; gap: 32px; align-items: center; }
.eyebrow {
  font-family: var(--font-head); font-weight: 700; text-transform: uppercase;
  font-size: 12.5px; letter-spacing: 0.14em; color: var(--accent-hot);
  margin: 0 0 10px;
}
.hero p.lede { font-size: 18px; color: #dcdfe4; max-width: 58ch; margin-bottom: 20px; line-height: 1.6; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero-media { position: relative; width: 100%; }
.hero-img-link {
  display: block;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 47, 51, 0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.6), 0 0 20px rgba(205, 23, 25, 0.25);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none !important;
}
.hero-img-link:hover {
  transform: translateY(-3px);
  border-color: var(--accent-hot);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75), 0 0 30px rgba(255, 47, 51, 0.35);
}
.hero-media img {
  width: 100%;
  max-height: 360px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.hero-img-link:hover img { transform: scale(1.03); }
.hero-play-tag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: var(--accent);
  color: #ffffff !important;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  opacity: 0.9;
  transition: opacity 0.2s ease, background 0.2s ease;
}
.hero-img-link:hover .hero-play-tag { opacity: 1; background: var(--accent-hot); }

.hero-offer-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #cd1719, #8f0f11);
  color: #ffffff !important;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.25);
  z-index: 5;
}

/* ---------- hero bonus bar ---------- */
.hero-bonus-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0 20px;
}
.bonus-card-item {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-top: 3px solid var(--accent);
  border-radius: 8px;
  padding: 9px 11px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.bonus-card-item:hover {
  transform: translateY(-2px);
  border-top-color: var(--accent-hot);
  border-color: rgba(255, 47, 51, 0.4);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}
.bonus-card-icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}
.bonus-card-info {
  display: flex;
  flex-direction: column;
}
.bonus-val {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12.5px;
  color: #ffffff;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
.bonus-sub {
  font-size: 10.5px;
  color: var(--gold);
  font-weight: 600;
  margin-top: 2px;
}
.hero-banner-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 47, 51, 0.25);
  border: 1px solid rgba(255, 47, 51, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-banner-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.75), 0 0 35px rgba(255, 47, 51, 0.45);
}
.hero-banner-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.banner-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.55);
  z-index: 5;
  animation: badgeFloat 4s ease-in-out infinite alternate;
}
.badge-icon { font-size: 18px; line-height: 1; }
.badge-text { display: flex; flex-direction: column; }
.badge-text strong {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}
.badge-text small {
  font-size: 9.5px;
  color: #ffd700;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge-spins {
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, rgba(205, 23, 25, 0.92), rgba(120, 10, 12, 0.92));
  border-color: #ff4d4d;
}
.badge-points {
  bottom: 14px;
  left: 12px;
  background: linear-gradient(135deg, rgba(240, 179, 35, 0.94), rgba(180, 120, 10, 0.94));
  border-color: #ffe066;
  animation-delay: 1.5s;
}
.badge-points .badge-text strong { color: #000; text-shadow: none; }
.badge-points .badge-text small { color: #332000; }

.badge-wheel {
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, rgba(20, 24, 32, 0.94), rgba(35, 42, 54, 0.94));
  border-color: rgba(255, 215, 0, 0.6);
  animation-delay: 0.8s;
}

@keyframes badgeFloat {
  0% { transform: translateY(0); }
  100% { transform: translateY(-5px); }
}

.hero-bonus-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 16px 0 20px;
}
.bonus-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-top: 2px solid var(--accent-hot);
  border-radius: 6px;
  padding: 8px 10px;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.bonus-chip:hover {
  background: rgba(255, 47, 51, 0.08);
  border-color: var(--accent-hot);
}
.chip-val {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16.5px;
  color: #ffffff;
  line-height: 1.1;
}
.chip-lbl {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-top: 2px;
  font-weight: 600;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  background: var(--accent); color: #fff !important;
  font-family: var(--font-head); font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em; font-size: 15px;
  padding: 14px 28px; border-radius: var(--radius);
  border-bottom: 3px solid #8f0f11;
}
.btn:hover { background: var(--accent-hot); text-decoration: none; }
.btn-ghost {
  background: transparent; color: var(--text) !important;
  border: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.btn-ghost:hover { background: var(--surface-2); }
.cta-note { font-size: 13px; color: var(--muted); margin-top: 10px; }

/* ---------- offer box ---------- */
.offer-box {
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 26px 0;
}
.offer-box h2, .offer-box h3 { margin-top: 0; }
.offer-terms { font-size: 13px; color: var(--muted); margin: 12px 0 0; }

/* ---------- answer-first ---------- */
.answer {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 0 0 26px;
  font-size: 17.5px;
}
.answer p:last-child { margin-bottom: 0; }
.answer strong { color: #fff; }

/* ---------- key facts rail ---------- */
.rail { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 26px 0; }
.rail div {
  background: var(--surface); border: 1px solid var(--line);
  border-top: 3px solid var(--accent); border-radius: var(--radius);
  padding: 14px 16px;
}
.rail dt, .rail b {
  display: block; font-family: var(--font-head); font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 4px;
}
.rail dd, .rail span { display: block; margin: 0; font-size: 16px; font-weight: 600; color: #fff; }

/* ---------- tables ---------- */
.table-scroll { overflow-x: auto; margin: 22px 0; border: 1px solid var(--line); border-radius: var(--radius); }
table { width: 100%; border-collapse: collapse; min-width: 560px; font-size: 15.5px; }
caption { text-align: left; padding: 12px 16px; background: var(--surface-2); font-family: var(--font-head); font-weight: 700; font-size: 15px; border-bottom: 1px solid var(--line); }
th, td { padding: 11px 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: top; }
thead th { background: var(--surface-2); font-family: var(--font-head); font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(even) { background: rgba(255,255,255,.018); }

/* ---------- lists ---------- */
main ul, main ol { margin: 0 0 18px; padding-left: 22px; }
main li { margin-bottom: 8px; }
.checks { list-style: none; padding-left: 0; }
.checks li { position: relative; padding-left: 26px; }
.checks li::before { content: "▸"; position: absolute; left: 4px; color: var(--accent-hot); font-weight: 700; }

/* ---------- steps ---------- */
.steps { counter-reset: s; list-style: none; padding-left: 0; }
.steps li {
  counter-increment: s; position: relative; padding: 2px 0 2px 46px; margin-bottom: 14px;
}
.steps li::before {
  content: counter(s);
  position: absolute; left: 0; top: 0;
  width: 32px; height: 32px; line-height: 32px; text-align: center;
  background: var(--accent); color: #fff; border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 700;
}

/* ---------- game grid ---------- */
.game-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  gap: 16px;
  margin: 26px 0;
}
.game-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none !important;
  color: var(--text);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-hot);
  box-shadow: 0 10px 24px rgba(205, 23, 25, 0.35);
  text-decoration: none !important;
}
.card-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  background: #0d0f13;
}
.card-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.game-card:hover .card-thumb img {
  transform: scale(1.06);
}
.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11, 12, 14, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.22s ease;
  backdrop-filter: blur(2px);
}
.game-card:hover .play-overlay {
  opacity: 1;
}
.play-btn {
  background: var(--accent);
  color: #ffffff !important;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 9px 18px;
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.6);
  transform: translateY(6px);
  transition: transform 0.22s ease, background 0.2s ease;
}
.game-card:hover .play-btn {
  transform: translateY(0);
  background: var(--accent-hot);
}
.game-card .meta {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.game-card h3 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  transition: color 0.2s ease;
}
.game-card:hover h3 {
  color: var(--accent-hot);
}
.game-card p {
  margin: 0;
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.45;
}

/* ---------- callouts ---------- */
.note, .warn {
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px 20px; margin: 22px 0; font-size: 16px;
  background: var(--surface);
}
.warn { border-left: 5px solid var(--gold); }
.note { border-left: 5px solid var(--green); }
.note p:last-child, .warn p:last-child { margin-bottom: 0; }

/* ---------- FAQ ---------- */
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); margin-bottom: 10px;
}
.faq summary {
  cursor: pointer; padding: 15px 20px; list-style: none;
  font-family: var(--font-head); font-weight: 700; font-size: 17px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; float: right; color: var(--accent-hot); font-size: 22px; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq .faq-body { padding: 0 20px 16px; }
.faq .faq-body p:last-child { margin-bottom: 0; }

/* ---------- related links ---------- */
.related { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px; margin: 24px 0 0; }
.related a {
  display: block; background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 14px 16px; color: var(--text);
}
.related a:hover { border-color: var(--accent); text-decoration: none; }
.related a b { display: block; font-family: var(--font-head); font-size: 16px; margin-bottom: 3px; }
.related a span { font-size: 13.5px; color: var(--muted); }

/* ---------- breadcrumb ---------- */
.crumbs { font-size: 13.5px; color: var(--muted); padding: 14px 0 0; }
.crumbs a { color: var(--muted); }

main { padding: 24px 0 60px; }
main > .wrap > section { scroll-margin-top: 80px; }

/* ---------- sticky mobile CTA ---------- */
.sticky-cta { display: none; }

/* ---------- footer ---------- */
.site-foot {
  background: #000; border-top: 3px solid var(--accent);
  padding: 40px 0 30px; font-size: 14.5px; color: var(--muted);
}
.foot-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 26px; margin-bottom: 28px; }
.foot-cols h2 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.1em; color: #fff; margin: 0 0 10px; }
.foot-cols ul { list-style: none; margin: 0; padding: 0; }
.foot-cols li { margin-bottom: 7px; }
.foot-cols a { color: var(--muted); font-size: 14px; }
.foot-cols a:hover { color: #fff; }
.foot-legal { border-top: 1px solid #1b1d21; padding-top: 20px; font-size: 13px; line-height: 1.65; }
.foot-legal p { margin-bottom: 10px; }
.badges { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 16px; }
.badges span {
  border: 1px solid #2a2d33; border-radius: var(--radius);
  padding: 5px 11px; font-size: 12px; font-family: var(--font-head);
  text-transform: uppercase; letter-spacing: 0.07em; color: #cfd3d9;
}

/* ---------- mobile header & burger menu ---------- */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 40px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.nav-toggle:hover {
  background: var(--surface-2);
  border-color: var(--accent);
}
.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991px) {
  .head-row {
    position: relative;
    justify-content: space-between;
    gap: 12px;
  }
  .head-cta {
    font-size: 12.5px;
    padding: 8px 14px;
    order: 2;
  }
  .nav-toggle {
    display: flex;
    order: 3;
  }
  .head-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #0d0f13;
    border-bottom: 3px solid var(--accent);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.85);
    flex-direction: column;
    padding: 12px 16px 18px;
    gap: 6px;
    z-index: 100;
  }
  .head-nav.open {
    display: flex;
  }
  .head-nav a {
    font-size: 15px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    width: 100%;
  }
  .head-nav a:last-child {
    border-bottom: none;
  }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; }
  .rail { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .hero { padding: 28px 0 24px; }
  .hero h1 { font-size: 26px; }
  .hero p.lede { font-size: 16px; margin-bottom: 16px; }
  .hero-btns { width: 100%; }
  .hero-btns .btn { width: 100%; text-align: center; padding: 13px 20px; }
  .hero-media img { max-height: 260px; }
  .game-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .foot-cols { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  main { padding-bottom: 96px; }
  .sticky-cta {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 70;
    background: #000; border-top: 1px solid var(--line); padding: 10px 14px;
  }
  .sticky-cta .btn { display: block; text-align: center; padding: 13px 18px; }
}

@media (max-width: 480px) {
  .brand-logo { height: 32px; }
  .head-row { min-height: 54px; }
  .rail { grid-template-columns: 1fr; }
  .game-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .game-card .meta { padding: 8px 10px 10px; }
  .game-card h3 { font-size: 13.5px; }
  .game-card p { font-size: 11.5px; }
  .foot-cols { grid-template-columns: 1fr; }
}
