/* ===================== assets/style.css (TOP) ===================== */
:root{
  --navy:#000080;
  --columbia:#4F86C6;
  --white:#ffffff;
  --bg:#070a12;
  --text:rgba(255,255,255,.92);
  --muted:rgba(255,255,255,.70);
  --border:rgba(255,255,255,.14);
  --radius:18px;
  --max:1320px;
  --shadow:0 10px 30px rgba(0,0,0,.35);
}
*{box-sizing:border-box}
html,body{height:100%}

/* --- Corner mascot (upper-right) --- */
.mascotCorner{
  position:fixed;
  top:12px;
  right:12px;
  z-index:50;
  width:clamp(52px, 7vw, 96px);
  height:auto;
  opacity:.95;
  pointer-events:none;
  filter:drop-shadow(0 10px 18px rgba(0,0,0,.35));
}
@media (max-width: 560px){
  /* prevent covering usable UI on small screens / zoom */
  .mascotCorner{display:none;}
}

/* --- Fixed background layer (anchored photo) --- */
body{position:relative;margin:0;font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;background:transparent;color:var(--text)}
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  /* Anchored black & white school photo + dark overlay for readability */
  background:
    linear-gradient(180deg, rgba(5,6,11,.90), rgba(7,10,18,.82) 55%, rgba(5,6,11,.90)),
    url('bg-school-bw.jpg');
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

a{color:inherit;text-decoration:none}

.container{max-width:var(--max);margin:0 auto;padding:22px 16px 60px}

.topbar{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:10px 0 18px;flex-wrap:wrap}

.brand{display:flex;flex-direction:column;gap:4px}
.brand .title{font-size:44px;font-weight:800;letter-spacing:.3px}
.brand .subtitle{font-size:13px;color:var(--muted)}

.searchRow{display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.searchRow input{
  width:min(380px,78vw);
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
}

/* --- HERO: no border, no box --- */
.hero{display:grid;gap:12px;padding:4px 0 10px}

/* ===== Quick Launch scroller w/ arrows ===== */
.quickBar{
  display:flex;
  align-items:center;
  position:relative;
  width:100%;
  padding:4px 52px 0;
  overflow:hidden;
}
.quick{
  display:flex;
  gap:10px;
  flex-wrap:nowrap;
  overflow-x:auto;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  padding:4px 2px 8px;
  scrollbar-width:none;
  flex:1 1 auto;
  min-width:0;
}
.quick::-webkit-scrollbar{display:none}

/* BIG quick-launch cards */
.qcard{
  flex:0 0 auto;
  width:200px;
  min-width:200px;
  max-width:200px;
  height:86px;
  display:flex;
  align-items:center;
  gap:10px;
  border-radius:18px;
  border:2px solid rgba(0,0,128,.55);
  background:linear-gradient(135deg, var(--columbia) 0%, #e6eef7 100%);
  color:var(--navy);
  padding:10px 12px;
  box-shadow:0 12px 26px rgba(0,0,0,.18);
  transition:transform .08s ease, box-shadow .2s ease, border-color .2s ease;
  position:relative;
}
.qcard:hover{transform:translateY(-1px);box-shadow:0 16px 32px rgba(0,0,0,.22);border-color:rgba(0,0,128,.75)}

.qIcon{
  width:60px;
  height:60px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgb(255,255,255);
  border:1px solid rgba(0,0,128,.25);
  flex:0 0 auto;
  line-height:0;
  overflow:hidden;
}
.qIcon svg,.qIcon img{width:100%;height:100%;display:block;transform:scale(0.5);transform-origin:center}
.qIcon img{object-fit:cover;object-position:center}

.qMeta{display:flex;flex-direction:column;gap:4px;min-width:0}
.qTitle{
  font-weight:900;
  font-size:14px;
  line-height:1.15;
  letter-spacing:.2px;
  color:var(--navy);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.qHint{font-size:12px;font-weight:800;opacity:.85;color:rgba(0,0,128,.85)}
.qGo{position:absolute;right:12px;top:50%;transform:translateY(-50%);font-weight:900;font-size:16px;opacity:.85;pointer-events:none}

.qArrow{
  width:40px;height:40px;border-radius:14px;
  border:1px solid rgba(0,0,128,.35);
  background:rgba(255,255,255,.75);
  color:var(--navy);
  font-size:22px;
  font-weight:800;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  user-select:none;
  box-shadow:0 8px 20px rgba(0,0,0,.18);
  transition:transform .08s ease, background .2s ease, opacity .2s ease;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  z-index:5;
}
.qArrow.left{left:0}
.qArrow.right{right:0}
.qArrow:hover{transform:translateY(-1px);background:rgba(255,255,255,.9)}
.qArrow:active{transform:translateY(0)}
.qArrow:disabled{opacity:.35;cursor:default;transform:none}

/* Section titles */
.sectionTitle{display:flex;align-items:baseline;justify-content:space-between;gap:12px;margin:22px 0 10px}
.sectionTitle h2{margin:0;font-size:16px;letter-spacing:.2px}
.sectionTitle span{color:var(--muted);font-size:12px}

/* Pills */
.pills{display:flex;gap:8px;flex-wrap:wrap}
.pill{
  padding:9px 11px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--muted);
  cursor:pointer;
  user-select:none;
  font-size:12px;
  font-weight:600;
  transition:transform .12s ease, box-shadow .18s ease, filter .18s ease;
}
.pill[data-tag="All"]{background:#e9edf4;color:#1e2f4f;border-color:#c9d3e6}
.pill[data-tag="Creative Tech"]{background:#4F86C6;color:#ffffff;border-color:#3569a8}
.pill[data-tag="Computing"]{background:#2f9e8f;color:#ffffff;border-color:#23766a}
.pill[data-tag="Engineering"]{background:#f2a900;color:#1a1a1a;border-color:#c78a00}
.pill[data-tag="Fabrication"]{background:#7a5fc0;color:#ffffff;border-color:#5d47a0}
.pill.active{box-shadow:0 4px 10px rgba(0,0,0,.25);transform:translateY(-1px)}
.pill:hover{transform:translateY(-1px);box-shadow:0 6px 14px rgba(0,0,0,.25);filter:brightness(1.08)}
.pill:focus-visible{outline:none;box-shadow:0 0 0 3px rgba(79,134,198,.45),0 6px 14px rgba(0,0,0,.35)}

/* Project scroller track */
.track{display:grid;grid-template-columns:repeat(5, 1fr);gap:12px;padding:6px 2px 12px;overflow:visible}

/* Project cards */
.card{
  min-width:240px;
  border:1px solid var(--navy);
  background:linear-gradient(135deg, var(--columbia) 0%, #e6eef7 100%);
  color:var(--navy);
  border-radius:var(--radius);
  padding:14px 14px 12px;
  box-shadow:0 10px 24px rgba(0,0,0,.18);
  transition:transform .10s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover{transform:translateY(-2px);border-color:rgba(79,134,198,.45)}
.kicker{display:flex;align-items:center;justify-content:space-between;gap:10px;color:var(--muted);font-size:18px}
.kicker span:first-child{
  font-weight:750;
  color:#ffffff;
  -webkit-text-stroke:0.75px var(--navy);
  text-stroke:0.75px var(--navy);
  text-shadow:-0.75px -0.75px 0 var(--navy), 0.75px -0.75px 0 var(--navy), -0.75px 0.75px 0 var(--navy), 0.75px 0.75px 0 var(--navy);
}
.badge{padding:6px 9px;border-radius:999px;border:1px solid var(--border);background:rgba(0,0,0,.18);color:var(--muted);font-size:11px}
.badge[data-tag="Creative Tech"]{background:#4F86C6;color:#fff;border-color:#3569a8}
.badge[data-tag="Computing"]{background:#2f9e8f;color:#fff;border-color:#23766a}
.badge[data-tag="Engineering"]{background:#f2a900;color:#1a1a1a;border-color:#c78a00}
.badge[data-tag="Fabrication"]{background:#7a5fc0;color:#fff;border-color:#5d47a0}
.card h3{margin:10px 0 6px;font-size:18px}
.card p{margin:0 0 12px;color:var(--navy);font-weight:700;line-height:1.35;font-size:13px}
.go{display:flex;align-items:center;justify-content:space-between;gap:8px;border-top:1px solid rgba(255,255,255,.10);padding-top:10px;font-size:13px}
.footer{margin-top:30px;color:rgba(255,255,255,.55);font-size:12px;text-align:center}

/* ---- Images inside cards ---- */
.imgWrap{
  height:150px;
  border-radius:14px;
  overflow:hidden;
  background:linear-gradient(135deg, rgba(79,134,198,.18), rgba(0,0,128,.12));
  border:1px solid rgba(255,255,255,.10);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:10px;
}
.tileImg{width:100%;height:100%;object-fit:cover;padding:0;box-sizing:border-box}

/* Project pages (tools registry) — minimal styling */
.pageWrap{max-width:var(--max);margin:0 auto;padding:22px 16px 60px}
.pageTop{display:flex;align-items:flex-end;justify-content:space-between;gap:12px;flex-wrap:wrap;padding:10px 0 14px}
.pageHeroIcon{width:clamp(72px, 10vw, 120px);height:clamp(72px, 10vw, 120px);border-radius:22px;object-fit:contain;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.16);padding:10px;flex:0 0 auto;box-shadow:0 12px 30px rgba(0,0,0,.25)}
.pageTitle{font-size:34px;font-weight:900;letter-spacing:.2px}
.pageSub{color:var(--muted);font-size:13px;font-weight:700}
.backLink{display:inline-block;margin:10px 0 14px;font-weight:900;color:rgba(255,255,255,.9)}
.toolsGrid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.toolCard{border:1px solid rgba(255,255,255,.14);border-radius:18px;background:rgba(255,255,255,.05);padding:14px;box-shadow:0 10px 24px rgba(0,0,0,.18);transition:transform .10s ease, box-shadow .2s ease}
.toolCard:hover{transform:translateY(-1px);box-shadow:0 14px 30px rgba(0,0,0,.22)}
.toolHead{display:flex;align-items:flex-start;justify-content:space-between;gap:10px}
.toolLeft{display:flex;align-items:center;gap:10px;min-width:0}
.toolLogo{
  width:84px;
  height:84px;
  border-radius:18px;
  object-fit:contain;
  background:rgba(255,255,255,.10);
  padding:10px;
  flex:0 0 auto;
  box-shadow:0 10px 24px rgba(0,0,0,.25);
}

.toolTitle{font-weight:900;line-height:1.15}
.toolBadge{font-size:11px;padding:5px 8px;border-radius:999px;border:1px solid rgba(255,255,255,.14);color:rgba(255,255,255,.88);background:rgba(0,0,0,.18);white-space:nowrap}
.toolBody{margin-top:10px;display:grid;gap:10px}
.toolDesc{color:rgba(255,255,255,.85);font-size:13px;line-height:1.35}
.toolTags{display:flex;flex-wrap:wrap;gap:6px}
.tag{font-size:11px;padding:4px 7px;border-radius:999px;border:1px solid rgba(255,255,255,.10);color:rgba(255,255,255,.75);background:rgba(0,0,0,.15)}
.toolActions{display:flex;align-items:center;justify-content:space-between;gap:10px}
.openBtn{border:none;border-radius:14px;padding:10px 12px;font-weight:900;background:rgba(79,134,198,.85);color:white;cursor:pointer}
.openBtn:hover{filter:brightness(1.06)}
.smallNote{font-size:11px;color:rgba(255,255,255,.65);font-weight:700}

/* Responsive */
@media (max-width:980px){.track{grid-template-columns:repeat(3,1fr)}.toolsGrid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:620px){.track{grid-template-columns:repeat(2,1fr)}.qcard{min-width:220px}.toolsGrid{grid-template-columns:1fr}.pageTitle{font-size:28px}}

/* Digital Art (and future project pages) — content blocks */
.projectIntro{
  display:flex;align-items:flex-start;justify-content:space-between;gap:14px;
  padding:14px;border:1px solid rgba(255,255,255,.14);border-radius:18px;
  background:rgba(255,255,255,.04);box-shadow:0 10px 24px rgba(0,0,0,.14);
  margin: 6px 0 14px;
}
.introTagRow{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:10px}
.introTag{
  font-size:11px;padding:6px 10px;border-radius:999px;font-weight:900;
  background:rgba(79,134,198,.30);border:1px solid rgba(79,134,198,.55);
  color:rgba(255,255,255,.92);white-space:nowrap;
}
.introTag.ghost{
  background:rgba(0,0,0,.18);border:1px solid rgba(255,255,255,.14);
  color:rgba(255,255,255,.82);font-weight:800;
}
.introBlurb{color:rgba(255,255,255,.88);font-size:13px;line-height:1.4;font-weight:700;max-width:820px}
.introRight{display:flex;flex-direction:column;gap:8px;align-items:flex-end}
.primaryBtn{
  display:inline-block;border:none;border-radius:14px;padding:10px 12px;
  font-weight:900;background:rgba(79,134,198,.92);color:#fff;
  box-shadow:0 10px 22px rgba(0,0,0,.18);
}
.primaryBtn:hover{filter:brightness(1.08)}
.tinyNote{color:rgba(255,255,255,.62);font-size:12px;font-weight:700}

.infoGrid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;margin: 0 0 14px}
.infoCard{
  border:1px solid rgba(255,255,255,.14);border-radius:18px;
  background:rgba(255,255,255,.04);padding:14px;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}
.infoTitle{font-weight:900;margin-bottom:10px}
.steps{margin:0;padding-left:18px;color:rgba(255,255,255,.86);font-weight:700;line-height:1.45}
.check{margin:0;padding-left:18px;color:rgba(255,255,255,.86);font-weight:700;line-height:1.45}
.check li, .steps li{margin:6px 0}

.block{
  border:1px solid rgba(255,255,255,.14);border-radius:18px;
  background:rgba(255,255,255,.03);padding:14px;margin: 0 0 14px;
  box-shadow:0 10px 24px rgba(0,0,0,.10);
}
.blockTitle{font-weight:900;margin-bottom:10px}

.missionGrid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.mission{
  border:1px solid rgba(255,255,255,.12);border-radius:16px;
  background:rgba(0,0,0,.14);padding:12px;
}
.mTitle{font-weight:900;margin-bottom:6px}
.mDesc{color:rgba(255,255,255,.84);font-size:13px;font-weight:700;line-height:1.35}
.mReq{margin-top:10px;color:rgba(255,255,255,.72);font-size:12px;font-weight:800;line-height:1.35}

.turnIn{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.turnCol{
  border:1px solid rgba(255,255,255,.12);border-radius:16px;
  background:rgba(0,0,0,.14);padding:12px;
}
.turnTitle{font-weight:900;margin-bottom:8px}

@media (max-width:980px){
  .infoGrid{grid-template-columns:1fr}
  .missionGrid{grid-template-columns:1fr}
  .turnIn{grid-template-columns:1fr}
  .introRight{align-items:flex-start}
  .projectIntro{flex-direction:column}
}

/* Curriculum blocks (used by all project pages) */
.curriculumBlock{
  border:1px solid rgba(255,255,255,.14);
  border-radius:18px;
  background:rgba(255,255,255,.04);
  padding:16px;
  margin:0 0 14px;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
}

.curriculumBlock h2{
  margin:0 0 10px;
  font-size:18px;
  font-weight:900;
}

.vocabList{
  margin:0;
  padding-left:18px;
  line-height:1.45;
  font-weight:700;
}

.vocabList li{
  margin:6px 0;
}

.dayList{
  margin:0;
  padding-left:18px;
  line-height:1.5;
  font-weight:700;
}

.dayList li{
  margin:8px 0;
}

.subtleNote{
  font-size:12px;
  font-weight:700;
  color:rgba(255,255,255,.65);
}

/* ===================== assets/style.css (BOTTOM) ===================== */


/* ===================== TOOLS FILTER BAR (added) ===================== */
.toolControls{margin:14px 0 10px;padding:12px 12px;border:1px solid rgba(255,255,255,.14);border-radius:18px;background:rgba(0,0,0,.18);box-shadow:0 10px 24px rgba(0,0,0,.18)}
.toolControlsRow{display:flex;gap:12px;align-items:center;justify-content:space-between;flex-wrap:wrap}
.toolControlsLeft{display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.toolControlsRight{display:flex;gap:10px;align-items:center}
.ctlLabel{font-size:12px;color:rgba(255,255,255,.75);font-weight:900}
.ctlSelect{border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.06);color:#fff;border-radius:12px;padding:8px 10px;font-weight:800}
.ctlCheck{display:flex;gap:7px;align-items:center;font-size:12px;color:rgba(255,255,255,.82);font-weight:800;padding:6px 10px;border:1px solid rgba(255,255,255,.10);border-radius:999px;background:rgba(255,255,255,.04)}
.ctlCheck input{width:16px;height:16px}
.ctlSearch{width:min(420px,75vw);border:1px solid rgba(255,255,255,.14);background:rgba(255,255,255,.06);color:#fff;border-radius:14px;padding:10px 12px;font-weight:800}
.toolControlsHint{margin-top:10px;font-size:12px;color:rgba(255,255,255,.78);line-height:1.35}
.toolSection{grid-column:1/-1;margin-top:6px;margin-bottom:-2px;padding:10px 12px;border-radius:14px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.10);font-weight:900}
@media (max-width:900px){
  .toolsGrid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:560px){
  .toolsGrid{grid-template-columns:1fr}
  .ctlSearch{width:100%}
}



/* --- Daily Learning Objective panel (project pages) --- */
.objectivePane{
  margin:16px 0 14px;
  border:1px solid var(--border);
  border-radius:22px;
  background:rgba(0,0,0,.32);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.objectivePaneInner{
  display:grid;
  grid-template-columns: 1fr 160px;
  gap:14px;
  padding:14px;
  align-items:stretch;
}
@media (max-width: 860px){
  .objectivePaneInner{grid-template-columns:1fr}
}
.objectiveHero{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}
.objectiveHero img{width:100%;height:100%;object-fit:contain;display:block;padding:10px}

.objTopRow{display:flex;align-items:center;justify-content:space-between;gap:10px;flex-wrap:wrap}
.objTitle{font-weight:900;font-size:16px;letter-spacing:.2px}
.objControls{display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.objControls select{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background:rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
}

.ttsBtn{
  padding:10px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.18);
  background:linear-gradient(180deg, rgba(79,134,198,.95), rgba(0,0,128,.92));
  color:#fff;
  font-weight:900;
  cursor:pointer;
}
.ttsBtn:active{transform:translateY(1px)}

.volWrap{display:flex;align-items:center;gap:8px;opacity:0;max-width:0;overflow:hidden;transition:opacity .15s ease, max-width .2s ease}
.volWrap.show{opacity:1;max-width:220px}
.volWrap input[type="range"]{width:160px}

.objBlock{margin-top:10px}
.objLabel{font-weight:900;font-size:12px;color:var(--muted);margin-bottom:6px}
.objText{line-height:1.4}
.objQod{margin-top:10px;padding-top:10px;border-top:1px dashed rgba(255,255,255,.18)}
.objStems{margin-top:10px}
.objStems ul{margin:8px 0 0;padding-left:18px}
.objStems li{margin:4px 0}



/* Daily Objective Panel */
.objectivePanel{
  margin:14px 0 18px;
  border:1px solid var(--border);
  border-radius:18px;
  background:rgba(0,0,0,.28);
  box-shadow:0 10px 26px rgba(0,0,0,.25);
  overflow:hidden;
}
.objectivePanel .opTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding:14px 14px 10px;
}
.objectivePanel .opLeft{min-width:0; flex:1 1 auto;}
.objectivePanel .opTitle{font-weight:900; font-size:14px; letter-spacing:.2px; color:rgba(255,255,255,.92);}
.objectivePanel .opIntro{margin-top:6px; color:var(--muted); line-height:1.35;}
.objectivePanel .opRight{flex:0 0 auto; width:108px; height:108px; border-radius:18px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.12); display:flex; align-items:center; justify-content:center; overflow:hidden;}
.objectivePanel .opRight img{width:100%; height:100%; object-fit:contain;}
.objectivePanel .opControls{display:flex; gap:10px; flex-wrap:wrap; padding:0 14px 14px; align-items:center;}
.objectivePanel select, .objectivePanel button, .objectivePanel input[type=range]{
  border-radius:12px; border:1px solid rgba(255,255,255,.14); background:rgba(0,0,0,.25); color:var(--text); padding:10px 12px;
}
.objectivePanel button{cursor:pointer; font-weight:900;}
.objectivePanel .opReadBtn{background:linear-gradient(135deg, var(--columbia), rgba(255,255,255,.85)); color:var(--navy); border:0;}
.objectivePanel .opStopBtn{background:rgba(255,255,255,.10);}
.objectivePanel .opVolWrap{display:flex; align-items:center; gap:8px; padding:8px 10px; border-radius:12px; border:1px solid rgba(255,255,255,.12); background:rgba(0,0,0,.18);}
.objectivePanel .opVolWrap label{font-size:12px; color:var(--muted); font-weight:800;}
.objectivePanel .opVolWrap input{width:140px;}
.objectivePanel .opVolWrap{opacity:.0; pointer-events:none; transition:opacity .15s ease;}
.objectivePanel.isSpeaking .opVolWrap{opacity:1; pointer-events:auto;}
.objectivePanel .opControls:hover .opVolWrap{opacity:1; pointer-events:auto;}
.objectivePanel .opQOD{padding:0 14px 14px;}
.objectivePanel .opQOD h3{margin:10px 0 6px; font-size:13px;}
.objectivePanel .opStems{display:flex; gap:8px; flex-wrap:wrap;}
.objectivePanel .stemChip{display:inline-flex; gap:6px; align-items:center; padding:8px 10px; border-radius:999px; border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.06); font-weight:800; font-size:12px; color:rgba(255,255,255,.9);}

/* ===================== Registry Marquee (v1) ===================== */
#marqueeBar{
  position:sticky;
  top:0;
  z-index:9999;
  width:100%;
  background:linear-gradient(90deg, rgba(0,0,128,.95), rgba(79,134,198,.95));
  border-bottom:1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
}
#marqueeInner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 8px 14px;
  overflow:hidden;
  white-space:nowrap;
}
#marqueeText{
  display:inline-block;
  padding-left: 100%;
  animation: marqueeScroll 22s linear infinite;
  font-weight: 800;
  letter-spacing: .2px;
  color: rgba(255,255,255,.95);
  text-shadow: 0 1px 0 rgba(0,0,0,.35);
}
#marqueeText.marqueeError{
  font-weight: 700;
  opacity: .9;
}
@keyframes marqueeScroll{
  0%{ transform: translateX(0); }
  100%{ transform: translateX(-100%); }
}

/* Registry cards: keep the existing card style, slightly tighten */
.registryCard .blurb{ opacity:.95; }
