/* BOGOF Bingo closure page — palette from the old bogofbingo.com site:
   cream #FFF8EB page · golden-yellow hero · orange-red CTAs #F4511E ·
   teal #0EC2B8 accents · navy #202B3C header band + footer */

:root {
  --cream: #FFF8EB;
  --navy: #202B3C;
  --sun: #F5A929;
  --sun-light: #FFC95F;
  --orange: #F4511E;
  --orange-light: #FF6A3D;
  --teal: #0EC2B8;
  --ink: #202B3C;
  --muted: #6b7280;
  --card-bg: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Lato', system-ui, -apple-system, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .cta {
  font-family: 'Baloo 2', 'Lato', sans-serif;
}

a { color: var(--orange); }

/* ── Hero — slim navy closure strip ── */

.hero {
  text-align: center;
  padding: 16px 20px;
  background: var(--navy);
  color: #fff;
}

.hero h1 {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 700;
  line-height: 1.3;
  margin: 0 auto;
}

/* ── Cards ── */

main { padding: 8px 20px 56px; }

.section-title {
  text-align: center;
  font-size: clamp(1.3rem, 3.5vw, 1.7rem);
  font-weight: 700;
  color: var(--navy);
  margin: 28px auto 28px;
  max-width: 30ch;
}

.cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1080px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
}

.offer-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(32, 43, 60, 0.12);
}

.card-head {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  min-height: 80px;
}

.card-head img {
  max-height: 52px;
  max-width: 80%;
  width: auto;
  height: auto;
}

.card-character {
  width: 220px;
  max-width: 60%;
  height: auto;
  align-self: center;
  margin: 18px 0 0;
}

.card-body {
  padding: 14px 22px 22px;
  text-align: center;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.offer-sub {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.offer-title {
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin: 4px 0 16px;
}

.cta {
  display: block;
  background: linear-gradient(180deg, var(--orange-light), var(--orange));
  color: #fff;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 50px;
  padding: 13px 24px;
  box-shadow: 0 4px 14px rgba(244, 81, 30, 0.35);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 7px 20px rgba(244, 81, 30, 0.5);
}

.www-link {
  margin: 10px 0 14px;
  font-size: 0.88rem;
  color: var(--muted);
}

.www-link a { color: var(--navy); font-weight: 700; }

.sig-terms {
  margin-top: auto;
  font-size: 0.68rem;
  line-height: 1.45;
  color: var(--muted);
  text-align: left;
}

.sig-terms a { color: var(--navy); }

/* ── Footer ── */

.site-footer {
  background: var(--navy);
  padding: 36px 20px 44px;
  text-align: center;
  font-size: 0.82rem;
  color: #9aa5b5;
}

.site-footer p {
  max-width: 780px;
  margin: 0 auto 14px;
}

.site-footer a { color: #cdd5e0; }

.footer-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
}

.badge-18 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
}

.footer-closed {
  margin-top: 20px;
  font-style: italic;
  color: #77839a;
}
