/* ============================================================
   DJT WATCH — Main Stylesheet
   Palette: Navy #0A1628 · Red #B22234 · Gold #FFD700
   Font: Oswald (display) · Inter (body)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #0A1628;
  color: #F0EBE0;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

:root {
  --navy:      #0A1628;
  --navy-mid:  #112244;
  --navy-card: #0D1E3A;
  --red:       #B22234;
  --red-dark:  #8B1A2A;
  --gold:      #FFD700;
  --gold-dim:  #C9A84C;
  --gold-dark: #A07830;
  --white:     #FFFFFF;
  --off-white: #F0EBE0;
  --gray:      #8899AA;
  --green:     #4ade80;
  --pink:      #f87171;
  --nav-h:     64px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--red);
  height: var(--nav-h);
  box-shadow: 0 2px 24px rgba(0,0,0,0.55);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px; height: 100%;
  display: flex; align-items: center; gap: 28px;
}
.nav-brand {
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem; font-weight: 700;
  letter-spacing: 0.09em; color: white;
  display: flex; align-items: center; gap: 9px;
  margin-right: auto;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.35);
}
.nav-star {
  color: var(--gold); font-size: 1.05rem;
  animation: starPulse 3s ease-in-out infinite;
}
@keyframes starPulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.65; transform:scale(1.2); }
}
.live-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 10px; padding: 2px 9px;
  font-size: .62rem; font-weight: 700;
  letter-spacing: .15em; color: white;
  font-family: 'Inter', sans-serif;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80;
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { opacity:1; box-shadow:0 0 0 0 rgba(74,222,128,.65); }
  50%     { opacity:.55; box-shadow:0 0 0 5px rgba(74,222,128,0); }
}
.nav-links { display: flex; gap: 2px; }
.nav-link {
  font-family: 'Oswald', sans-serif;
  font-size: .92rem; font-weight: 500;
  letter-spacing: .06em;
  color: rgba(255,255,255,.82);
  padding: 8px 15px; border-radius: 4px;
  transition: all .18s; position: relative;
}
.nav-link:hover, .nav-link.active {
  color: white; background: rgba(255,255,255,.13);
}
.nav-link.active::after {
  content: ''; position: absolute;
  bottom: 0; left: 15px; right: 15px;
  height: 2px; background: var(--gold);
  border-radius: 2px;
}
.nav-subscribe {
  font-family: 'Oswald', sans-serif;
  font-size: .88rem; font-weight: 700;
  letter-spacing: .1em;
  background: var(--gold); color: var(--navy);
  padding: 8px 20px; border-radius: 4px;
  transition: all .18s;
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
  white-space: nowrap;
}
.nav-subscribe:hover {
  background: #ffe44d;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
}
.nav-menu-btn {
  display: none; background: none; border: none;
  color: white; font-size: 1.4rem; cursor: pointer;
  padding: 4px 8px;
}

/* ============================================================
   STRIPE DIVIDER
   ============================================================ */
.stripe-divider {
  height: 6px;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0 40px, white 40px 80px, var(--navy) 80px 120px
  );
  flex-shrink: 0;
}
.stripe-divider.thin { height: 3px; }

/* ============================================================
   STAR ROW
   ============================================================ */
.star-row {
  text-align: center; color: var(--gold-dim);
  font-size: .68rem; letter-spacing: .42rem;
  padding: 8px 0; background: var(--navy-mid);
  overflow: hidden; white-space: nowrap;
}

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero {
  position: relative;
  min-height: 420px;
  display: flex; align-items: center; justify-content: center;
  background:
    linear-gradient(to bottom, rgba(10,22,40,.5) 0%, rgba(10,22,40,.88) 100%),
    url('/static/img/eagle.jpg') center 30% / cover no-repeat,
    var(--navy-mid);
  text-align: center;
  padding: 80px 24px 56px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(178,34,52,.18) 0%, transparent 68%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-eyebrow {
  font-family: 'Oswald', sans-serif;
  font-size: .8rem; letter-spacing: .3em;
  color: var(--gold-dim); margin-bottom: 10px;
  text-transform: uppercase;
}
.hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 700; letter-spacing: .12em;
  color: white;
  text-shadow: 0 4px 24px rgba(0,0,0,.65);
  line-height: 1; margin-bottom: 8px;
}
.hero-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem; letter-spacing: .12em;
  color: rgba(255,255,255,.65); margin-bottom: 32px;
}
.hero-stats {
  display: flex; gap: 28px;
  justify-content: center; flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.hero-stat-value {
  font-family: 'Oswald', sans-serif;
  font-size: 1.9rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hero-stat-value.stat-pos { color: var(--green); }
.hero-stat-value.stat-neg { color: var(--pink); }
.hero-stat-label {
  font-size: .68rem; letter-spacing: .15em;
  color: rgba(255,255,255,.55); text-transform: uppercase;
}
.hero-stat-divider {
  width: 1px; height: 44px;
  background: rgba(255,255,255,.18); align-self: center;
}

/* ============================================================
   PAGE BODY
   ============================================================ */
.page-body {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px 120px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 44px 0 28px; }
.section-header {
  display: flex; align-items: center; gap: 11px; margin-bottom: 22px;
}
.section-star { color: var(--gold); font-size: 1.15rem; }
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.45rem; font-weight: 600;
  letter-spacing: .08em; color: var(--off-white);
  text-transform: uppercase;
}
.section-accent {
  flex: 1; height: 1px;
  background: linear-gradient(90deg, var(--gold-dark) 0%, transparent 100%);
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px; padding: 24px;
  transition: border-color .2s, box-shadow .2s;
}
.card:hover {
  border-color: var(--gold-dark);
  box-shadow: 0 0 22px rgba(201,168,76,.1);
}
.card.red-accent  { border-left: 3px solid var(--red); }
.card.gold-accent { border-left: 3px solid var(--gold-dim); }
.summary-text { font-size: 1rem; line-height: 1.75; color: var(--off-white); }

/* ============================================================
   ANALYSIS BULLETS
   ============================================================ */
.analysis-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.analysis-item {
  display: flex; gap: 11px; align-items: flex-start;
  padding: 13px 16px;
  background: var(--navy-card);
  border-radius: 6px;
  border-left: 3px solid var(--red);
  font-size: .94rem; line-height: 1.62; color: var(--off-white);
  transition: border-color .2s;
}
.analysis-item:hover { border-left-color: var(--gold-dim); }
.analysis-bullet { color: var(--gold); font-size: .68rem; margin-top: 5px; flex-shrink: 0; }

/* ============================================================
   TABLES
   ============================================================ */
.table-wrap {
  overflow-x: auto; border-radius: 8px;
  border: 1px solid rgba(255,255,255,.06);
}
table { width: 100%; border-collapse: collapse; font-size: .88rem; }
thead tr { background: var(--navy-mid); }
thead th {
  font-family: 'Oswald', sans-serif;
  font-size: .72rem; letter-spacing: .13em;
  text-transform: uppercase; color: var(--gold-dim);
  padding: 11px 16px; text-align: left;
  border-bottom: 1px solid rgba(255,215,0,.14);
  white-space: nowrap;
}
tbody tr { border-bottom: 1px solid rgba(255,255,255,.04); transition: background .14s; }
tbody tr:hover { background: rgba(255,255,255,.04); }
tbody td { padding: 11px 16px; color: var(--off-white); vertical-align: middle; }
.sym {
  font-family: 'Oswald', sans-serif;
  font-size: .98rem; font-weight: 600; letter-spacing: .05em;
}
.dir-badge {
  display: inline-flex; align-items: center; justify-content: center; gap: 4px;
  width: 80px; padding: 3px 0; border-radius: 4px;
  font-weight: 600; font-size: .82rem;
}
.dir-badge.up      { background: rgba(74,222,128,.14); color: var(--green); }
.dir-badge.down    { background: rgba(248,113,113,.14); color: var(--pink); }
.dir-badge.neutral { background: rgba(136,153,170,.14); color: var(--gray); }
.pct-pos { color: var(--green); font-weight: 600; }
.pct-neg { color: var(--pink); font-weight: 600; }
.stat-pos { color: var(--green); }
.stat-neg { color: var(--pink); }
.price-cell { font-family: 'Oswald', sans-serif; font-size: .88rem; }
.reason-text { font-size: .83rem; color: rgba(240,235,224,.72); line-height: 1.42; max-width: 300px; }
.loading-price { color: var(--gray); font-style: italic; font-size: .78rem; }

/* ============================================================
   SOURCES COLLAPSIBLE
   ============================================================ */
.sources-toggle {
  width: 100%;
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px; padding: 12px 20px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; color: var(--off-white);
  font-family: 'Oswald', sans-serif;
  font-size: .92rem; letter-spacing: .06em;
  transition: background .18s;
}
.sources-toggle:hover { background: rgba(255,255,255,.05); }
.sources-toggle .arrow { transition: transform .2s; font-style: normal; }
.sources-toggle.open .arrow { transform: rotate(180deg); }
.sources-list {
  display: none; flex-direction: column; gap: 4px;
  margin-top: 4px; padding: 12px 16px;
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,.05); border-top: none;
  border-radius: 0 0 6px 6px;
}
.sources-list.open { display: flex; }
.source-item {
  display: flex; gap: 12px; align-items: center;
  font-size: .83rem; color: rgba(240,235,224,.68);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,.04);
}
.source-item:last-child { border-bottom: none; }
.source-label {
  font-family: 'Oswald', sans-serif; font-size: .72rem;
  letter-spacing: .07em;
  background: var(--red); color: white;
  padding: 2px 8px; border-radius: 3px; flex-shrink: 0;
}
.source-url {
  color: var(--gold-dim);
  text-decoration: underline;
  text-decoration-style: dotted;
  word-break: break-all;
}
.source-url:hover { color: var(--gold); }

/* ============================================================
   STICKY SUBSCRIBE BAR
   ============================================================ */
.subscribe-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: linear-gradient(135deg, #0a1628 0%, #1c0a14 100%);
  border-top: 2px solid var(--red);
  padding: 11px 24px;
  display: flex; align-items: center; gap: 14px;
  justify-content: center;
  box-shadow: 0 -4px 24px rgba(0,0,0,.55);
  transition: transform .3s ease;
}
.subscribe-bar.hidden { transform: translateY(100%); }
.subscribe-bar-text {
  font-family: 'Oswald', sans-serif;
  font-size: .95rem; letter-spacing: .05em; color: var(--off-white);
}
.subscribe-bar-text .highlight { color: var(--gold); }
.subscribe-bar-input {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 4px; color: white;
  padding: 8px 13px; font-size: .88rem; width: 210px;
  outline: none; transition: border-color .18s;
}
.subscribe-bar-input:focus { border-color: var(--gold-dim); }
.subscribe-bar-input::placeholder { color: rgba(255,255,255,.38); }
.subscribe-bar-btn {
  font-family: 'Oswald', sans-serif; font-weight: 700;
  letter-spacing: .1em;
  background: var(--gold); color: var(--navy);
  border: none; border-radius: 4px;
  padding: 9px 20px; cursor: pointer; font-size: .88rem;
  transition: all .18s;
}
.subscribe-bar-btn:hover {
  background: #ffe44d; transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255,215,0,.3);
}
.subscribe-bar-close {
  position: absolute; right: 16px;
  background: none; border: none;
  color: rgba(255,255,255,.38);
  cursor: pointer; font-size: 1.1rem; padding: 4px;
  transition: color .18s;
}
.subscribe-bar-close:hover { color: white; }

/* ============================================================
   ARCHIVE PAGE
   ============================================================ */
.archive-list { display: flex; flex-direction: column; gap: 10px; }
.archive-row {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 20px;
  background: var(--navy-card);
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 8px;
  transition: all .18s; color: inherit;
}
.archive-row:hover {
  border-color: var(--gold-dark);
  background: rgba(255,255,255,.03);
  transform: translateX(4px);
}
.archive-date {
  font-family: 'Oswald', sans-serif;
  font-size: .95rem; font-weight: 600;
  color: var(--gold-dim); flex-shrink: 0; width: 185px;
}
.archive-count {
  font-family: 'Oswald', sans-serif; font-size: .77rem;
  background: var(--red); color: white;
  padding: 2px 10px; border-radius: 10px; flex-shrink: 0;
}
.archive-preview {
  font-size: .88rem; color: rgba(240,235,224,.6);
  overflow: hidden; text-overflow: ellipsis;
  white-space: nowrap; flex: 1;
}
.archive-arrow {
  color: rgba(255,255,255,.28); font-size: 1.1rem;
  flex-shrink: 0; transition: color .18s;
}
.archive-row:hover .archive-arrow { color: var(--gold-dim); }

/* ============================================================
   TRACK RECORD PAGE
   ============================================================ */
.track-hero {
  background:
    linear-gradient(to bottom, rgba(10,22,40,.58), rgba(10,22,40,.92)),
    url('/static/img/flag-dark.jpg') center / cover no-repeat,
    var(--navy-mid);
  padding: 60px 24px 44px; text-align: center;
}
.accuracy-stats {
  display: flex; gap: 36px;
  justify-content: center; flex-wrap: wrap; margin-top: 22px;
}
.accuracy-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.accuracy-value {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.accuracy-label {
  font-size: .72rem; letter-spacing: .14em;
  color: rgba(255,255,255,.55); text-transform: uppercase;
}

/* Filter bar */
.filter-bar {
  display: flex; gap: 10px; align-items: center;
  flex-wrap: wrap; margin-bottom: 18px;
}
.filter-label {
  font-family: 'Oswald', sans-serif;
  font-size: .78rem; letter-spacing: .1em;
  color: var(--gold-dim); text-transform: uppercase;
}
.filter-btn {
  font-family: 'Oswald', sans-serif; font-size: .78rem;
  letter-spacing: .06em; padding: 5px 13px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.14);
  background: transparent; color: rgba(255,255,255,.68);
  cursor: pointer; transition: all .18s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--red); border-color: var(--red); color: white;
}
.filter-search {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 20px; color: white;
  padding: 5px 13px; font-size: .83rem;
  outline: none; width: 140px; transition: border-color .18s;
}
.filter-search:focus { border-color: var(--gold-dim); }
.filter-search::placeholder { color: rgba(255,255,255,.3); }

/* ============================================================
   SUBSCRIBE PAGE
   ============================================================ */
.sub-hero {
  background:
    linear-gradient(to bottom, rgba(139,26,42,.78), rgba(10,22,40,.92)),
    url('/static/img/trump.jpg') center 20% / cover no-repeat,
    var(--red-dark);
  padding: 70px 24px 56px; text-align: center;
  position: relative; overflow: hidden;
}
.sub-hero::before {
  content: '★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★';
  position: absolute; top: 10px; left: 0; right: 0;
  text-align: center; color: var(--gold-dim);
  font-size: .68rem; letter-spacing: .42rem; opacity: .55;
}
.sub-hero::after {
  content: '★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★ ★';
  position: absolute; bottom: 10px; left: 0; right: 0;
  text-align: center; color: var(--gold-dim);
  font-size: .68rem; letter-spacing: .42rem; opacity: .55;
}
.sub-form-card {
  max-width: 460px; margin: -44px auto 0;
  position: relative; z-index: 1;
  background: var(--navy-card);
  border: 1px solid rgba(255,215,0,.18);
  border-radius: 12px; padding: 38px;
  box-shadow: 0 20px 60px rgba(0,0,0,.55);
}
.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: .77rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gold-dim);
  margin-bottom: 7px;
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 6px; color: white;
  padding: 11px 15px; font-size: .97rem;
  outline: none; transition: border-color .18s, box-shadow .18s;
}
.form-input:focus {
  border-color: var(--gold-dim);
  box-shadow: 0 0 0 3px rgba(201,168,76,.14);
}
.form-input::placeholder { color: rgba(255,255,255,.3); }
.form-submit {
  width: 100%; background: var(--gold); color: var(--navy);
  border: none; border-radius: 6px; padding: 13px;
  font-family: 'Oswald', sans-serif;
  font-size: 1.02rem; font-weight: 700; letter-spacing: .1em;
  cursor: pointer; transition: all .18s;
  box-shadow: 0 4px 18px rgba(255,215,0,.18);
}
.form-submit:hover {
  background: #ffe44d; transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(255,215,0,.3);
}
.success-msg { text-align: center; padding: 20px; }
.success-icon { font-size: 2.8rem; color: var(--green); }
.success-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.45rem; color: var(--off-white);
  margin: 11px 0 8px; letter-spacing: .06em;
}
.success-text { color: rgba(240,235,224,.7); font-size: .93rem; line-height: 1.6; }

/* ============================================================
   PAGE HERO (non-home pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-mid) 0%, #1a0820 100%);
  padding: 56px 24px 36px; text-align: center;
  border-bottom: 2px solid rgba(178,34,52,.28);
}
.page-hero-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  font-weight: 700; letter-spacing: .12em; color: white;
  text-shadow: 0 2px 14px rgba(0,0,0,.4); margin-bottom: 7px;
}
.page-hero-title .accent { color: var(--gold); }
.page-hero-sub {
  font-size: .84rem; letter-spacing: .12em;
  color: rgba(255,255,255,.48); text-transform: uppercase;
}

/* ============================================================
   BADGES
   ============================================================ */
.badge {
  display: inline-block; padding: 2px 10px;
  border-radius: 10px; font-size: .72rem;
  font-weight: 600; letter-spacing: .04em;
}
.badge-red   { background: rgba(178,34,52,.22); color: var(--pink); border: 1px solid rgba(178,34,52,.38); }
.badge-green { background: rgba(74,222,128,.13); color: var(--green); border: 1px solid rgba(74,222,128,.28); }
.badge-gold  { background: rgba(255,215,0,.13); color: var(--gold); border: 1px solid rgba(255,215,0,.28); }
.badge-gray  { background: rgba(136,153,170,.13); color: var(--gray); border: 1px solid rgba(136,153,170,.28); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-mid); border-top: 1px solid rgba(255,255,255,.05); padding-bottom: 80px; }
.footer-body { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 32px 24px 24px; }
.footer-brand { font-family: 'Oswald', sans-serif; font-size: 1rem; letter-spacing: .12em; color: var(--gold-dim); }
.footer-owner { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; justify-content: center; font-size: .82rem; color: var(--gray); }
.footer-tagline { font-size: .75rem; color: var(--gray); opacity: .5; }
.footer-sep { opacity: .3; }
.footer-link { color: var(--gray); text-decoration: none; transition: color .2s; }
.footer-link:hover { color: var(--gold); }
.footer-copy { font-size: .7rem; color: var(--gray); opacity: .3; }
.footer-disclaimer { font-size: .68rem; color: var(--gray); opacity: .25; margin-top: 8px; max-width: 480px; line-height: 1.5; }

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex; position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--red-dark); padding: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,.5);
    z-index: 999;
  }
  .nav-links.open .nav-link { padding: 10px 16px; border-radius: 4px; }
  .nav-inner { position: relative; gap: 10px; }
  .nav-menu-btn { display: block; }
  .nav-subscribe { padding: 6px 12px; font-size: .8rem; }
  .hero-stats { gap: 14px; }
  .hero-stat-value { font-size: 1.5rem; }
  .hero-stat-divider { height: 36px; }
  .subscribe-bar { flex-wrap: wrap; gap: 8px; padding: 10px 16px; }
  .subscribe-bar-input { width: 100%; }
  .subscribe-bar-text { font-size: .85rem; }
  .archive-preview { display: none; }
  .archive-date { width: auto; }
  .accuracy-value { font-size: 2.1rem; }
  .accuracy-stats { gap: 20px; }
  .sub-form-card { margin: -20px 16px 0; padding: 26px 18px; }
  .footer-links { gap: 8px; }
  .page-body { padding-left: 16px; padding-right: 16px; }
}
