/* ============================================================
   FanDuel PA — Bespoke stylesheet
   Palette: electric blue #1493ff / deep blue #0070eb
             near-black #131314 / off-black #1a1b1d
             white #ffffff / surface #212226
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:      #1493ff;
  --blue-deep: #0070eb;
  --black:     #131314;
  --surface:   #1a1b1d;
  --surface2:  #212226;
  --surface3:  #2a2c31;
  --white:     #ffffff;
  --muted:     #9aa0ae;
  --border:    rgba(255,255,255,.1);
  --radius:    6px;
  --radius-lg: 12px;
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', 'Consolas', monospace;
  --transition: .18s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  min-width: 360px;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }

/* tabular numerals for odds */
.odds, .parlay-odds { font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; }

/* ---------- Site Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 2px solid var(--blue-deep);
}

.hdr-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.hdr-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.hdr-logo img {
  height: 28px;
  width: auto;
}
.hdr-logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--white);
}
.hdr-logo-text span { color: var(--blue); }

.hdr-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.hdr-nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.hdr-nav a:hover, .hdr-nav a.active {
  color: var(--white);
  background: var(--surface2);
  text-decoration: none;
}

.hdr-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lang-switch {
  display: flex;
  gap: 2px;
  background: var(--surface2);
  border-radius: var(--radius);
  padding: 3px;
}
.lang-switch a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 3px 7px;
  border-radius: 4px;
  color: var(--muted);
  transition: all var(--transition);
}
.lang-switch a.active, .lang-switch a:hover {
  background: var(--blue-deep);
  color: var(--white);
  text-decoration: none;
}

.btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  letter-spacing: .2px;
  white-space: nowrap;
}
.btn:hover { opacity: .88; transform: translateY(-1px); text-decoration: none; }
.btn-outline {
  border: 1.5px solid var(--blue);
  color: var(--blue);
  background: transparent;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-lg {
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 8px;
}

/* Burger — hidden on desktop */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .2s;
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 60px 0 0 0;
  background: var(--surface);
  z-index: 99;
  padding: 20px;
  overflow-y: auto;
  flex-direction: column;
  gap: 6px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.mobile-nav a:hover { background: var(--surface2); text-decoration: none; }
.mobile-nav .mn-divider {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}
.mobile-nav .mn-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.mobile-nav .mn-actions .btn { flex: 1; text-align: center; }
.mobile-nav .lang-switch {
  align-self: flex-start;
  margin-top: 8px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0070eb 0%, #0a0c12 55%);
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/hero-bg.jpg') center/cover no-repeat;
  opacity: .18;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero-copy {}
.hero-tag {
  display: inline-block;
  background: rgba(20,147,255,.2);
  border: 1px solid rgba(20,147,255,.5);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-bottom: 16px;
}
.hero-title .hl { color: var(--blue); }
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  max-width: 480px;
  margin-bottom: 28px;
  line-height: 1.55;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Parlay board */
.parlay-board {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.parlay-header {
  background: var(--blue-deep);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.parlay-header-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}
.parlay-badge {
  background: rgba(255,255,255,.15);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.parlay-rows {}
.parlay-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}
.parlay-row:last-child { border-bottom: none; }
.parlay-sport {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  margin-bottom: 2px;
}
.parlay-match {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.parlay-market {
  font-size: 11px;
  color: var(--muted);
}
.parlay-odds-chip {
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: var(--radius);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  min-width: 52px;
  text-align: center;
}
.parlay-footer {
  padding: 12px 16px;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.parlay-total-label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .5px; }
.parlay-total-odds { font-size: 20px; font-weight: 900; color: var(--blue); font-variant-numeric: tabular-nums; }
.parlay-footer .btn { font-size: 12px; padding: 6px 14px; }

/* ---------- Trust bar ---------- */
.trust-bar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
}
.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
.trust-icon {
  width: 18px;
  height: 18px;
  background: var(--blue-deep);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 10px; height: 10px; fill: var(--white); }

/* ---------- Section Shell ---------- */
.section {
  padding: 64px 20px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.section-dark { background: var(--surface); }
.section-darker { background: var(--surface2); }
.section-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 900;
  letter-spacing: -.5px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.5;
}

/* ---------- Sports Odds Grid ---------- */
.odds-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.odds-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}
.odds-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.odds-card-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.odds-card-body { padding: 14px 16px; }
.odds-card-sport {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--blue);
  margin-bottom: 4px;
}
.odds-card-match {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}
.odds-card-time {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 12px;
}
.odds-card-markets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.odds-btn {
  background: var(--surface3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 6px 4px;
  text-align: center;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.odds-btn:hover { background: var(--blue-deep); border-color: var(--blue); }
.odds-btn-team { font-size: 10px; color: var(--muted); display: block; }
.odds-btn-price { font-size: 14px; font-weight: 800; color: var(--white); font-variant-numeric: tabular-nums; display: block; }

/* ---------- Feature Row (icon-text) ---------- */
.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-item {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  transition: border-color var(--transition);
}
.feature-item:hover { border-color: var(--blue); }
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(20,147,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.feature-icon svg { width: 22px; height: 22px; fill: var(--blue); }
.feature-title {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 6px;
}
.feature-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ---------- Promo Cards ---------- */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.promo-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.promo-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.promo-card-body {
  padding: 16px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.promo-card-tag {
  display: inline-block;
  background: rgba(20,147,255,.15);
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
  margin-bottom: 8px;
  align-self: flex-start;
}
.promo-card-title {
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.3;
}
.promo-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
  flex: 1;
}
.promo-card-cta {
  margin-top: 14px;
  align-self: flex-start;
}

/* ---------- Payment Strip ---------- */
.payment-section {
  padding: 40px 20px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.payment-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.payment-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}
.payment-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.payment-badge {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}

/* ---------- SEO Article Block ---------- */
.seo-section {
  padding: 64px 20px;
  background: var(--black);
}
.seo-inner {
  max-width: 780px;
  margin: 0 auto;
}

/* Typography inside article */
.seo-inner h1 {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  letter-spacing: -.5px;
  line-height: 1.15;
  margin-bottom: 24px;
  color: var(--white);
}
.seo-inner h2 {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 800;
  letter-spacing: -.3px;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--white);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blue-deep);
}
.seo-inner h3 {
  font-size: clamp(15px, 2vw, 20px);
  font-weight: 700;
  margin-top: 28px;
  margin-bottom: 10px;
  color: rgba(255,255,255,.9);
}
.seo-inner p {
  font-size: 15.5px;
  color: rgba(255,255,255,.8);
  margin-bottom: 16px;
  line-height: 1.7;
}
.seo-inner strong { color: var(--white); font-weight: 700; }
.seo-inner em { color: var(--blue); font-style: normal; font-weight: 600; }
.seo-inner a { color: var(--blue); }
.seo-inner a:hover { text-decoration: underline; }
.seo-inner ul, .seo-inner ol {
  padding-left: 20px;
  margin-bottom: 16px;
}
.seo-inner li {
  font-size: 15px;
  color: rgba(255,255,255,.8);
  margin-bottom: 8px;
  line-height: 1.6;
}
.seo-inner li strong { color: var(--white); }

/* Tables in article */
.seo-inner table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  table-layout: fixed;
  font-size: 14px;
}
.seo-inner th {
  background: var(--surface2);
  color: var(--white);
  font-weight: 700;
  padding: 10px 12px;
  border: 1px solid var(--border);
  text-align: left;
  overflow-wrap: anywhere;
}
.seo-inner td {
  padding: 9px 12px;
  border: 1px solid var(--border);
  color: rgba(255,255,255,.78);
  overflow-wrap: anywhere;
  vertical-align: top;
}
.seo-inner tr:nth-child(even) td { background: rgba(255,255,255,.03); }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  padding: 12px 20px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.breadcrumb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  flex-wrap: wrap;
}
.breadcrumb-inner a { color: var(--muted); }
.breadcrumb-inner a:hover { color: var(--blue); }
.breadcrumb-sep { color: var(--border); }
.breadcrumb-current { color: var(--white); font-weight: 600; }

/* ---------- FAQ Accordion ---------- */
.faq-section {
  padding: 64px 20px;
  background: var(--surface2);
}
.faq-inner {
  max-width: 780px;
  margin: 0 auto;
}
.faq-title-block {
  margin-bottom: 32px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  padding: 16px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--blue); }
.faq-q-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--surface2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), transform var(--transition);
}
.faq-q-icon svg { width: 10px; height: 10px; fill: var(--muted); transition: fill var(--transition); }
.faq-item.open .faq-q-icon { background: var(--blue); transform: rotate(45deg); }
.faq-item.open .faq-q-icon svg { fill: var(--white); }
.faq-a {
  display: none;
  padding: 0 20px 16px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
  line-height: 1.6;
}
.faq-item.open .faq-a { display: block; }
.faq-a p { margin-bottom: 8px; }
.faq-a a { color: var(--blue); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--surface);
  border-top: 2px solid var(--blue-deep);
  padding: 48px 20px 20px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand {}
.footer-logo {
  margin-bottom: 12px;
}
.footer-logo img { height: 24px; width: auto; }
.footer-logo-text {
  font-size: 20px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.3px;
}
.footer-logo-text span { color: var(--blue); }
.footer-tagline {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
}
.footer-rg {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,80,80,.12);
  border: 1px solid rgba(255,80,80,.3);
  color: #ff6b6b;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-col-links a {
  color: var(--muted);
  font-size: 13px;
  transition: color var(--transition);
}
.footer-col-links a:hover { color: var(--white); text-decoration: none; }

.footer-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
}
.footer-copyright { font-size: 12px; color: var(--muted); }
.footer-rg-line {
  font-size: 11px;
  color: rgba(255,255,255,.35);
}

/* ---------- Interior page hero (breadcrumb pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--black) 100%);
  padding: 48px 20px;
  border-bottom: 1px solid var(--border);
}
.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.page-hero-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.page-hero-title {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
  letter-spacing: -.5px;
  line-height: 1.1;
  max-width: 720px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .parlay-board { max-width: 480px; }
  .feature-row { grid-template-columns: repeat(2, 1fr); }
  .odds-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 24px; }
}

@media (max-width: 860px) {
  /* Desktop header items → hidden */
  .hdr-nav { display: none; }
  .hdr-actions { display: none; }
  /* Show burger */
  .burger { display: flex; }
}

@media (max-width: 680px) {
  .promo-grid { grid-template-columns: 1fr; }
  .odds-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 560px) {
  .section { padding: 40px 16px; }
  .seo-section { padding: 40px 16px; }
  .hero-inner { padding: 40px 16px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }
  .feature-row { grid-template-columns: 1fr; }
  /* Responsive tables */
  .seo-inner table { font-size: 12px; }
  .seo-inner th, .seo-inner td { padding: 6px 8px; }
  .breadcrumb-inner { font-size: 11px; }
  .hdr-inner { padding: 0 16px; }
}

/* Burger animation when open */
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
