

:root {
  --bg: #0d0f12;
  --panel: rgba(18, 21, 25, 0.88);
  --panel-solid: #15181c;
  --text: #e8ebee;
  --dim: #8a939c;
  --teal: #2e93a8;
  --ice: #a9d8e6;
  --sand: #e9c36f;
  --line: #262b31;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { font-size: clamp(14px, 12px + 0.4vw, 20px); }

html, body {
  height: 100%;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", system-ui, sans-serif;
}

.btnIcon { font-size: 1rem; line-height: 1; display: inline-flex; }

.btnIcon svg,
#controls button svg,
#menuArrowPrev svg, #menuArrowNext svg, #menuPlayPause svg {
  width: 1.1em;
  height: 1.1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}
.btnLabel {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#menuBtn, #vizBtn, #rainBtn, #styleBtn, #obsBtn, #vizControls button,
#bgLockBtn, #mobileStationBtn, #menuCollapseBtn {
  width: 11.5rem;
  justify-content: flex-start;
}

#topMenu {
  position: fixed;
  top: 14px; right: 14px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

#menuItems {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  max-height: 85vh;
  padding: 14px;
  margin: -14px;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s ease,
              padding-top 0.35s ease, padding-bottom 0.35s ease,
              margin-top 0.35s ease, margin-bottom 0.35s ease;
}

#topMenu.collapsed #menuItems {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: -8px;
}

#rainSoundPanel, #stylePanel, #vizControls {
  max-height: 420px;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.25s ease,
              padding-top 0.3s ease, padding-bottom 0.3s ease,
              margin-top 0.3s ease, border-width 0.3s ease;
}
#rainSoundPanel.closed, #stylePanel.closed, #vizControls.closed {
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
  margin-top: -8px;
  pointer-events: none;
}

#menuBtn, #vizBtn, #rainBtn, #styleBtn, #obsBtn, #bgLockBtn,
#mobileStationBtn, #menuCollapseBtn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  background: var(--panel);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 3px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}
#menuBtn:hover, #vizBtn:hover, #rainBtn:hover, #styleBtn:hover, #obsBtn:hover,
#bgLockBtn:hover, #mobileStationBtn:hover, #menuCollapseBtn:hover {
  border-color: var(--ice);
  color: var(--ice);
  transition: color 0.15s, border-color 0.15s;
}

#menuCollapseBtn {
  padding: 0.15rem 0.9rem;
  justify-content: center;
  color: var(--dim);
}

.hidden { display: none !important; }

body.protected {
  user-select: none;
  -webkit-user-select: none;
}
body.protected img {
  -webkit-user-drag: none;
  user-drag: none;
}

#titleScreen { transition: opacity 0.6s ease; }
#titleScreen.fadeOut { opacity: 0; pointer-events: none; }

#scene, #hud, #ticker, #listeners, #topMenu, #logoSpin {
  opacity: 0;
  transition: opacity 0.9s ease;
}
.shown { opacity: 1 !important; }

button { font-family: inherit; }

#titleScreen {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg) url("../assets/brand/wallpaper.png") center / cover no-repeat;
}

#titleScreen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 12, 0.85);
}

#titleInner { position: relative; text-align: center; }

#titleLogoImg {
  max-width: min(640px, 82vw);
  height: auto;
  display: block;
  margin: 0 auto 2.2rem;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.6));
}

#titleLogo {
  font-size: clamp(2.2rem, 7vw, 5rem);
  letter-spacing: 0.15em;
  color: var(--text);
  margin-bottom: 2rem;
}

#tuneInBtn {
  font-size: 1.15rem;
  letter-spacing: 0.25em;
  padding: 0.85rem 3rem;
  background: rgba(13, 15, 18, 0.7);
  color: var(--text);
  border: 2px solid var(--text);
  cursor: pointer;
  animation: pulse 2.2s ease-in-out infinite;
  transition: background 0.15s, color 0.15s;
}
#tuneInBtn:hover { background: var(--text); color: var(--bg); transition: background 0.15s, color 0.15s; }

#photoWarning {
  width: 660px;
  max-width: 70vw;
  margin: 3.2rem auto 0;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--text);
}
#photoWarning strong { color: var(--sand); letter-spacing: 0.08em; display: block; }

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 235, 238, 0.35); }
  50%      { box-shadow: 0 0 0 12px rgba(232, 235, 238, 0); }
}

#scene { position: fixed; inset: 0; z-index: 1; }

.sceneLayer {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bgLayer {
  z-index: 1;
  background-color: var(--bg);
  opacity: 0;
  transition: opacity 1.6s ease;
}
.bgLayer.bgVisible { opacity: 1; }
.bgLayer.vizHidden { opacity: 0 !important; }

#visualizerCanvas, #raindropCanvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
#sceneMid   { z-index: 3; }
#sceneFront { z-index: 4; }

#listeners {
  position: fixed;
  top: 14px; left: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.8rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--dim);
}
#listenersDot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--sand);
  animation: blink 2.5s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: 0.35; } }
#listenersCount { color: var(--text); }

#rainBtn.rainOn {
  border-color: var(--ice);
  color: var(--ice);
  box-shadow: 0 0 10px rgba(169, 216, 230, 0.5);
}
#rainBtn.rainLoading { animation: blink 0.8s ease-in-out infinite; }

#rainSoundPanel, #stylePanel {
  width: 11.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.7rem 0.8rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 3px;
}
#rainSoundTitle, .panelTitle {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--dim);
}
#styleList {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.styleItem {
  text-align: left;
  padding: 0.45rem 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 3px;
  cursor: pointer;
}
.styleItem:hover { border-color: var(--ice); color: var(--ice); }
.styleItem.active {
  border-color: var(--sand);
  color: var(--sand);
  background: rgba(233, 195, 111, 0.08);
}
#styleNote {
  font-size: 0.62rem;
  line-height: 1.4;
  color: var(--dim);
}
#rainSoundList {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.rainSoundItem {
  text-align: left;
  padding: 0.45rem 0.6rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 3px;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rainSoundItem:hover { border-color: var(--ice); color: var(--ice); }
.rainSoundItem.active { border-color: var(--ice); color: var(--ice); background: rgba(169, 216, 230, 0.08); }
#rainVolSlider { width: 100%; accent-color: var(--ice); }

#vizBtn.vizOn {
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: 0 0 10px rgba(46, 147, 168, 0.5);
}
#vizBtn.vizLoading { animation: blink 0.8s ease-in-out infinite; }

#obsModal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 10, 12, 0.8);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}
#obsModal.open { opacity: 1; visibility: visible; }
#obsBox { transform: translateY(14px); transition: transform 0.3s ease; }
#obsModal.open #obsBox { transform: translateY(0); }
#obsBox {
  position: relative;
  width: min(680px, 94vw);
  max-height: 92vh;
  overflow-y: auto;
  padding: 1.6rem 2.1rem;
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--teal) var(--panel-solid);
}
#obsBox h2 {
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 0.5rem;
}
.obsHint {
  font-size: 0.78rem;
  color: var(--dim);
  line-height: 1.5;
  margin-bottom: 1rem;
}
.obsLabel {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--dim);
  margin: 0.9rem 0 0.4rem;
}
#obsStation, #obsReveal {
  width: 100%;
  padding: 0.5rem 0.6rem;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 0.85rem;
}
.obsRow { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.obsOpt {
  padding: 0.45rem 0.8rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 3px;
  cursor: pointer;
}
.obsOpt:hover { border-color: var(--ice); color: var(--ice); }
.obsOpt.active {
  border-color: var(--sand);
  color: var(--sand);
  background: rgba(233, 195, 111, 0.08);
}
.obsCheck {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: var(--text);
  cursor: pointer;
}
.obsCode {
  padding: 0.6rem 0.7rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-family: Consolas, monospace;
  font-size: 0.68rem;
  line-height: 1.6;
  color: var(--ice);
  white-space: pre;
  overflow-x: auto;
}

#obsPreview {
  width: 100%;
  height: 140px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: repeating-conic-gradient(#1a1e23 0% 25%, #12151a 0% 50%) 0 0 / 16px 16px;
  margin-top: 0.2rem;
}

#obsUrlRow { display: flex; gap: 0.5rem; margin-top: 1.2rem; }
#obsUrl {
  flex: 1;
  min-width: 0;
  padding: 0.5rem 0.6rem;
  background: var(--bg);
  color: var(--ice);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 0.72rem;
  font-family: Consolas, monospace;
}
#obsCopy {
  padding: 0.5rem 0.9rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  background: transparent;
  color: var(--sand);
  border: 1px solid var(--sand);
  border-radius: 3px;
  cursor: pointer;
}
#obsCopy:hover { background: var(--sand); color: var(--bg); }
#obsClose {
  position: absolute;
  top: 0.8rem; right: 1rem;
  font-size: 1.4rem;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
}
#obsClose:hover { color: var(--sand); }

#vizWarning {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 10, 12, 0.8);
  backdrop-filter: blur(3px);
}
#vizWarningBox {
  max-width: 440px;
  margin: 1rem;
  padding: 1.6rem 1.8rem;
  background: var(--panel-solid);
  border: 1px solid var(--sand);
  border-radius: 4px;
}
#vizWarningBox h2 {
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.8rem;
}
#vizWarningBox p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text);
}
#vizWarningBtns {
  display: flex;
  justify-content: flex-end;
  gap: 0.8rem;
  margin-top: 1.4rem;
}
#vizWarningBtns button {
  padding: 0.5rem 1.1rem;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  cursor: pointer;
}
#vizCancelBtn:hover { border-color: var(--ice); color: var(--ice); }
#vizConfirmBtn { border-color: var(--sand); color: var(--sand); }
#vizConfirmBtn:hover { background: var(--sand); color: var(--bg); }

#vizControls {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
#vizControls button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  background: var(--panel);
  color: var(--text);
  border: 1px solid var(--line);
  border-radius: 3px;
  cursor: pointer;
}
#vizControls button:hover { border-color: var(--ice); color: var(--ice); }
#vizLockBtn.locked {
  border-color: var(--sand);
  color: var(--sand);
  box-shadow: 0 0 10px rgba(233, 195, 111, 0.45);
}

#stationMenu {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(8, 10, 12, 0.82);
  backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s;
}
#stationMenu.open {
  opacity: 1;
  visibility: visible;
}

#stationMenu > * {
  transform: translateY(14px);
  transition: transform 0.35s ease;
}
#stationMenu.open > * { transform: translateY(0); }

#stationMenuHead {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 2rem;
  letter-spacing: 0.3em;
  color: var(--dim);
}
#menuCloseBtn {
  font-size: 1.6rem;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
}
#menuCloseBtn:hover { color: var(--sand); }

#menuCarousel {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  overflow-x: auto;
  padding: 1.5rem 50vw;
  scrollbar-width: none;

  cursor: grab;
  touch-action: pan-y;
}
#menuCarousel.dragging { cursor: grabbing; }
#menuCarousel.dragging .menuTile { pointer-events: none; }
#menuCarousel::-webkit-scrollbar { display: none; }

.menuTile {
  flex: 0 0 200px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.3;
  filter: grayscale(0.7);
  transition: opacity 0.3s, filter 0.3s, transform 0.3s;
}
.menuTile:hover { opacity: 0.7; }
.menuTile.active {
  opacity: 1;
  filter: none;
  transform: scale(1.15);
}

.menuTile img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 3px 10px rgba(0, 0, 0, 0.6));
}
.menuTileText {
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  color: var(--ice);
  text-align: center;
}

#menuInfoRow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 0.5rem;
}

#menuArrowPrev, #menuArrowNext {
  font-size: 2rem;
  padding: 0.4rem 1rem;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  transition: color 0.15s, transform 0.1s;
}
#menuArrowPrev:hover, #menuArrowNext:hover { color: var(--sand); }
#menuArrowPrev:active { transform: translateX(-3px); }
#menuArrowNext:active { transform: translateX(3px); }

#menuInfo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  width: 500px;
  text-align: center;
}
#menuStationName {
  font-size: 1.15rem;
  letter-spacing: 0.25em;
  color: var(--text);
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#menuStationDesc {
  font-size: 0.85rem;
  color: var(--dim);
  width: 100%;
  height: 2.4em;
  line-height: 1.2;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
#menuStationCount {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--teal);
}

#menuPlayPause {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin-top: 1.4rem;
  width: 62px;
  height: 62px;
  font-size: 1.15rem;
  background: rgba(18, 21, 25, 0.6);
  color: var(--text);
  border: 2px solid var(--text);
  border-radius: 50%;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s, transform 0.25s ease;
}
#menuPlayPause:hover {
  color: var(--sand);
  border-color: var(--sand);
  transform: scale(1.08);
}
#menuPlayPause:active { transform: scale(0.95); }

#mobileStationList {
  width: min(75vw, 320px);
  max-height: 55vh;
  overflow-y: auto;
  background: var(--panel-solid);
  border: 1px solid var(--line);
  border-radius: 4px;

  scrollbar-width: thin;
  scrollbar-color: var(--teal) var(--panel-solid);
}

#mobileStationList::-webkit-scrollbar { width: 8px; }
#mobileStationList::-webkit-scrollbar-track { background: var(--panel-solid); }
#mobileStationList::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 4px;
}
#mobileStationList::-webkit-scrollbar-thumb:hover { background: var(--ice); }

.mobileStationItem {
  padding: 0.95rem 1.1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  cursor: pointer;
}
.mobileStationItem:last-child { border-bottom: none; }
.mobileStationItem:hover { color: var(--ice); }
.mobileStationItem.active {
  color: var(--sand);
  border-left: 3px solid var(--sand);
  padding-left: calc(1.1rem - 3px);
}

@media (min-width: 769px) {
  #mobileStationBtn, #mobileStationList { display: none !important; }
}
@media (max-width: 768px) {
  #menuBtn { display: none !important; }
  #stationMenu { display: none !important; }
}

#logoSpin {
  position: fixed;
  right: 22px;
  bottom: 108px;
  z-index: 15;
  width: 170px;
  perspective: 700px;
  pointer-events: none;
}
#logoSpinImg {
  width: 100%;
  height: auto;
  animation: coinSpin 9s linear infinite;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.55));
}
@keyframes coinSpin {
  from { transform: rotateY(0deg); }
  to   { transform: rotateY(360deg); }
}
@media (max-width: 768px) { #logoSpin { width: 110px; bottom: 96px; } }

#bgLockBtn.locked {
  border-color: var(--sand);
  box-shadow: 0 0 10px rgba(233, 195, 111, 0.45);
}

#bgLockBtn.vizHidden { display: none !important; }

#bgCredit {
  position: fixed;
  left: 14px;
  bottom: 120px;
  z-index: 15;
  padding: 0.4rem 0.8rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 3px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--dim);
}
#bgCredit.vizHidden { opacity: 0; pointer-events: none; }
@media (max-width: 768px) { #bgCredit { bottom: 108px; } }

#hud {
  position: fixed;
  left: 0; right: 0; bottom: 34px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem 1rem;
  background: var(--panel);
  border-top: 1px solid var(--line);
}

#nowPlaying { display: flex; flex-direction: column; min-width: 0; }

#stationName {
  color: var(--sand);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
}

#trackName {
  font-size: 1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#controls { display: flex; align-items: center; gap: 0.5rem; flex-shrink: 0; }

#controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.35rem 0.7rem;
  cursor: pointer;
  font-size: 0.9rem;
  transition: border-color 0.15s, color 0.15s, background 0.15s,
              transform 0.12s, box-shadow 0.15s;
}
#controls button:hover {
  border-color: var(--ice);
  color: var(--ice);
  background: rgba(169, 216, 230, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}
#controls button:active { transform: translateY(0) scale(0.94); }

#controls button.off { color: var(--dim); opacity: 0.6; }

#volumeSlider { transition: filter 0.15s; }
#volumeSlider:hover { filter: brightness(1.25); }

#volumeSlider { width: 110px; accent-color: var(--teal); }
@media (max-width: 768px) { #volumeSlider { display: none; } }

#ticker {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 11;
  height: 34px;
  display: flex;
  align-items: stretch;
  background: #0a0c0f;
  border-top: 1px solid var(--line);
}

#tickerLabel {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  background: var(--teal);
  color: #0a0c0f;
  font-weight: bold;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

#tickerViewport {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}

#tickerTrack {
  display: inline-flex;
  white-space: nowrap;
  animation: tickerScroll 60s linear infinite;
  will-change: transform;
  font-size: 0.85rem;
  color: var(--dim);
}
#tickerViewport:hover #tickerTrack { animation-play-state: paused; }

.tickerCopy { padding-right: 0; }

.tickerSep {
  color: var(--teal);
  padding: 0 0.6rem;
}

#tickerTrack a {
  color: var(--ice);
  text-decoration: underline;
}
#tickerTrack a:hover { color: var(--sand); }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
