/* === BASE STYLES === */
body {
  font-family: Arial, sans-serif;
  background-color: #000;
  margin: 2rem;
  line-height: 1.6;
  color: #fff;
}

h1, h2 {
  color: #ffd700;
}

label {
  color: #ddd;
}

a {
  color: #0bf;
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  color: #6cf;
  text-decoration: underline;
}

/* === NAVIGATION === */
nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}
/* Slightly smaller, denser text inside the Hall */
#hall .roast-entry { padding: .8rem .9rem; }
#hall .roast-entry .roaster-name { font-size: .9rem; }
#hall .roast-entry .roast-text {
  font-size: clamp(0.90rem, 1.6vw, 1.02rem);
  line-height: 1.4;
}
#hall .roast-entry .ai-clapback { font-size: .95rem; }
#hall .roast-entry .tone-hint    { font-size: .80rem; }
nav ul li a {
  color: #0bf;
  font-weight: bold;
}

nav ul li a:hover {
  text-decoration: underline;
  color: #6cf;
}

/* === FORM STYLES === */
form {
  margin-top: 1rem;
}

form input,
form button,
form textarea {
  padding: 0.5rem;
  margin-top: 0.3rem;
  width: 100%;
  max-width: 400px;
  background-color: #111;
  color: #fff;
  border: 1px solid #444;
}

form textarea {
  max-width: 500px;
}

form button {
  background-color: #0bf;
  color: #000;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

form button:hover {
  background-color: #09f;
}

/* === SPECIAL BACKGROUNDS === */
body.visa-page {
  animation: fadeIn 1.5s ease-out;
  background-image: url('../images/Palace.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #fff;
}

body.visa-page::before {
  content: "";
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(1px);
  z-index: -1;
}

.gathering-page .video-background,
.earth-background {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.gathering-page .video-background video,
.earth-background video {
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  filter: brightness(0.5) contrast(0.8);
  opacity: 0.5;
  transition: opacity 1s ease-in-out;
}

/* === FADE === */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* === SCROLLING QUOTE BANNER === */
.scroll-banner-wrapper {
  margin: 2rem 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  padding: 0.5rem 0;
}

.scroll-banner {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background-color: #000;
}

.scroll-banner span {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 18s linear infinite;
  font-style: italic;
  color: #ccc;
  font-size: 1.1rem;
}

@keyframes scroll-left {
  from { transform: translateX(0%); }
  to { transform: translateX(-100%); }
}

/* === PETERSON GLOW === */
.peterson-glow {
  text-shadow: 0 0 6px #ffd700;
  color: #fff8b0;
  font-weight: bold;
}

/* === ENTRIES === */
.entry {
  border-left: 4px solid #ffd700;
  padding: 1.5rem 1rem;
  margin: 2rem 0;
  background-color: #0a0a0a;
  border-radius: 6px;
}

.ts {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 0.5rem;
}

.source {
  opacity: 0.6;
  font-style: italic;
  font-size: 0.85rem;
}

.label {
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 0.3rem;
  font-size: 0.95rem;
}

.user-prompt blockquote {
  margin: 0;
  padding-left: 1rem;
  border-left: 2px solid #666;
  color: #bbb;
  font-style: italic;
  font-size: 0.95rem;
}

.ai-response .response-box {
  background-color: #111;
  border: 1px solid #333;
  padding: 1rem;
  border-radius: 5px;
  margin-top: 0.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #ddd;
  white-space: pre-wrap;
}

.dev-note {
  margin-top: 1rem;
  background-color: #111;
  padding: 1rem;
  border: 1px dashed #ff5555;
  border-radius: 5px;
  color: #faa;
}

.dev-note .label {
  color: #ff7777;
  font-weight: bold;
  margin-bottom: 0.25rem;
}

/* === ROAST PAGE === */
body.roast-page {
  background-color: #000;
  background-image: linear-gradient(to top left, #111, #000);
  color: #fff;
}

/* === TAGLINE === */
.tagline {
  text-align: center;
  font-style: italic;
  color: #ccc;
  margin-bottom: 2rem;
}

/* === UKRAINE LETTER FLYIN === */
.ukraine-flyin {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 7rem;
  font-weight: bold;
  letter-spacing: 1rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
  font-family: 'Courier New', monospace;
}

.ukraine-flyin .letter {
  opacity: 0;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  display: inline-block;
}

/* === ANIMATION STYLES PER LETTER === */
.u, .k, .r, .a, .i, .n, .e {
  animation-fill-mode: forwards;
  animation:
    fadeToBackground 3s ease-in 3.5s forwards,
    heartbeat 4.5s ease-in-out 6.5s infinite;
}

.u { animation-name: flyInLeft, fadeToBackground, heartbeat; animation-delay: 0.2s, 3.5s, 6.5s; color: #0077d6; }
.k { animation-name: flyInTop, fadeToBackground, heartbeat; animation-delay: 0.4s, 3.7s, 6.5s; color: #ffcc33; }
.r { animation-name: flyInRight, fadeToBackground, heartbeat; animation-delay: 0.6s, 3.9s, 6.5s; color: #0077d6; }
.a { animation-name: flyInBottom, fadeToBackground, heartbeat; animation-delay: 0.8s, 4.1s, 6.5s; color: #ffcc33; }
.i { animation-name: fadeZoom, fadeToBackground, heartbeat; animation-delay: 1.0s, 4.3s, 6.5s; color: #0077d6; }
.n { animation-name: flyInBottom, fadeToBackground, heartbeat; animation-delay: 1.2s, 4.5s, 6.5s; color: #ffcc33; }
.e { animation-name: fadeZoom, fadeToBackground, heartbeat; animation-delay: 1.4s, 4.7s, 6.5s; color: #0077d6; }

/* === ANIMATION KEYFRAMES === */
@keyframes flyInLeft {
  from { transform: translateX(-200px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

@keyframes flyInRight {
  from { transform: translateX(200px); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}

@keyframes flyInTop {
  from { transform: translateY(-200px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

@keyframes flyInBottom {
  from { transform: translateY(200px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

@keyframes fadeZoom {
  from { transform: scale(4); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

@keyframes fadeToBackground {
  0%   { opacity: 1; }
  100% { opacity: 0.14; }
}

@keyframes heartbeat {
  0%, 100% { opacity: 0.14; transform: scale(1); }
  50%      { opacity: 0.21; transform: scale(1.015); }
}

/* === SAVE UKRAINE Fly-In === */
.save-ukraine-flyin {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-size: 4rem;
  font-weight: bold;
  margin-top: -1rem;
  color: #ffd700;
}

.save-word {
  opacity: 0;
  animation: saveFlyIn 1s ease-out forwards;
}

.save-word:nth-child(1) {
  animation-delay: 0.2s;
}
.save-word:nth-child(2) {
  animation-delay: 0.6s;
}

@keyframes saveFlyIn {
  from {
    transform: translateY(-80px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* === SLAVA PULSE === */
.slava-ukraine-pulse {
  text-align: center;
  margin-top: 1rem;
}

.slava-word {
  font-size: 3.2rem;
  font-weight: bold;
  color: #0077d6;
  opacity: 0.15;
  animation: slavaPulse 5s ease-in-out 3s infinite;
}

@keyframes slavaPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.15;
    text-shadow: none;
  }
  50% {
    transform: scale(1.03);
    opacity: 0.35;
    text-shadow: 0 0 10px #0057b7;
  }
}

/* === APPEALS PAGE INTRO === */
.appeals-preamble {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  color: #eee;
}

/* === GALLERY === */
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
}

.gallery-item {
  max-width: 600px;
  margin-bottom: 3rem;
  text-align: center;
}

.gallery-item img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.02);
}

.caption {
  font-style: italic;
  color: #ccc;
  font-size: 0.95rem;
  margin-top: 0.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* === HERO ANCHOR === */
#hero a {
  margin-bottom: 3rem;
}

/* Unified Navbar*/
/* === BASE STYLES === */
body {
  font-family: Arial, sans-serif;
  background-color: #000;
  margin: 2rem;
  line-height: 1.6;
  color: #fff;
}

h1, h2 {
  color: #ffd700;
}

label {
  color: #ddd;
}

a {
  color: #0bf;
  font-weight: bold;
  text-decoration: none;
}

a:hover {
  color: #6cf;
  text-decoration: underline;
}

/* === NAVIGATION === */
nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
  justify-content: center;
  font-size: 1rem;
}

nav ul li a {
  color: #0bf;
  font-weight: bold;
}

nav ul li a:hover {
  text-decoration: underline;
  color: #6cf;
}
.roast-entry {
  border-bottom: 1px solid #333;
  padding: 10px 0;
}
.user-roast {
  font-weight: bold;
}
.ai-clapback {
  color: #ff5f5f;
  margin-top: 5px;
}
.roaster-name .target { opacity: 0.8; }
.tone-hint { font-size: 0.85rem; color: #999; margin: 4px 0 6px; }

/* ensure both classes are styled */
.ai-clapback, .ai-response { 
  font-style: italic; 
  color: #66ccff; 
  font-size: 0.95rem; 
}

.roaster-name .target { opacity: 0.8; }
.tone-hint { font-size: 0.85rem; color: #999; margin: 4px 0 6px; }
/* Roast page polish */
#roast-wall { max-width: 960px; margin: 3rem auto; padding: 0 1rem; }
.roast-entry {
  border-left: 4px solid #ff5555;
  margin: 1.25rem 0 2rem;
  background: linear-gradient(180deg, #121212 0%, #0f0f0f 100%);
  border-radius: 10px;
  padding: 1rem 1.1rem 1.1rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.28);
}
.roaster-name { color:#0bf; font-size:.92rem; font-weight:700; letter-spacing:.2px; }
.roast-text { font-size:1.15rem; color:#ffd700; margin:.5rem 0 .35rem; line-height:1.45; }
.ai-clapback, .ai-response { font-style:italic; color:#66ccff; font-size:.975rem; }
.tone-hint { font-size:.85rem; color:#9aa; margin:4px 0 6px; }

/* Google form iframe: full-width on smaller screens */
iframe { width: 100%; max-width: 680px; border: none; }
@media (max-width: 768px) {
  #roast-wall { margin-top: 2rem; }
}
#hall { max-width: 960px; margin: 2rem auto 0; padding: 0 1rem; }
#hall h2 { margin-bottom: .5rem; }
.modal-dialog {
  background: #0a0a0a;
  border: 1px solid #222;
}
.modal-title {
  color: #ffd700;
  font-size: 1.1rem;
  font-weight: bold;
}
.modal-x {
  font-weight: bold;
}
@keyframes pulseGlow {
  0% { box-shadow: 0 0 8px rgba(0,187,255,.5), 0 0 16px rgba(0,187,255,.3); }
  50% { box-shadow: 0 0 12px rgba(0,187,255,.8), 0 0 24px rgba(0,187,255,.5); }
  100% { box-shadow: 0 0 8px rgba(0,187,255,.5), 0 0 16px rgba(0,187,255,.3); }
}
#open-roast {
  animation: pulseGlow 2s infinite;
}
/* Hall container look (keeps your current vibe) */
#hall { 
  background: linear-gradient(180deg, #1b1b1b 0%, #111 100%); 
  border-radius: 8px; 
  box-shadow: 0 4px 20px rgba(0,0,0,0.4); 
  padding: 1rem; 
}

/* Marquee layout */
#hall .marquee {
  position: relative;
  overflow: hidden;            /* hide cards when they move out of view */
  width: 100%;
  border-radius: 8px;
}

#hall .track {
  display: inline-flex;        /* single row of cards */
  gap: 16px;
  will-change: transform;
  animation: hallScroll 28s linear infinite;
}

/* Pause on hover or focus inside for accessibility */
#hall .marquee:hover .track,
#hall .marquee:focus-within .track { 
  animation-play-state: paused; 
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  #hall .track { animation: none; }
}

/* Keyframes for continuous leftward scroll */
@keyframes hallScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }  /* we’ll duplicate content to make this seamless */
}

/* Cards inside the marquee reuse your .roast-entry style but smaller */
#hall .roast-entry {
  min-width: 320px;            /* each card width */
  max-width: 420px;
  margin: 0;                   /* override wall spacing */
  padding: .9rem 1rem;
}

/* Optional: compact text for marquee cards */
#hall .roast-text { font-size: 1rem; line-height: 1.35; }
#hall .ai-clapback { font-size: .95rem; }
/* Orbit container */
#hall { background: linear-gradient(180deg, #1b1b1b 0%, #111 100%); border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,.4); padding: 1rem; }
#hall-orbit { position: relative; width: 100%; max-width: 900px; aspect-ratio: 16/9; margin: 0 auto; display: grid; place-items: center; }

#hall-orbit .centerpiece {
  width: min(30vmin, 320px);
  max-width: 38%;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,.6));
  z-index: 2;
}

/* Orbit ring area */
#hall-orbit .orbit {
  position: absolute; inset: 0; margin: auto; width: 100%; height: 100%;
  pointer-events: none; /* cards enable pointer on themselves */
  animation: spin 32s linear infinite;
}
#hall-orbit:hover .orbit { animation-play-state: paused; }

/* Cards positioned on the ring */
.orbit-card {
  position: absolute;
  transform: translate(-50%, -50%);
  width: clamp(240px, 26vmin, 320px);
  pointer-events: auto;
}
.orbit-card .roast-entry { margin: 0; padding: .85rem 1rem; }

/* Optional subtle base glow */
#hall-orbit::after {
  content: "";
  position: absolute; left: 50%; bottom: 6%;
  width: 50%; height: 16%; transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(255,215,0,.18), transparent 65%);
  filter: blur(8px);
  z-index: 1;
}

/* Fallback marquee (mobile / reduced-motion) */
#hall .marquee { position: relative; overflow: hidden; width: 100%; border-radius: 8px; }
#hall .track { display: inline-flex; gap: 16px; will-change: transform; animation: hallScroll 28s linear infinite; }
#hall .marquee:hover .track, #hall .marquee:focus-within .track { animation-play-state: paused; }
#hall .roast-entry { min-width: 320px; max-width: 420px; }

@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes hallScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Auto‑fallback: small screens use marquee */
@media (max-width: 820px) {
  #hall-orbit { display: none; }
  #hall-marquee { display: block !important; }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  #hall-orbit .orbit { animation: none; }
}
/* Make the 3D system reference the turkey center */
#hall-3d { perspective: 1100px; perspective-origin: 50% 45%; position: relative; }
#hall-3d .centerpiece { position: absolute; left: 50%; top: 40%; transform: translate(-50%,-55%); z-index: 1200; }
#hall-stage { position: relative; transform-style: preserve-3d; }
.card { position: absolute; transform-origin: center center; }

/* Put trophy behind the orbit */
#hall-3d .centerpiece{
  position:absolute;
  left:50%; top:50%;
  transform: translate(-50%,-55%) translateZ(-150px); /* push back in 3D */
  z-index: 1;                 /* very low layer */
  pointer-events: none;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.55));
}

/* Make sure cards’ stage sits above the trophy */
#hall-stage{
  position: relative;
  transform-style: preserve-3d;
  z-index: 5;                 /* higher than the turkey */
}

/* Each card will still set inline z-index = 1000+z in JS */

#hall .track:hover { animation-play-state: paused; }
/* Keep the Hall area self-contained */
#hall {
  overflow: hidden;                /* <- nothing bleeds outside the panel */
}

/* Make Hall cards more compact */
#hall .roast-entry {
  --cardH: 500px;                  /* <-- adjust this number to taste (200–260px) */
  padding: .7rem .9rem;
  border-radius: 10px;
  max-height: var(--cardH);        /* cap vertical height */
  overflow: hidden;                /* clip inside the card */
}

/* Slightly smaller text so cards stay tidy */
#hall .roast-entry .roaster-name { font-size: .8rem; }
#hall .roast-entry .roast-text     { font-size: clamp(.70rem, 1.4vw, .78rem); line-height: 1.10; }
#hall .roast-entry .ai-clapback    { font-size: .8rem; line-height: 1.10; }
#hall .roast-entry .tone-hint      { font-size: .7rem; }

/* Line clamp (truncate gracefully) */
#hall .roast-entry .roast-text,
#hall .roast-entry .ai-clapback {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

#hall .roast-entry .roast-text  { -webkit-line-clamp: 10; }  /* adjust lines to fit your --cardH */
#hall .roast-entry .ai-clapback { -webkit-line-clamp: 5; }

/* Default: cinematic fill */
.video-background {
  position: absolute;
  top: 50%; left: 50%;
  width: 100%; height: 100%;
  transform: translate(-50%, -50%) scale(0.92);
  object-fit: cover;
  object-position: 50% 64%;
  animation: slowZoom 22s ease-in-out forwards;
}

/* If the viewport is taller than the video (e.g., phones), show all */
@media (max-aspect-ratio: 16/9) {
  .video-background {
    object-fit: contain;
    animation: none;             /* avoid moving the letterbox edges */
    transform: translate(-50%, -50%) scale(1);
    background: #000;
  }
}

.video-wrap {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #000;
}

/* --- Appeals video tuning (force override) --- */
.video-background {
  position: absolute;
  top: 50%; left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%) scale(0.88); /* start wider: shows more */
  object-fit: cover;
  object-position: 50% 78%;                    /* <-- push view down to show paper */
  animation: slowZoomAppeals 18s ease-in-out forwards;
}

@keyframes slowZoomAppeals {
  0%   { transform: translate(-50%, -50%) scale(0.88); }
  100% { transform: translate(-50%, -50%) scale(1.02); } /* gentler zoom so paper stays */
}

/* Tall/narrow screens: show whole video (no crop) */
@media (max-aspect-ratio: 16/9) {
  .video-background {
    object-fit: contain;
    transform: translate(-50%, -50%) scale(1);
    animation: none;
    background: #000;
  }
}

/* fade-out after playback */
.zel-stick {
  opacity: 1;
  transition: opacity .7s ease;
}

.zel-stick.is-out {
  opacity: 0;
  pointer-events: none;
}

/* ΔSpeak dark skin */
.ds-container{max-width:980px;margin:40px auto;background:#0b0d10;color:#e8eef7;
  padding:24px;border-radius:12px;box-shadow:0 8px 24px rgba(0,0,0,.35)}
.ds-container h1,.ds-container h2{color:#e8eef7}
.ds-note{color:#9fb3c8}
.ds-pre{background:#11161c;border:1px solid #1f2a36;border-radius:10px;padding:14px}
.ds-btn{background:#00a2ff;border:none;color:#fff;border-radius:8px;padding:10px 14px;cursor:pointer}
.ds-btn:hover{background:#0185d0}
.ds-ok{background:#0f3a1f;color:#9ef0b1;border-radius:8px;padding:10px}
.ds-err{background:#3a1212;color:#ffb3b3;border-radius:8px;padding:10px}
textarea.ds-text{background:#0f141a;color:#e8eef7;border:1px solid #1f2a36;border-radius:10px;padding:12px}

/* ==== HERO QUICK FIX OVERRIDES ==== */
.hero { padding: 2rem 0; }
.hero-inner { max-width: 1000px; margin: 0 auto; text-align: center; }

/* Center the countdown + subtitle + CTAs */
#countdown, .subtitle, .hero-cta { margin-left: auto; margin-right: auto; text-align: center; }

/* Tame the big background word + keep it centered */
.ukraine-flyin {
  display: flex; justify-content: center; gap: .12em;
  font-size: clamp(2.4rem, 12vw, 8rem);
  letter-spacing: .18em;
  opacity: .10;                 /* was too strong */
  filter: saturate(90%);
  margin: .4rem 0 0 0;
}

/* Keep SAVE UKRAINE boldly centered without pushing layout */
.save-ukraine-flyin {
  display: block;
  text-align: center;
  margin-top: .4rem;
  font-size: clamp(1.6rem, 6vw, 3rem);
  font-weight: 800;
  color: #ffd700;
}

/* Calmer SLAVA line */
.slava-ukraine-pulse {
  display: block;
  text-align: center;
  font-size: clamp(1.1rem, 4.2vw, 2rem);
  color: #0b335a;
  opacity: .85;
}

/* Ensure letters don’t have weird per-letter positioning from legacy CSS */
.ukraine-flyin .letter,
.save-ukraine-flyin .save-word,
.slava-ukraine-pulse .slava-word {
  position: static !important;
  transform: none !important;
}

/* Countdown typography looks tiny on desktop in your screenshot */
.timer { font-weight: 700; font-size: clamp(1.4rem, 5.5vw, 4rem); letter-spacing: .12em; white-space: nowrap; }
.subtitle { margin-top: .35rem; font-size: clamp(.95rem, 2.2vw, 1.15rem); opacity: .8; }

/* Guard against any global left-aligns leaking in */
.hero .lede, .hero h1 { text-align: center; }

/* Nav: prevent wrap jitter on wide screens */
nav ul { justify-content: center; }

/* === spacing fixes === */
body, h1, h2, h3, p, .btn, .subtitle, .timer {
  word-spacing: normal !important;
  letter-spacing: normal !important;
}

/* keep the big background word readable but not spaced out */
.ukraine-flyin { letter-spacing: .08em !important; }

/* keep SAVE UKRAINE bold without big gaps */
.save-ukraine-flyin { letter-spacing: .02em !important; }
