/* ==========================================================================
   LIQUID GLASS — pilot design system
   Loaded only by teams.html. Every class is lg- prefixed so it cannot
   collide with styles.css. If this gets adopted site-wide, these
   primitives (.lg, .lg-seg, .lg-rail) move into styles.css as-is.
   ========================================================================== */

/* ---------- 1. STAGE ------------------------------------------------------
   Glass needs something to refract. The board is a dark ground with slow
   drifting color orbs behind it; every panel samples that light.          */

.lg-board{
  position:relative;
  isolation:isolate;
  overflow:hidden;
  padding:54px 0 88px;
  color:#F7EFE4;
  background:radial-gradient(125% 95% at 50% -12%,#42201D 0%,#28120F 48%,#170A09 100%);
}
.lg-ambient{
  position:absolute;inset:-12% -6%;z-index:-1;
  pointer-events:none;filter:blur(58px);opacity:1;
}
.lg-orb{position:absolute;display:block;border-radius:50%}
.lg-orb-1{
  width:48vw;height:48vw;max-width:580px;max-height:580px;left:-9%;top:-14%;
  background:radial-gradient(circle,rgba(229,84,74,.55) 0%,rgba(229,84,74,0) 68%);
  animation:lgDriftA 26s ease-in-out infinite alternate;
}
.lg-orb-2{
  width:42vw;height:42vw;max-width:520px;max-height:520px;right:-8%;top:18%;
  background:radial-gradient(circle,rgba(239,113,104,.38) 0%,rgba(239,113,104,0) 70%);
  animation:lgDriftB 32s ease-in-out infinite alternate;
}
.lg-orb-3{
  width:54vw;height:54vw;max-width:640px;max-height:640px;left:24%;bottom:-26%;
  background:radial-gradient(circle,rgba(241,231,210,.2) 0%,rgba(241,231,210,0) 66%);
  animation:lgDriftC 38s ease-in-out infinite alternate;
}
@keyframes lgDriftA{to{transform:translate3d(8%,7%,0) scale(1.12)}}
@keyframes lgDriftB{to{transform:translate3d(-9%,11%,0) scale(1.08)}}
@keyframes lgDriftC{to{transform:translate3d(6%,-9%,0) scale(1.14)}}

/* ---------- 2. THE MATERIAL ----------------------------------------------
   .lg is the base surface: a blurred, saturated sample of the backdrop,
   a bright specular top edge, and a pointer-tracked highlight.           */

.lg{
  position:relative;
  border-radius:22px;
  background:linear-gradient(152deg,rgba(255,255,255,.13) 0%,rgba(255,255,255,.05) 46%,rgba(255,255,255,.09) 100%);
  -webkit-backdrop-filter:blur(22px) saturate(165%);
  backdrop-filter:blur(22px) saturate(165%);
  border:1px solid rgba(255,255,255,.15);
  box-shadow:
    0 20px 46px -22px rgba(0,0,0,.8),
    inset 0 1px 0 rgba(255,255,255,.3),
    inset 0 -1px 0 rgba(255,255,255,.06);
  transition:transform .5s cubic-bezier(.22,1,.36,1),box-shadow .5s cubic-bezier(.22,1,.36,1),border-color .4s ease;
}
/* specular highlight — position driven by app.js via --mx/--my */
.lg::after{
  content:"";position:absolute;inset:0;border-radius:inherit;
  pointer-events:none;opacity:0;transition:opacity .45s ease;
  background:radial-gradient(260px circle at var(--mx,50%) var(--my,50%),rgba(255,255,255,.16),transparent 62%);
}
@media(hover:hover) and (pointer:fine){
  .lg:hover::after{opacity:1}
}

/* raised state shared by interactive glass */
.lg-lift:hover{
  transform:translateY(-3px);
  border-color:rgba(255,255,255,.26);
  box-shadow:
    0 30px 60px -26px rgba(0,0,0,.85),
    inset 0 1px 0 rgba(255,255,255,.4),
    inset 0 -1px 0 rgba(255,255,255,.08);
}

/* ---------- 3. SECTION HEADINGS ------------------------------------------ */

.lg-head{margin-bottom:22px}
.lg-eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-family:'DM Sans',sans-serif;font-size:11.5px;font-weight:800;
  letter-spacing:1.5px;text-transform:uppercase;color:var(--accent-bright);
}
.lg-head h2{
  font-family:'DM Sans',sans-serif;font-weight:700;color:#FBF5EC;
  font-size:clamp(26px,3.6vw,36px);margin-top:8px;letter-spacing:-.4px;
}
.lg-head p{
  color:rgba(247,239,228,.66);font-size:14.5px;margin-top:8px;max-width:52ch;
}
.lg-note{
  display:inline-flex;align-items:center;gap:7px;margin-top:14px;
  padding:6px 13px;border-radius:30px;
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.14);
  -webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);
  font-size:11.5px;font-weight:700;letter-spacing:.4px;
  color:rgba(247,239,228,.8);text-transform:uppercase;
}
.lg-note i{
  width:6px;height:6px;border-radius:50%;background:var(--accent);
  box-shadow:0 0 0 3px rgba(229,84,74,.22);font-style:normal;
}

/* ---------- 4. CREST RAIL (Apple Sports style) ---------------------------- */

.lg-rail-wrap{position:relative;margin:0 0 30px}
.lg-rail{
  display:flex;gap:14px;overflow-x:auto;padding:4px 2px 12px;
  scroll-snap-type:x proximity;-webkit-overflow-scrolling:touch;
  scrollbar-width:none;
}
.lg-rail::-webkit-scrollbar{display:none}
/* When every crest fits, spread them across the full width instead of
   letting them bunch to the left. JS measures the natural content width and
   sets .is-spread — a width breakpoint would only be a guess, since the
   cutoff depends on crest size and how many clubs there are. */
.lg-rail-wrap.is-spread .lg-rail{justify-content:space-between}
/* edge fade — only while there is more rail to scroll to (toggled by JS) */
.lg-rail-wrap::after{
  content:"";position:absolute;top:0;right:-2px;width:64px;height:100%;
  pointer-events:none;opacity:0;transition:opacity .4s ease;
  background:linear-gradient(90deg,rgba(22,10,9,0),rgba(22,10,9,.92));
}
.lg-rail-wrap.is-scrollable::after{opacity:1}
.lg-crest{
  flex:none;scroll-snap-align:start;
  display:flex;flex-direction:column;align-items:center;gap:8px;
  width:74px;padding:0;border:0;background:none;cursor:pointer;
  font:inherit;color:inherit;-webkit-appearance:none;appearance:none;
  transition:transform .45s cubic-bezier(.34,1.4,.64,1);
}
/* crests are cut out, so the coin is glass rather than a white disc */
.lg-crest-coin{
  position:relative;width:62px;height:62px;border-radius:50%;
  display:grid;place-items:center;overflow:hidden;
  background:linear-gradient(150deg,rgba(255,255,255,.17),rgba(255,255,255,.05));
  -webkit-backdrop-filter:blur(14px) saturate(160%);backdrop-filter:blur(14px) saturate(160%);
  border:1px solid rgba(255,255,255,.22);
  box-shadow:0 12px 26px -12px rgba(0,0,0,.8),inset 0 1px 0 rgba(255,255,255,.38);
  transition:box-shadow .45s cubic-bezier(.22,1,.36,1),border-color .35s ease;
}
.lg-crest-coin img{
  width:100%;height:100%;object-fit:contain;padding:7px;box-sizing:border-box;
}
.lg-crest-name{
  font-size:10.5px;font-weight:700;letter-spacing:.2px;line-height:1.25;
  text-align:center;color:rgba(247,239,228,.72);
  transition:color .3s ease;
}
.lg-crest:hover{transform:translateY(-5px) scale(1.04)}
.lg-crest:hover .lg-crest-coin{
  box-shadow:0 18px 34px -12px rgba(0,0,0,.85),0 0 0 4px rgba(229,84,74,.28),inset 0 1px 0 rgba(255,255,255,.9);
}
.lg-crest:hover .lg-crest-name{color:#FBF5EC}
.lg-crest.is-active .lg-crest-coin{
  box-shadow:0 18px 34px -12px rgba(0,0,0,.85),0 0 0 4px var(--accent),inset 0 1px 0 rgba(255,255,255,.9);
}
.lg-crest.is-active .lg-crest-name{color:var(--accent-bright)}
.lg-crest:focus-visible{outline:2px solid var(--accent-bright);outline-offset:6px;border-radius:14px}

/* ---------- 5. SEGMENTED CONTROL ------------------------------------------ */

.lg-seg{
  position:relative;display:inline-flex;padding:5px;gap:2px;border-radius:30px;
  background:linear-gradient(150deg,rgba(255,255,255,.12),rgba(255,255,255,.05));
  -webkit-backdrop-filter:blur(18px) saturate(160%);backdrop-filter:blur(18px) saturate(160%);
  border:1px solid rgba(255,255,255,.15);
  box-shadow:0 14px 30px -18px rgba(0,0,0,.8),inset 0 1px 0 rgba(255,255,255,.26);
  margin-bottom:22px;
}
.lg-seg button{
  position:relative;z-index:1;
  border:0;background:none;cursor:pointer;font:inherit;
  padding:9px 20px;border-radius:26px;
  font-size:13.5px;font-weight:700;letter-spacing:.2px;
  color:rgba(247,239,228,.62);
  transition:color .35s ease;
  -webkit-appearance:none;appearance:none;white-space:nowrap;
}
.lg-seg button:hover{color:rgba(247,239,228,.9)}
.lg-seg button.on{color:#2A0F0F}
.lg-seg button:focus-visible{outline:2px solid var(--accent-bright);outline-offset:2px}
/* the pill physically slides between tabs — the signature glass motion */
.lg-seg-pill{
  position:absolute;top:5px;left:0;height:calc(100% - 10px);
  border-radius:26px;pointer-events:none;
  background:linear-gradient(165deg,#FBF3E6,#EDD9C4);
  box-shadow:0 8px 18px -8px rgba(0,0,0,.7),inset 0 1px 0 rgba(255,255,255,.9);
  transform:translateX(0);width:0;
  transition:transform .58s cubic-bezier(.34,1.32,.58,1),width .58s cubic-bezier(.34,1.32,.58,1);
}

/* ---------- 6. MATCH CARDS ------------------------------------------------ */

.lg-matches{display:grid;gap:12px;margin-bottom:44px}
.lg-match{padding:15px 20px 17px}
.lg-match-top{
  display:flex;align-items:center;justify-content:center;gap:10px;
  margin-bottom:12px;
}
.lg-tag{
  font-size:10.5px;font-weight:800;letter-spacing:1.1px;text-transform:uppercase;
  color:rgba(247,239,228,.5);
}
.lg-tag--live{
  display:inline-flex;align-items:center;gap:6px;color:var(--accent-bright);
}
.lg-tag--live::before{
  content:"";width:6px;height:6px;border-radius:50%;background:var(--accent);
  animation:lgPulse 1.8s ease-in-out infinite;
}
@keyframes lgPulse{
  0%,100%{box-shadow:0 0 0 0 rgba(229,84,74,.55)}
  70%{box-shadow:0 0 0 7px rgba(229,84,74,0)}
}
.lg-match-body{
  display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:14px;
  /* keep the two sides near the score instead of stranded at the card edges */
  max-width:660px;margin:0 auto;
}
.lg-nm-short{display:none}

.lg-tba{
  font-weight:800;letter-spacing:1.2px;font-size:12.5px;font-style:normal;
  color:rgba(247,239,228,.45);
}
.lg-side{display:flex;align-items:center;gap:11px;min-width:0}
.lg-side--away{flex-direction:row-reverse}
.lg-side-coin{
  flex:none;width:38px;height:38px;border-radius:50%;overflow:hidden;
  display:grid;place-items:center;
  background:linear-gradient(150deg,rgba(255,255,255,.17),rgba(255,255,255,.05));
  -webkit-backdrop-filter:blur(12px) saturate(160%);backdrop-filter:blur(12px) saturate(160%);
  border:1px solid rgba(255,255,255,.2);
  box-shadow:0 6px 14px -7px rgba(0,0,0,.7),inset 0 1px 0 rgba(255,255,255,.34);
}
.lg-side-coin img{width:100%;height:100%;object-fit:contain;padding:4px;box-sizing:border-box}
.lg-side-name{
  flex:1;min-width:0;font-size:14.5px;font-weight:700;color:#FBF5EC;
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
.lg-side--away .lg-side-name{text-align:right}
.lg-score{
  flex:none;font-family:'DM Sans',sans-serif;font-size:26px;font-weight:700;
  color:#FBF5EC;line-height:1;letter-spacing:-1px;
}
.lg-score--none{color:rgba(247,239,228,.42)}
.lg-mid{
  text-align:center;min-width:86px;
  font-size:13px;font-weight:700;color:rgba(247,239,228,.72);line-height:1.3;
}
.lg-mid span{
  display:block;font-size:10.5px;font-weight:800;letter-spacing:.9px;
  text-transform:uppercase;color:rgba(247,239,228,.4);margin-top:3px;
}

/* empty state for Yesterday / Today */
.lg-empty{
  padding:38px 24px;text-align:center;
}
.lg-empty-ico{
  font-size:30px;display:block;margin-bottom:10px;opacity:.75;
  animation:lgFloat 4.5s ease-in-out infinite;
}
@keyframes lgFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
}
.lg-empty h4{
  font-family:'DM Sans',sans-serif;font-size:18px;font-weight:700;color:#FBF5EC;margin-bottom:5px;
}
.lg-empty p{font-size:13.5px;color:rgba(247,239,228,.6);max-width:40ch;margin:0 auto}

/* ---------- 7. GROUP TABLES ----------------------------------------------- */

.lg-groups{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:14px;
}
.lg-group{padding:18px 20px 14px;scroll-margin-top:90px}
.lg-group.is-focus{
  border-color:rgba(229,84,74,.5);
  box-shadow:0 26px 54px -24px rgba(0,0,0,.85),0 0 0 1px rgba(229,84,74,.35),inset 0 1px 0 rgba(255,255,255,.34);
}
.lg-group-head{
  display:flex;align-items:center;justify-content:space-between;gap:10px;
  padding-bottom:11px;margin-bottom:4px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.lg-group-head h3{
  font-family:'DM Sans',sans-serif;font-size:15px;font-weight:700;color:#FBF5EC;letter-spacing:.2px;
}
.lg-group-head em{
  font-style:normal;font-size:10.5px;font-weight:800;letter-spacing:1px;
  text-transform:uppercase;color:rgba(247,239,228,.42);
}
.lg-table{width:100%;border-collapse:collapse}
.lg-table th{
  font-size:10px;font-weight:800;letter-spacing:.8px;text-transform:uppercase;
  color:rgba(247,239,228,.42);padding:9px 4px;text-align:center;
}
.lg-table th:first-child{text-align:left;padding-left:2px}
.lg-table td{
  padding:9px 4px;text-align:center;font-size:13px;font-weight:600;
  color:rgba(247,239,228,.78);
  border-top:1px solid rgba(255,255,255,.06);
}
.lg-table td:first-child{text-align:left;padding-left:2px}
.lg-table td:last-child{color:#FBF5EC;font-weight:800}
.lg-team-cell{display:flex;align-items:center;gap:9px;min-width:0}
.lg-cell-coin{
  width:24px;height:24px;border-radius:50%;flex:none;overflow:hidden;
  display:grid;place-items:center;font-size:11px;
  background:linear-gradient(150deg,rgba(255,255,255,.16),rgba(255,255,255,.05));
  border:1px solid rgba(255,255,255,.18);
}
.lg-cell-coin img{width:100%;height:100%;object-fit:contain;padding:2px;box-sizing:border-box}

/* undrawn slot placeholder — must come after both coin rules to win the cascade */
.lg-coin--tba{
  background:rgba(255,255,255,.05);
  border:1px dashed rgba(255,255,255,.28);
  color:rgba(247,239,228,.45);
  font-weight:800;
  box-shadow:none;
}
.lg-side-coin.lg-coin--tba{font-size:15px}
.lg-cell-coin.lg-coin--tba{font-size:11px}
.lg-team-cell span{
  font-size:13.5px;font-weight:700;color:#FBF5EC;
  overflow:hidden;text-overflow:ellipsis;white-space:nowrap;
}
.lg-table tbody tr{transition:background .3s ease}
@media(hover:hover) and (pointer:fine){
  .lg-table tbody tr:hover{background:rgba(255,255,255,.05)}
}

/* ---------- 8. ENTRANCE MOTION -------------------------------------------- */

.lg-in{
  opacity:0;transform:translateY(22px) scale(.985);
  transition:opacity .7s cubic-bezier(.22,1,.36,1),transform .7s cubic-bezier(.22,1,.36,1);
  will-change:opacity,transform;
}
.lg-in.is-in{opacity:1;transform:none}

/* ---------- 9. RESPONSIVE -------------------------------------------------- */

@media(max-width:640px){
  .lg-board{padding:40px 0 64px}
  .lg-match{padding:13px 12px 15px}
  .lg-match-body{gap:6px}
  .lg-side{gap:7px}
  /* a placeholder dash is pure noise on a phone — real scores still show */
  .lg-score--none{display:none}
  .lg-side-coin{width:32px;height:32px}
  .lg-side-name{font-size:13.5px}
  .lg-nm-full{display:none}
  .lg-nm-short{display:inline}
  .lg-score{font-size:21px}
  .lg-mid{min-width:56px;font-size:12px}
  .lg-seg{display:flex;width:100%;justify-content:space-between}
  .lg-seg button{flex:1;padding:9px 8px;font-size:12.5px;text-align:center}
  .lg-crest{width:66px}
  .lg-crest-coin{width:56px;height:56px}
  .lg-groups{grid-template-columns:1fr}
  .lg-group{padding:16px 15px 12px}
  .lg-table th,.lg-table td{padding:8px 2px;font-size:12px}
  .lg-team-cell span{font-size:12.5px}
}

/* small phones — the longest club name (Centennial) has to clear the row */
@media(max-width:400px){
  .lg-side-coin{width:29px;height:29px}
  .lg-side-name{font-size:12.5px}
  .lg-mid{min-width:52px;font-size:11.5px}
  .lg-crest{width:62px}
  .lg-crest-coin{width:52px;height:52px}
}

/* ==========================================================================
   SITE-WIDE THEME
   Everything below is scoped to body.lg-site, so loading this file alone
   changes nothing — a page opts in by adding the class. Admin surfaces
   (crm*, manager-dashboard, sign) deliberately never opt in.
   ========================================================================== */

body.lg-site{
  /* the whole site reads these four tokens, so flipping them re-themes
     every component at once instead of chasing each one individually */
  --ink:#F7EFE4;
  --muted:rgba(247,239,228,.62);
  --line:rgba(255,255,255,.12);
  --c6:rgba(255,255,255,.07);
  background:#160A09;
  color:var(--ink);
}
/* one fixed ambient field behind the whole page — this is what the glass
   panels sample and refract as you scroll */
body.lg-site::before{
  content:"";position:fixed;inset:0;z-index:-1;pointer-events:none;
  background:
    radial-gradient(58vw 48vw at 6% 2%,rgba(229,84,74,.26),transparent 62%),
    radial-gradient(50vw 44vw at 98% 26%,rgba(239,113,104,.19),transparent 66%),
    radial-gradient(64vw 54vw at 44% 100%,rgba(241,231,210,.1),transparent 64%),
    #160A09;
}

/* sections lose their cream fill and let the ambient field show through */
.lg-site .sec,
.lg-site .register{background:transparent}

/* every card-like surface becomes glass */
.lg-site .panel,
.lg-site .news,
.lg-site .date-card,
.lg-site .standings-wrap,
.lg-site .cal-card,
.lg-site .bracket-card,
.lg-site .form-card,
.lg-site .field-card,
.lg-site .venue-info,
.lg-site .rules-card,
.lg-site .cal-live-wrap,
.lg-site .inspector-card,
.lg-site .reg-closed,
.lg-site .tabs{
  background:linear-gradient(152deg,rgba(255,255,255,.13) 0%,rgba(255,255,255,.05) 46%,rgba(255,255,255,.09) 100%);
  -webkit-backdrop-filter:blur(22px) saturate(165%);
  backdrop-filter:blur(22px) saturate(165%);
  border:1px solid rgba(255,255,255,.15);
  box-shadow:
    0 20px 46px -22px rgba(0,0,0,.8),
    inset 0 1px 0 rgba(255,255,255,.3);
  color:var(--ink);
}
.lg-site .panel:hover,
.lg-site .news:hover,
.lg-site .field-card:hover,
.lg-site .rules-card:hover{border-color:rgba(255,255,255,.26)}

/* brick red is unreadable on the dark ground — lift accents to the bright tint */
.lg-site .eyebrow,
.lg-site .field label,
.lg-site .fc-note,
.lg-site .tr-num,
.lg-site .branch-title,
.lg-site .news .k,
.lg-site .panel .sub{color:var(--accent-bright) !important}
.lg-site .panel .sub{opacity:.85}

/* forms */
.lg-site .field input,
.lg-site .field select,
.lg-site .field textarea{
  background:rgba(255,255,255,.07);
  border-color:rgba(255,255,255,.16);
  color:var(--ink);
}
.lg-site .field input::placeholder,
.lg-site .field textarea::placeholder{color:rgba(247,239,228,.36)}
.lg-site .field input:focus,
.lg-site .field select:focus,
.lg-site .field textarea:focus{background:rgba(255,255,255,.13)}
/* native dropdowns paint with system colors — keep options legible */
.lg-site .field select option{color:#241a14;background:#FCF8F0}

/* calendar (schedule page) */
.lg-site .cal-dow{background:rgba(255,255,255,.05)}
.lg-site .cal-cell{
  background:rgba(255,255,255,.05);
  border-color:rgba(255,255,255,.1);
  color:var(--ink);
}
.lg-site .cal-cell:hover{background:rgba(255,255,255,.11)}
.lg-site .cal-cell.is-other-month{opacity:.35}
.lg-site .cal-inspector-pane{background:rgba(255,255,255,.04)}
.lg-site .cal-grid-pane{border-right-color:rgba(255,255,255,.1)}
.lg-site .cal-nav button{background:rgba(255,255,255,.08);color:var(--ink);border-color:rgba(255,255,255,.16)}

/* venue gallery (schedule page) */
.lg-site .venue-gallery figure{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
}

/* calendar inspector — stacked translucency was washing this panel out */
.lg-site .cal-inspector-pane{background:rgba(0,0,0,.2)}
.lg-site .inspector-card{background:rgba(255,255,255,.08)}
.lg-site .cal-top h3,
.lg-site .insp-title,
.lg-site .insp-meta b{color:var(--ink)}
.lg-site .insp-date,
.lg-site .insp-meta,
.lg-site .insp-desc{color:var(--muted)}
.lg-site .cal-today-tag{color:var(--accent-bright)}

/* badges that were dark-brick-on-cream by design */
.lg-site .reg-closed-badge{
  color:var(--accent-bright);
  background:rgba(229,84,74,.16);
  border-color:rgba(229,84,74,.32);
}

/* rules card reveal — the cream overlay would hide the now-light text */
.lg-site .rc-overlay{
  background:rgba(26,12,11,.94);
  -webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);
}

/* brick-red small text sits too close to the dark ground to read */
.lg-site .rc-cta,
.lg-site .contact-list b{color:var(--accent-bright)}

/* dark text on a bright accent fill is correct — keep those legible */
.lg-site .btn-solid,
.lg-site .news .ph .chip,
.lg-site .hero-card .tag,
.lg-site .socials a:hover,
.lg-site .nav-toggle:active{color:var(--c1)}

/* waiver signing + manager dashboard surfaces */
.lg-site .waiver-block,
.lg-site .roster-status-list li,
.lg-site .field label.choice-option{
  background:rgba(255,255,255,.06);
  border-color:rgba(255,255,255,.16);
}
.lg-site .field-label-standalone,
.lg-site .waiver-hint{color:var(--accent-bright)}
.lg-site .dash-elig-banner{background:rgba(255,255,255,.08);color:var(--accent-bright)}
.lg-site .dash-elig-banner.eligible{background:rgba(90,200,150,.14);color:#8FE3BB}

/* sponsor tiles stay white — the logos are drawn on white */
.lg-site .fs-tile{background:#fff}

/* ---------- 10. ACCESSIBILITY --------------------------------------------- */

@media(prefers-reduced-motion:reduce){
  .lg-orb,.lg-empty-ico,.lg-tag--live::before{animation:none}
  .lg,.lg-crest,.lg-seg-pill,.lg-in{transition:none}
  .lg-in{opacity:1;transform:none}
}

/* Safari/Firefox without backdrop-filter still need readable panels */
@supports not ((-webkit-backdrop-filter:blur(1px)) or (backdrop-filter:blur(1px))){
  .lg,.lg-seg{background:rgba(52,24,22,.86)}
}
