*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html,body {
  margin: 0; padding: 0;
  background: #fff;
  font-family: var(--bb-font);
  color: #12203F;
}
img { max-width: 100%; }
a { color: inherit; }

.container {
  max-width: 1116px;
  margin: 0 auto;
  padding: 0 42px;
  box-sizing: content-box;
}

/* ========================================================
   HEADER / TOPBAR
======================================================== */
.topbar {
  width: 100%;
  height: 100px;
  background: #12203F;
  display: flex;
  align-items: center;
  padding: 0 43px;
}
.topbar a { display: inline-flex; align-items: center; }
.topbar img { height: 30px; width: auto; cursor: pointer; }

/* ========================================================
   HERO
======================================================== */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(180deg, #002A80 0%, #00041D 100%);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: url('assets/landing-bg.png') center/cover no-repeat;
  opacity: 0.39;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  max-width: 1116px;
  margin: 0 auto;
  padding: 77px 42px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  box-sizing: content-box;
}
.hero__copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero h1 {
  margin: 0;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  max-width: 720px;
}
.hero p {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-align: center;
  max-width: 640px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFBF00;
  color: #12203F;
  border: 0;
  border-radius: 55px;
  padding: 10px 50px;
  font-family: var(--bb-font);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: filter 120ms ease, transform 120ms ease;
}
.btn:hover { filter: brightness(1.05); }
.btn:active { transform: translateY(1px) scale(0.99); filter: brightness(0.95); }

/* ========================================================
   COMPLIANCE BAR (used in hero + footer)
======================================================== */
.compliance {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}
.compliance__text {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.02em;
  text-align: center;
}
.compliance__badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.compliance__badges img {
  height: 30px;
  width: auto;
  display: block;
}
.compliance__badges img.round {
  height: 30px;
  width: 30px;
  border-radius: 50%;
}

/* ========================================================
   BOOKMAKERS SECTION
======================================================== */
.bookmakers {
  background: #fff;
  padding: 60px 0;
}
.section-head {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 32px;
}
.section-head img { width: 40px; height: 40px; }
.section-head h2 {
  margin: 0;
  font-weight: 700;
  font-size: 30px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #12203F;
}
.bookmaker-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

/* ========================================================
   BOOKMAKER CARD
======================================================== */
.card {
  position: relative;
  width: 100%;
  max-width: 356px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18.4px;
  box-shadow: 0 1.337px 20.055px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 180ms ease, transform 180ms ease;
}
.card:hover {
  box-shadow: 0 4px 28px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}

.card-top {
  position: relative;
  background: #12203F;
  padding: 22px 17px 20px;
  color: #fff;
  height: 240px;
  overflow: hidden;
}
.card-top__content {
  position: relative;
  z-index: 2;
  max-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 6.13px;
  padding: 6px 10px;
  align-self: flex-start;
}
.chip img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.chip.chip-jokerbet         { width: 196px; height: 52px; }
.chip.chip-casino-barcelona { width: 124px; height: 58px; }
.chip.chip-1xbet            { width: 160px; height: 50px; }
.chip.chip-bwin             { width: 150px; height: 50px; }
.chip.chip-luckia           { width: 150px; height: 54px; }

.offer {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.offer__label {
  font-weight: 500;
  font-size: 16.8px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}
.offer__mega {
  font-weight: 700;
  font-size: 60px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #fff;
}
.offer__sub {
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #fff;
}

.gift {
  position: absolute;
  right: -4px;
  bottom: 8px;
  width: 128px;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.card-divider {
  height: 4.9px;
  background: #FFBF00;
}

.card-body {
  padding: 18px 20px 0;
  color: #000;
  flex: 1 1 auto;
}
.card-body ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.card-body li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
}
.card-body li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #12203F;
}

.card-cta {
  display: block;
  margin: 18px 24px 24px;
  text-align: center;
  text-decoration: none;
  background: #FFBF00;
  color: #12203F;
  font-weight: 700;
  font-size: 17.17px;
  letter-spacing: 0.02em;
  border-radius: 67.45px;
  padding: 12.26px 0;
  transition: filter 120ms ease, transform 120ms ease;
}
.card:hover .card-cta { filter: brightness(1.05); }
.card:active .card-cta { transform: translateY(1px) scale(0.99); filter: brightness(0.95); }

/* ========================================================
   BAND (gray section: which-bonus + trust + alert)
======================================================== */
.band {
  background: #F3F3F3;
  padding: 60px 0;
}
.band__stack {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.which-bonus h2 {
  margin: 0 0 20px;
  font-weight: 700;
  font-size: 30px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #12203F;
}
.picks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.picks li {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.02em;
  color: #12203F;
  line-height: 1.3;
}
.picks .brand { color: #002A80; text-decoration: none; transition: opacity 120ms ease; }
.picks a.brand:hover { text-decoration: underline; }
.picks a.brand:active { opacity: 0.8; }

.trust-block__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}
.trust-block__head img { width: 40px; height: 40px; }
.trust-block__head h2 {
  margin: 0;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: 0.02em;
  color: #12203F;
}
.trust-block p {
  margin: 0;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #000;
  max-width: 1100px;
}

.urgency-alert {
  background: #FFBF00;
  border-radius: 20px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  gap: 23px;
  max-width: 634px;
}
.urgency-alert svg { flex-shrink: 0; }
.urgency-alert__lines { display: flex; flex-direction: column; gap: 5px; }
.urgency-alert__lead {
  margin: 0;
  font-style: italic;
  font-size: 22px;
  line-height: 1.02;
  letter-spacing: 0.02em;
  color: #2C2C2C;
}
.urgency-alert__emph {
  margin: 0;
  font-style: italic;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.02;
  letter-spacing: 0.02em;
  color: #2C2C2C;
}

/* ========================================================
   FAQ
======================================================== */
.faq {
  background: #fff;
  padding: 40px 0 60px;
}
.faq__head {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 40px;
}
.faq__head h2 {
  margin: 0;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: #12203F;
}
.faq__head p {
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #12203F;
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-content: start;
}

.faq-row {
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 30px rgba(0,0,0,0.1);
  overflow: hidden;
}
.faq-row > summary {
  list-style: none;
  cursor: pointer;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-row > summary::-webkit-details-marker { display: none; }
.faq-row .faq-q {
  font-weight: 700;
  font-size: 16px;
  color: #12203F;
  letter-spacing: 0.02em;
}
.faq-row .caret {
  flex-shrink: 0;
  width: 12px; height: 6px;
  background: #12203F;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transition: transform 150ms ease;
}
.faq-row[open] .caret { transform: rotate(180deg); }
.faq-row .faq-a {
  padding: 18px 20px;
  border-top: 1px solid #F3F3F3;
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0.02em;
  color: #12203F;
}

/* ========================================================
   FOOTER
======================================================== */
.footer {
  background: #050E24;
  color: #fff;
  padding: 42px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.footer__legal {
  max-width: 636px;
  padding: 0 20px;
  text-align: center;
  opacity: 0.3;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.footer__legal p { margin: 0; }
.footer__legal p + p { margin-top: 14px; }

/* ========================================================
   TABLET (≤ 1023px)
======================================================== */
@media (max-width: 1023px) {
  .topbar { height: 80px; padding: 0 32px; }
  .topbar img { height: 26px; }

  .container,
  .hero__inner { padding-left: 32px; padding-right: 32px; }

  .hero__inner { padding-top: 56px; padding-bottom: 48px; gap: 28px; }
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 18px; }

  .bookmakers { padding: 48px 0; }
  .section-head h2 { font-size: 26px; }
  .section-head img { width: 34px; height: 34px; }
  .bookmaker-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }

  .band { padding: 48px 0; }
  .band__stack { gap: 40px; }
  .which-bonus h2,
  .trust-block__head h2,
  .faq__head h2 { font-size: 26px; }
  .picks li,
  .trust-block p,
  .faq__head p { font-size: 18px; }

  .urgency-alert { padding: 24px 28px; gap: 18px; }
  .urgency-alert__lead { font-size: 18px; }
  .urgency-alert__emph { font-size: 24px; }

  .faq { padding: 32px 0 48px; }
  .faq__grid { gap: 20px; }

  .footer { padding: 36px 0 32px; gap: 32px; }
}

/* ========================================================
   MOBILE (≤ 767px)
======================================================== */
@media (max-width: 767px) {
  .topbar { height: 64px; padding: 0 20px; justify-content: center; }
  .topbar img { height: 22px; }

  .container,
  .hero__inner { padding-left: 20px; padding-right: 20px; }

  .hero__inner { padding-top: 36px; padding-bottom: 40px; gap: 22px; }
  .hero h1 { font-size: 24px; line-height: 1.2; }
  .hero p { font-size: 14px; line-height: 1.5; }

  .btn { width: 100%; max-width: 320px; padding: 12px 20px; font-size: 16px; }

  .compliance { gap: 12px; }
  .compliance__text { font-size: 12px; }
  .compliance__badges { gap: 6px; }
  .compliance__badges img { height: 22px; }
  .compliance__badges img.round { width: 22px; height: 22px; }

  .bookmakers { padding: 32px 0; }
  .section-head { margin-bottom: 18px; gap: 6px; }
  .section-head img { width: 28px; height: 28px; }
  .section-head h2 { font-size: 22px; }

  .bookmaker-grid { grid-template-columns: 1fr; gap: 18px; }
  .card { max-width: 420px; border-radius: 14px; }
  .card-top { height: 210px; padding: 18px 16px 16px; }
  .card-top__content { max-width: 200px; gap: 12px; }

  .chip                       { padding: 5px 8px; }
  .chip.chip-jokerbet         { width: 170px; height: 46px; }
  .chip.chip-casino-barcelona { width: 108px; height: 50px; }
  .chip.chip-1xbet            { width: 138px; height: 44px; }
  .chip.chip-bwin             { width: 130px; height: 44px; }
  .chip.chip-luckia           { width: 130px; height: 48px; }

  .offer__label { font-size: 13px; }
  .offer__mega  { font-size: 52px; }
  .offer__sub   { font-size: 18px; }

  .gift { width: 100px; right: -10px; bottom: -6px; }

  .card-body { padding: 16px 18px 0; }
  .card-body ul { font-size: 14px; line-height: 1.5; }
  .card-cta { margin: 14px 16px 16px; padding: 11px 0; font-size: 14px; border-radius: 50px; }

  .band { padding: 32px 0; }
  .band__stack { gap: 30px; }
  .which-bonus h2 { font-size: 22px; margin-bottom: 14px; }
  .picks { gap: 10px; }
  .picks li { font-size: 14px; line-height: 1.4; }

  .trust-block__head { margin-bottom: 12px; gap: 6px; }
  .trust-block__head img { width: 28px; height: 28px; }
  .trust-block__head h2 { font-size: 20px; line-height: 1.02; }
  .trust-block p { font-size: 14px; line-height: 1.45; }

  .urgency-alert { padding: 18px 20px; gap: 12px; border-radius: 16px; max-width: none; }
  .urgency-alert svg { width: 48px; height: 44px; }
  .urgency-alert__lead { font-size: 14px; line-height: 1.2; }
  .urgency-alert__emph { font-size: 18px; line-height: 1.1; }

  .faq { padding: 28px 0 36px; }
  .faq__head { margin-bottom: 18px; gap: 6px; }
  .faq__head h2 { font-size: 20px; }
  .faq__head p { font-size: 14px; }
  .faq__grid { grid-template-columns: 1fr; gap: 10px; }
  .faq-row > summary { padding: 10px 16px; }
  .faq-row .faq-q { font-size: 14px; }
  .faq-row .faq-a { padding: 12px 16px; font-size: 14px; }

  .footer { padding: 28px 0 28px; gap: 22px; }
  .footer__legal { font-size: 13px; }
}
