/*
 * Lindy Bonus splash page styles.
 * Generated from SH10528_Website_Lindy-Splash-Page_07-26/style.css by
 * scratchpad/scope_css_lindy.py — do NOT edit by hand; re-run to regenerate.
 * Every selector is scoped under .lindy-bonus so the design's generic
 * class names (.hero, .btn, .wrap, .section-title, etc.) do not collide
 * with the rest of the site. html/body/universal rules and site-chrome
 * rules are stripped — HeaderModule/FooterModule render those.
 * Local assets/*.png references are rewritten to WebPs on our CDN.
 */

/* ==========================================================================
   The Lindy — NFFC Bonus Splash Page
   Mobile-first stylesheet
   Breakpoints: base(<478) / 478 / 768 / 1024 / 1440 / 1920
   ========================================================================== */

:root {
  /* Color */
  --bg: #0a0a0d;
  --bg-raised: #071326;
  --bg-raised-2: #0a2240;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);

  --navy:        #0a2240;
  --navy-card:   #0d1f38;  

  --red: #c70f32;
  --red-hover: #e01038;
  --red-dim: rgba(227, 178, 60, 0.14);
  --color-gold: #e8b93f;
  --color-gold-bright: #f9d876;
  --color-gold-dim: #a9812c;

  --white: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.64);
  --text-dimmer: rgba(255, 255, 255, 0.42);
  --text-faint: rgba(255, 255, 255, 0.24);

  /* Type */
  --font-display: 'Barlow Condensed', 'Trade Gothic Next Condensed', 'Arial Narrow', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;

  /* Layout */
  --wrap-max: 1120px;
  --gutter: 20px;
  --header-h: 64px;
}

/* ── RESET ────────────────────────────────────────────────────────────── */



.lindy-bonus img, .lindy-bonus svg { display: block; max-width: 100%; }
.lindy-bonus a { color: inherit; text-decoration: none; }
.lindy-bonus section[id] { scroll-margin-top: var(--header-h); }
.lindy-bonus ul, .lindy-bonus ol { list-style: none; }
.lindy-bonus button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
.lindy-bonus table { border-collapse: collapse; width: 100%; }

.lindy-bonus .sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── LAYOUT UTILITIES ─────────────────────────────────────────────────── */
.lindy-bonus .wrap {
  max-width: var(--wrap-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.lindy-bonus .eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.lindy-bonus .section-title {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.02;
  color: var(--white);
  font-size: clamp(28px, 7vw, 40px);
}

.lindy-bonus .section-head { margin-bottom: 32px; }

/* ── BUTTONS ──────────────────────────────────────────────────────────── */
.lindy-bonus .btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 100px;
  text-align: center;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.lindy-bonus .btn--primary, .lindy-bonus .btn--red {
  background: var(--red);
  color: #14110a;
}
.lindy-bonus .btn--primary:hover, .lindy-bonus .btn--red:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
}
.lindy-bonus .btn--ghost {
  color: var(--text-dim);
  border: 1px solid var(--border-strong);
  padding: 14px 29px;
}
.lindy-bonus .btn--ghost:hover { color: var(--white); border-color: var(--text-dim); }
.lindy-bonus .btn--outline {
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 14px 29px;
}
.lindy-bonus .btn--outline:hover { color: var(--white); border-color: var(--white); }

/* ── HEADER / NAV ─────────────────────────────────────────────────────── */

.lindy-bonus .site-header__inner {
  max-width: var(--wrap-max);
  margin: 0 auto;
  height: 100%;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.lindy-bonus .brand__name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--white);
}
.lindy-bonus .brand__divider { width: 1px; height: 14px; background: var(--border-strong); }
.lindy-bonus .brand__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dimmer);
}


.lindy-bonus .menu-toggle__bar {
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: transform 0.25s ease, opacity 0.25s ease;
}






.lindy-bonus .nav__link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
}
.lindy-bonus .nav__link:hover { color: var(--white); }
.lindy-bonus .nav__cta {
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 12px 20px;
  border-radius: 100px;
  text-align: center;
}
.lindy-bonus .nav__cta:hover { background: var(--red-hover); }

/* ── HERO ─────────────────────────────────────────────────────────────── */
.lindy-bonus .hero {
  padding: calc(var(--header-h) + 48px) var(--gutter) 56px;
  position: relative;
  background-image:
    linear-gradient(180deg, rgba(10, 10, 13, 0.55) 0%, rgba(10, 10, 13, 0.9) 100%),
    url('https://assets.shgn.com/highstakes/img/nffc/lindy/bg-1.webp');
  background-size: cover;
  background-position: center 65%;
  background-repeat: no-repeat;
}
.lindy-bonus .hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
}
.lindy-bonus .hero__inner {
  max-width: var(--wrap-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.lindy-bonus .hero__content { width: 100%; }
.lindy-bonus .hero__card {
  display: none;
  flex-shrink: 0;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.6));
}
.lindy-bonus .hero__card img { width: 100%; }
.lindy-bonus .hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 16vw, 84px);
  font-weight: 900;
  line-height: 0.94;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
}
.lindy-bonus .hero__subtitle {
  font-family: var(--font-display);
  font-size: clamp(18px, 5vw, 24px);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.lindy-bonus .hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 32px;
}
.lindy-bonus .hero__stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dimmer);
}
.lindy-bonus .hero__stat-value {
  font-family: var(--font-display);
  font-size: clamp(40px, 13vw, 60px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.05;
}
.lindy-bonus .hero__stat-note {
  font-size: 13px;
  color: var(--text-dimmer);
}
.lindy-bonus .hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lindy-bonus .hero__actions .btn { width: 100%; }

/* ── HOW TO WIN ───────────────────────────────────────────────────────── */
.lindy-bonus .how { 
  padding: 56px 0; 
  border-top: 1px solid var(--border);
  background-color: var(--bg-raised);
}
.lindy-bonus .steps { display: flex; flex-direction: column; gap: 14px; }
.lindy-bonus .step {
  background: var(--bg-raised-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 26px 22px;
}
.lindy-bonus .step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 10px;
}
.lindy-bonus .step__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 10px;
}
.lindy-bonus .step__body {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}
.lindy-bonus .step__body a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lindy-bonus .step__badge {
  display: inline-block;
  margin-top: 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-strong);
  padding: 6px 14px;
  border-radius: 100px;
}
.lindy-bonus .step__badge--bonus {
  color: var(--white);
  background: var(--red-dim);
  border-color: rgba(227, 178, 60, 0.4);
}

/* ── PRIZE BREAKDOWN ──────────────────────────────────────────────────── */
.lindy-bonus .prizes { padding: 56px 0; border-top: 1px solid var(--border); }
.lindy-bonus .prizes__grid { display: flex; flex-direction: column; gap: 44px; }

.lindy-bonus .prize-table { margin-top: 20px; }
.lindy-bonus .prize-table tr { border-bottom: 1px solid var(--border); }
.lindy-bonus .prize-table tr:last-child { border-bottom: none; }
.lindy-bonus .prize-table td { padding: 13px 0; font-size: 13px; color: var(--text-dim); }
.lindy-bonus .prize-table td:last-child {
  text-align: right;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
}
.lindy-bonus .prize-table__bonus td { color: rgba(255, 255, 255, 0.9); font-weight: 800; }
.lindy-bonus .prize-table__bonus td:last-child { color: var(--color-gold); font-size: 21px; }

.lindy-bonus .prize-total {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--border-strong);
  display: flex;
  flex-direction: row;
  gap: 4px;
  justify-content: space-between;
}
.lindy-bonus .prize-total__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.lindy-bonus .prize-total__value {
  font-family: var(--font-display);
  font-size: 50px;
  font-weight: 800;
  color: var(--white);
}

.lindy-bonus .prizes__context-col p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.lindy-bonus .prizes__context-col p strong { color: var(--white); }

.lindy-bonus .eligibility-note {
  display: block;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 4px;
  padding: 16px 18px;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-top: 20px;
}
.lindy-bonus .eligibility-note strong { color: rgba(255, 255, 255, 0.85); display: block; margin-bottom: 4px; }

/* ── NAMESAKE ─────────────────────────────────────────────────────────── */
.lindy-bonus .namesake {
  padding: 56px 0;
  background-image:
    linear-gradient(180deg, rgba(10, 10, 13, 0.7) 0%, rgba(10, 10, 13, 0.85) 100%),
    url('https://assets.shgn.com/highstakes/img/nffc/lindy/bg-2.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.lindy-bonus .namesake__grid { display: flex; flex-direction: column; gap: 28px; }

.lindy-bonus .namesake__photo {
  width: 100%;
  max-width: 220px;
  aspect-ratio: 3 / 4;
  background: var(--bg-raised);
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-faint);
  margin: 0 auto;
}
.lindy-bonus .namesake__photo-icon { width: 40px; height: 40px; }
.lindy-bonus .namesake__photo-caption {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  text-align: center;
  padding: 0 12px;
}

.lindy-bonus .namesake__text p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.lindy-bonus .namesake__text p strong { color: var(--white); }
.lindy-bonus .namesake__credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dimmer);
  margin-top: 6px;
}
.lindy-bonus .namesake__credit::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--border-strong);
}

/* ── FINAL CTA ────────────────────────────────────────────────────────── */
.lindy-bonus .final-cta {
  background: var(--red);
  padding: 52px var(--gutter);
  text-align: center;
}
.lindy-bonus .final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 9vw, 44px);
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}
.lindy-bonus .final-cta__body {
  font-size: 14px;
  color: #fff;
  margin-bottom: 28px;
}
.lindy-bonus .final-cta__actions { display: flex; flex-direction: column; gap: 12px; }
.lindy-bonus .final-cta .btn--red {
  background: #fff;
  color: var(--bg);
}
.lindy-bonus .final-cta .btn--red:hover { 
  color: var(--red-hover) }
.lindy-bonus .final-cta .btn--outline {
  color: var(--text-dim);
  border-color: var(--text-dim);
}
.lindy-bonus .final-cta .btn--outline:hover { 
  color: var(--white) ; border-color: var(--white); }

/* ── FOOTER ───────────────────────────────────────────────────────────── */

.lindy-bonus .site-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lindy-bonus .site-footer__brand {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.lindy-bonus .site-footer__links { display: flex; flex-direction: column; gap: 10px; }
.lindy-bonus .site-footer__links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-faint);
  transition: color 0.2s ease;
}
.lindy-bonus .site-footer__links a:hover { color: var(--white); }
.lindy-bonus .site-footer__legal { font-size: 11px; color: rgba(255, 255, 255, 0.12); }

/* ── SCROLL REVEAL ────────────────────────────────────────────────────── */
.lindy-bonus .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.lindy-bonus .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  
  
  .lindy-bonus .reveal { opacity: 1 !important; transform: none !important; }
}

/* ==========================================================================
   MOBILE LANDSCAPE — min-width: 478px
   ========================================================================== */
@media (min-width: 478px) {
  .lindy-bonus .hero__actions { flex-direction: row; }
  .lindy-bonus .hero__actions .btn { width: auto; }

  .lindy-bonus .hero__stat { flex-direction: row; align-items: baseline; gap: 14px; }

  .lindy-bonus .final-cta__actions { flex-direction: row; justify-content: center; }
}

/* ==========================================================================
   TABLET — min-width: 768px
   ========================================================================== */
@media (min-width: 768px) {
  :root { --gutter: 32px; }

  .lindy-bonus .site-header__inner { padding: 0 32px; }
  
  
  .lindy-bonus .nav__link {
    padding: 0;
    border: none;
    font-size: 11px;
    letter-spacing: 0.1em;
  }
  .lindy-bonus .nav__cta { margin-top: 0; padding: 10px 22px; }

  .lindy-bonus .hero { padding: calc(var(--header-h) + 72px) 32px 64px; }

  .lindy-bonus .how, .lindy-bonus .prizes, .lindy-bonus .namesake {
    padding: 72px 0;

  }
  .lindy-bonus .namesake { background-position: right; }


  .lindy-bonus .prizes__grid { flex-direction: row; gap: 60px; }
  .lindy-bonus .prizes__table-col, .lindy-bonus .prizes__context-col { flex: 1; }

  .lindy-bonus .site-footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .lindy-bonus .site-footer__links { flex-direction: row; gap: 24px; }

  .lindy-bonus .final-cta { padding: 64px 32px; }
}

/* ==========================================================================
   LAPTOP — min-width: 1024px
   ========================================================================== */
@media (min-width: 1024px) {
  .lindy-bonus .steps { flex-direction: row; }
  .lindy-bonus .step { flex: 1; }

  .lindy-bonus .hero__title { font-size: clamp(72px, 8vw, 96px); }
  .lindy-bonus .hero__inner { flex-direction: row; align-items: center; justify-content: flex-start; gap: 56px; }
  .lindy-bonus .hero__content { width: auto; max-width: 640px; flex: 0 1 auto; }
  .lindy-bonus .hero__card { display: block; flex-shrink: 0; width: clamp(260px, 60vw, 520px); }

  .lindy-bonus .how, .lindy-bonus .prizes, .lindy-bonus .namesake { padding: 88px 0; }
  .lindy-bonus .namesake { background-position: center; }

  .lindy-bonus .step { padding: 32px 28px; }

  .lindy-bonus .namesake__grid { flex-direction: row; align-items: center; gap: 48px; }
  .lindy-bonus .namesake__photo { flex-shrink: 0; margin: 0; max-width: 240px; }
}

/* ==========================================================================
   DESKTOP — min-width: 1440px
   ========================================================================== */
@media (min-width: 1440px) {
  :root { --wrap-max: 1280px; }

  .lindy-bonus .hero { padding: calc(var(--header-h) + 96px) 40px 88px; }
  .lindy-bonus .hero__title { font-size: 108px; }
  .lindy-bonus .hero__stat-value { font-size: 68px; }

  .lindy-bonus .how, .lindy-bonus .prizes, .lindy-bonus .namesake { padding: 104px 0; }

  .lindy-bonus .section-title { font-size: 44px; }
}

/* ==========================================================================
   LARGE DESKTOP — min-width: 1920px
   ========================================================================== */
@media (min-width: 1920px) {
  /* Scoped font-size bump — was on :root but that leaked to the site chrome above
     the page and shifted the header alignment. Confining it to .lindy-bonus.
     --wrap-max is intentionally NOT bumped here; the design's 1480 override at 1920
     caused a visible ~100px left jump as content edges grew outward past the
     narrower value at the 1440-1919 range. */
  .lindy-bonus {
    font-size: 18px;
  }

  .lindy-bonus .hero__title { font-size: 128px; }
  .lindy-bonus .hero__stat-value { font-size: 78px; }
  .lindy-bonus .section-title { font-size: 52px; }

  .lindy-bonus .how, .lindy-bonus .prizes, .lindy-bonus .namesake { padding: 128px 0; }
}
