:root {
  --ink: #172033;
  --muted: #677284;
  --gold: #d7be83;
  --gold-dark: #a78643;
  --soft: #f7f5ef;
  --line: #e6e8ec;
  --dark: #07182f;
  --dark-2: #0c2343;
  --white: #fff;
  --radius: 8px;
  --shadow: 0 6px 18px rgba(14, 30, 54, .08);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none
}

button,
input {
  font: inherit
}

.container {
  width: min(1140px, calc(100% - 40px));
  margin: auto
}

.eyebrow {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 700;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 18px
}

h1 {
  font-size: clamp(32px, 4vw, 46px)
}

h2 {
  font-size: 34px
}

h3 {
  font-size: 21px
}

p {
  margin: 0 0 16px;
  color: var(--muted)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 5px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  
}

.btn-gold {
  background: var(--gold);
  color: #07182f
}

.btn-gold:hover {
  background: #e2cb96
}

.btn-dark {
  background: #07182f;
  color: #fff
}

.btn-outline {
  border-color: #c9b072;
  color: #fff;
  background: transparent
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .06)
}

.site-header {
  height: 85px;
  background: #07182f;
  color: #fff;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 30;
 
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center
}

.brand img {
  width: 178px;
  max-height: 46px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 600;
}

.nav a:hover {
  color: var(--gold)
}

.header-actions {
  display: flex;
  gap: 10px
}

.menu-btn {
  display: none;
  background: none;
  color: #fff;
  border: 0;
  font-size: 27px;
  cursor: pointer;
}

.hero {
  background: #07182f;
  color: #fff
}

.hero-wrap {
  position: relative
}

.hero-banner {
  min-height: 470px;
  background-image:
    linear-gradient(90deg, rgba(7, 24, 47, .96) 0%, rgba(7, 24, 47, .78) 38%, rgba(7, 24, 47, .25) 66%, rgba(7, 24, 47, .06) 100%),
    url("https://registro.williamhill.es/hubfs/8255655/Marketing%20Channels/International/ES/Multi%20Sport/Aug%202026%20CROLP-2932/260731_WHLP_GENERICO_MULTISPORT_768x800%20copia_v3.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-copy {
  max-width: 590px;
  padding: 68px 0;
}

.hero-copy .offer-kicker {
  font-size: 21px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #fff;
}

.hero-copy h1 {
  font-weight: 600;
  text-transform: none;
  letter-spacing: -.03em;
  margin: 5px 0 16px;
}

.hero-copy h1 strong {
  color: var(--gold)
}

.hero-copy .terms {
  font-size: 16px;
  max-width: 520px;
  color: #cbd3de;
  margin-top: 16px;
  line-height: 1.55;
}

.hero-arrows {
  position: absolute;
  inset: 50% 20px auto;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.hero-arrow {
  pointer-events: auto;
  width: 38px;
  height: 38px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, .55);
  background: rgba(7, 24, 47, .55);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.section {
  padding: 58px 0
}

.section-title {
  text-align: center;
  margin-bottom: 32px
}

.section-title p {
  max-width: 660px;
  margin: auto
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.media-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.info-panel {
  background: var(--soft);
  padding: 38px;
  border-radius: var(--radius);
  border: 1px solid #eee9dc;
}

.checks {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}

.checks li {
  position: relative;
  padding-left: 25px;
  margin: 11px 0;
  color: #475467;
}

.checks li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold-dark);
  font-weight: 800;
}

.photo-collage {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 10px;
}

.photo-collage img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  border-radius: 6px;
}

.photo-collage img:first-child {
  height: 380px;
  grid-row: span 2;
}

.bonus-area {
  background: #fafafa
}

.bonus-list {
  display: grid;
  gap: 12px
}

.bonus-item {
  background: #fff;
  padding: 18px 20px;
  border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: none;
}

.bonus-item strong {
  display: block;
  margin-bottom: 3px
}

.payment-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  margin-top: 28px;
  min-height: 48px;
}

.payment-logos img {
  width: auto;
  height: 24px;
  object-fit: contain;
}

.responsible {
  background: #f5f6f7;
  border-top: 1px solid var(--line);
  padding: 42px 0;
}

.responsible-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 28px;
}

.notice {
  font-size: 14px;
  color: #475467;
}

.cta {
  margin: 50px auto 54px;
  background: #07182f;
  color: #fff;
  border-radius: 8px;
  text-align: center;
  padding: 42px 30px;
}

.cta p {
  color: #cbd3de
}

.site-footer {
  background: #07182f;
  color: #fff;
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 38px;
}

.footer-title {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #fff;
  margin-bottom: 14px;
  font-weight: 700;
}

.footer-links {
  display: grid;
  gap: 9px;
  font-size: 14px;
  color: #b8c1ce;
}

.footer-links a:hover {
  color: var(--gold)
}

.footer-brand p {
  color: #b8c1ce;
  max-width: 340px;
  font-size: 14px;
}

.footer-brand .brand img {
  width: 170px
}

.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, .1);
  margin-top: 38px;
  padding: 22px 0;
  color: #aeb8c6;
  font-size: 13px;
}

.footer-badges {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.badge {
  border: 1px solid rgba(255, 255, 255, .22);
  padding: 7px 11px;
  border-radius: 5px;
  font-weight: 700;
  font-size: 12px;
}

.badge-age {
  border-color: #df6262;
  color: #ff8585;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
}

.legal-hero {
  padding: 68px 0;
  background: #0c2343;
  color: #fff;
}

.legal-main {
  padding: 58px 0
}

.legal-wrap h2 {
  font-size: 25px;
  margin-top: 32px;
}

.legal-wrap ul {
  color: var(--muted)
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(3, 10, 20, .84);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 100;
  padding: 20px;
}

.age-gate.show {
  display: flex
}

.age-box {
  background: #fff;
  width: min(460px, 100%);
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 18px 50px rgba(0, 0, 0, .25);
}

.age-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

/* ORIGINAL 6-CARD LAYOUT - visually simplified */
#offers .section-title {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

#offers .section-title h2 {
  margin: 0 0 10px;
  color: #111827;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 750;
}

#offers .section-title p {
  margin: 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.7;
}

#offers .offer-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

#offers .offer-card {
  position: relative;
  min-height: 200px;
  overflow: hidden;
  border: 1px solid #d9dee6;
  border-radius: 10px;
  background: #081120;
  box-shadow: none;
  transition: transform .2s ease, border-color .2s ease;
}

#offers .offer-card>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
  opacity: .9;
  transition: transform .3s ease;
}

#offers .offer-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(3, 8, 23, .03) 30%, rgba(3, 8, 23, .28) 55%, rgba(3, 8, 23, .9) 100%);
  pointer-events: none;
}

#offers .offer-card-content {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 18px;
  z-index: 2;
  text-align: center;
}

#offers .offer-card-content h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 750;
  text-transform: none;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .65);
}

#offers .offer-card-content a {
  display: inline-block;
  color: #fff;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, .55);
  transition: color .2s ease, border-color .2s ease;
}

#offers .offer-card-content a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

#offers .offer-card:hover {
  transform: translateY(-3px);
  border-color: #c9b072;
}

#offers .offer-card:hover>img {
  transform: scale(1.025)
}

@media(max-width:992px) {
  #offers .offer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr))
  }

  #offers .offer-card {
    min-height: 280px
  }
}

@media(max-width:900px) {

  .nav,
  .header-actions {
    display: none
  }

  .menu-btn {
    display: block
  }

  .nav.open {
    display: flex;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #0c2343;
    padding: 22px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-banner {
    min-height: 510px;
    background-position: 64% center
  }

  .hero-copy {
    max-width: 500px
  }

  .split {
    grid-template-columns: 1fr
  }

  .responsible-grid,
  .footer-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:700px) {
  #offers {
    padding: 56px 0
  }

  #offers .section-title h2 {
    font-size: 28px
  }

  #offers .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  #offers .offer-card {
    min-height: 245px;
    border-radius: 8px;
  }

  #offers .offer-card-content {
    left: 10px;
    right: 10px;
    bottom: 16px;
  }

  #offers .offer-card-content h3 {
    font-size: 14px
  }

  #offers .offer-card-content a {
    font-size: 14px
  }
}

@media(max-width:600px) {
  .container {
    width: min(100% - 28px, 1140px)
  }

  .section {
    padding: 52px 0
  }

  .hero-banner {
    min-height: 560px;
    background-position: 70% center;
  }

  .hero-banner:after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .22);
  }

  .hero-copy {
    position: relative;
    z-index: 2;
    padding-top: 245px;
  }

  .hero-copy h1 {
    font-size: 44px
  }

  .hero-copy .offer-kicker {
    font-size: 18px
  }

  .info-panel {
    padding: 26px
  }

  .photo-collage {
    grid-template-columns: 1fr 1fr
  }

  .photo-collage img,
  .photo-collage img:first-child {
    height: 165px;
    grid-row: auto;
  }

  .responsible-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .age-actions {
    flex-direction: column
  }
}

@media(max-width:430px) {
  #offers .offer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
  }

  #offers .offer-card {
    min-height: 210px
  }

  #offers .offer-card-content h3 {
    font-size: 12px
  }

  #offers .offer-card-content a {
    font-size: 13px
  }
}