/* FOUND VIDEO VJ BATTLE ROYALE — flat Tetris-battle archive UI */

@font-face {
  font-family: "Connection";
  src: url("fonts/Connection-arMJ copy.otf") format("opentype");
  font-display: swap;
}

@font-face {
  font-family: "Pixelbasel";
  src: url("fonts/Pixelbasel.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Retganon";
  src: url("fonts/retganon copy.ttf") format("truetype");
  font-display: swap;
}

:root {
  --green-screen: #00ff00;
  --green-text: #e8e8e8;
  --bg: #0a0a12;
  --gray: #828282;
  /* Reference UI frame: black → gray (thick) → white */
  --frame-black: #000000;
  --frame-mid: #565656;
  --frame-white: #b7b7b7;
  --frame-w-outer: 0.15rem;
  --frame-w-mid: 0.2rem;
  --frame-w-inner: 0.1875rem;
  --hud-bg: #12121f;
  --red: #ff0000;
  --blue: #0000ff;
  --yellow: #ffff00;
  --white: #ffffff;
  --border: var(--frame-w-inner) solid var(--frame-white);
  --gray-border: var(--border);
  --pixel: "Press Start 2P", "Courier New", monospace;
  /* Diary/about body font.
       "Connection"   — Connection-arMJ.otf
       "Pixelbasel"   — Pixelbasel.ttf
       "Retganon"     — retganon.ttf
       "DotGothic16"  — original CJK pixel font (Google Fonts)
  */
  --dot-gothic: "Pixelbasel", "DotGothic16", sans-serif;
  --outline: 0 -0.0625rem 0 #000,
    0 0.0625rem 0 #000,
    0 0.125rem 0 #000,
    -0.0625rem 0 0 #000,
    -0.0625rem 0.0625rem 0 #000,
    -0.0625rem -0.0625rem 0 #000,
    0.0625rem -0.0625rem 0 #000,
    0.0625rem 0.0625rem 0 #000,
    0.125rem 0.0625rem 0 #000,
    0.125rem 0.125rem 0 #000,
    0.125rem 0 0 #000,
    0.1875rem 0 0 #000,
    0.1875rem 0.0625rem 0 #000,
    0.1875rem 0.125rem 0 #000;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

a {
  color: var(--yellow);
}

html {
  font-size: 175%;
}

html,
body {
  margin: 0;
  min-height: 100%;
  height: 100%;
  background: var(--bg);
  color: var(--white);
  font-family: var(--pixel);
}

#p5-canvas-container {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.lang-toggle {
  position: fixed;
  top: 0.45rem;
  right: 0.45rem;
  z-index: 25;
}

.lang-toggle__btn {
  min-width: 3.25rem;
  padding: 0.25rem 0.35rem;
  font-size: 0.45rem;
  letter-spacing: 0.05em;
}

#not-p5 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100dvh;
  z-index: 5;
  display: flex;
  flex-direction: column;
}

/* ─── Main three-column battle layout ─── */

.battle-screen {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  flex: 1 1 0;
  min-height: 0;
  height: 100%;
  padding-top: 1rem;
  padding-bottom: 0;
  max-width: 100vw;
  overflow: hidden;
}

/* ─── Side panels (green “screens”) ─── */

.panel {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  height: 100%;
  min-height: 0;
  padding: var(--frame-w-outer);
  background: var(--frame-black);
}

.panel--red {
  margin: 0 -0.2rem 0 1rem;
}

.panel--blue {
  margin: 0 1rem 0 -0.2rem;
}

.panel__screen {
  flex: 1 1 auto;
  min-height: 0;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  border: var(--border);
  image-rendering: pixelated;
}

.panel__screen--green {
  /* background: var(--green-screen); */
  color: var(--green-text);
  min-height: 0;
}

.panel__label {
  font-size: 0.65rem;
  padding: 0.2rem;
  letter-spacing: 0.1em;
  border-bottom: var(--border);
  color: var(--yellow);
  text-shadow: var(--outline);
  text-align: center;
}

.panel__label--red {
  background: var(--red);
  padding: 0.5rem;
}

.panel__label--blue {
  background: var(--blue);
  padding: 0.5rem;
}

.panel__content {
  flex: 1 1 auto;
  min-height: 0;
  margin: 0.2rem;
  font-family: var(--dot-gothic);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: var(--bg);
}

.panel__diary {
  flex: 1 1 0;
  min-height: 0;
  min-width: 0;
  padding: 1rem;
  font-style: normal;
  font-family: inherit;
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: grayscale;
  overflow-y: auto;
  font-size: 0.58rem;
  line-height: 1.8;
  white-space: pre-wrap;
  word-break: break-word;
  scrollbar-width: thin;
  /* scrollbar-color: #000 var(--green-screen); */
}

.panel__diary::-webkit-scrollbar {
  width: 0.5rem;
}

.panel__diary::-webkit-scrollbar-thumb {
  background: #000;
}

.diary-list {
  white-space: normal;
  line-height: 1.5;
  list-style: none;
  margin: 0.4rem 0;
  padding: 0 0 0 1.2rem;
  counter-reset: diary-ol;
}

.diary-list li {
  position: relative;
  margin: 0.15rem 0;
}

.panel__diary:lang(en) .diary-list li {
  line-height: 1.3;
}

.diary-list--ul li::before {
  content: "✶";
  position: absolute;
  left: -1rem;
  color: #919191;
}

.diary-list--ol li {
  counter-increment: diary-ol;
}

.diary-list--ol li::before {
  content: counter(diary-ol) ".";
  position: absolute;
  left: -1.4rem;
  color: #000;
}

.diary-gap {
  display: block;
  height: 0.6rem;
}

.diary-code {
  /* margin-top: 1rem; */
  padding-top: 0.55rem;
  min-width: 0;
  max-width: 100%;
  white-space: normal;
}

.diary-code summary {
  cursor: pointer;
  font-family: var(--pixel);
  font-size: 0.4rem;
  color: var(--yellow);
  letter-spacing: 0.05em;
  padding: 0.35rem 0;
  user-select: none;
  list-style: none;
  text-transform: uppercase;
}

.diary-code summary::-webkit-details-marker {
  display: none;
}

.diary-code summary::before {
  content: "▸ ";
}

.diary-code[open] summary::before {
  content: "▾ ";
}

.diary-code summary:hover {
  color: var(--yellow);
}

.diary-code__hint {
  display: none;
  /* margin: 0.4rem 0 0; */
  font-family: var(--pixel);
  font-size: 0.45rem;
  color: var(--gray);
  line-height: 1.6;
  white-space: normal;
}

.diary-code pre {
  margin: 0.6rem 0 0;
  background: #000;
  border: 0.0625rem solid var(--gray);
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 11rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

.diary-code pre code {
  display: block;
  padding: 0.6rem 0.7rem;
  font-family: "Menlo", "Monaco", "Courier New", monospace;
  font-size: 0.5rem;
  line-height: 1.5;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: anywhere;
  tab-size: 2;
  color: #c0e8c0;
  background: transparent;
}

.diary-code .code-line {
  display: block;
  white-space: pre-wrap;
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* code highlighting */
.diary-code .hljs {
  background: transparent;
  color: #c0e8c0;
}

.diary-code .hljs-keyword,
.diary-code .hljs-built_in {
  color: var(--green-text);
}

.diary-code .hljs-string,
.diary-code .hljs-regexp {
  color: var(--yellow);
}

.diary-code .hljs-number,
.diary-code .hljs-literal {
  color: #88ff88;
}

.diary-code .hljs-comment {
  color: #707070;
  font-style: italic;
}

.diary-code .hljs-function,
.diary-code .hljs-title {
  color: #84b196;
}

.diary-code .hljs-attr,
.diary-code .hljs-property {
  color: #8f97ff;
}

.diary-code .hljs-variable,
.diary-code .hljs-name {
  color: #ffffff;
}

.diary-code .hljs-params {
  color: #c0e8c0;
}

.diary-code .hljs-meta {
  color: #c0e8c0;
}

/* embedded HTML inside JS string template literals */
.diary-code .hljs-string--embedded {
  color: #888;
}

.diary-code .hljs-string--embedded .hljs-tag {
  color: #888;
}

.diary-code .hljs-string--embedded .hljs-name {
  color: #c0e8c0;
}

.diary-code .hljs-string--embedded .hljs-attr {
  color: var(--green-text);
}

.diary-code .hljs-string--embedded .hljs-string {
  color: var(--yellow);
}

.diary-code .hljs-string--embedded .hljs-comment {
  color: #707070;
  font-style: italic;
}

/* embedded CSS inside JS string template literals */
.diary-code .hljs-string--embedded-css .hljs-selector-class,
.diary-code .hljs-string--embedded-css .hljs-selector-id,
.diary-code .hljs-string--embedded-css .hljs-selector-tag,
.diary-code .hljs-string--embedded-css .hljs-selector-pseudo {
  color: #c0e8c0;
}

.diary-code .hljs-string--embedded-css .hljs-attribute {
  color: #8f97ff;
}

.diary-code .hljs-string--embedded-css .hljs-number {
  color: #88ff88;
}

.diary-code .hljs-string--embedded-css .hljs-built_in {
  color: var(--green-text);
}

.diary-code .hljs-string--embedded-css .hljs-keyword,
.diary-code .hljs-string--embedded-css .hljs-meta {
  color: #f59ee3;
}

.diary-code .hljs-string--embedded-css .hljs-string {
  color: var(--yellow);
}

.diary-code .hljs-string--embedded-css .hljs-variable,
.diary-code .hljs-string--embedded-css .hljs-symbol {
  color: #aaffcc;
}

.video-wrapper {
  flex-shrink: 0;
  margin-top: auto;
  padding: 0.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.youtube-embed {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
  background: #000;
  display: block;
}

.vid-shell {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
  overflow: hidden;
}

.vid-shell .youtube-embed {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
}

.vid-shell:fullscreen,
.vid-shell:-webkit-full-screen {
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
}

.vid-ctrl {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.35rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  font-family: system-ui, -apple-system, sans-serif;
  z-index: 2;
}

.vid-ctrl[hidden] {
  display: none;
}

.vid-ctrl__btn {
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 0.7rem;
  line-height: 1;
  padding: 0.15rem 0.25rem;
  cursor: pointer;
  flex: 0 0 auto;
  opacity: 0.9;
}

.vid-ctrl__btn:hover {
  opacity: 1;
}

.vid-ctrl__bar {
  flex: 1 1 auto;
  height: 0.1875rem;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  position: relative;
  border-radius: 0.0625rem;
  min-width: 1.875rem;
}

.vid-ctrl__bar:hover {
  height: 0.3125rem;
}

.vid-ctrl__bar-fill {
  height: 100%;
  background: #fff;
  width: 0%;
  border-radius: 0.0625rem;
  pointer-events: none;
}

.channel {
  width: 100%;
  max-width: 22rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.channel__switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0;
}

.channel__btn-outer {
  padding: var(--frame-w-outer);
  background: var(--frame-black);
}

.channel__btn-border {
  padding: var(--frame-w-mid);
  background: var(--frame-mid);
}

.channel__btn {
  font-family: var(--pixel);
  font-size: 0.6rem;
  min-width: 1.55rem;
  padding: 0.2rem;
  background: #2a2a3e;
  color: var(--white);
  border: var(--border);
  cursor: pointer;
  display: block;
}

.channel__btn:hover:not(:disabled),
.channel__btn:focus-visible:not(:disabled) {
  background: var(--yellow);
  color: #000;
  outline: none;
}

.channel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.channel__label {
  font-size: 0.55rem;
  letter-spacing: 0.08rem;
  font-family: var(--pixel);
  color: var(--yellow);
  text-shadow: var(--outline);
  padding: 0 0.4rem;
}

.channel__title {
  margin: 0;
  font-size: 0.55rem;
  line-height: 1;
  text-align: left;
  color: var(--gray);
  /* opacity: 0.7; */
  min-height: 0.7rem;
  word-break: break-word;
}

.video-wrapper.video-wrapper--empty {
  display: none;
}

.panel__content:has(.video-wrapper--empty) {
  justify-content: flex-start;
}

.panel__content:has(.video-wrapper--empty) .panel__diary {
  max-width: 100%;
}

/* ─── Center HUD column ─── */

.hud {
  width: 11.5rem;
  min-width: 11rem;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  align-self: stretch;
  justify-content: flex-start;
  padding: 0;
  gap: 0.5rem;
}

.hud__round-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--frame-w-mid);
  text-align: center;
  min-width: 6.5rem;
  background: var(--frame-mid);
}

.hud__round-text {
  font-size: 0.65rem;
  padding: 0.15rem;
  color: var(--yellow);
  text-shadow: var(--outline);
  line-height: 1.5;
}

.hud__timer-bar {
  /* height: 2rem; */
  height: 100%;
  width: 100%;
  padding: var(--frame-w-mid);
  background: var(--frame-mid);
  justify-content: center;
}

.hud__inner {
  width: 100%;
  height: 100%;
  background: var(--frame-white);
  border: var(--border);
}

.inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hud__timer-num {
  font-size: 0.75rem;
  padding: 0.15rem;
  color: #0093e8;
  text-shadow: var(--outline);
}

.hud__scores {
  display: flex;
  flex-shrink: 0;
  margin: 0 1.35rem;
  align-items: stretch;
  align-self: center;
  justify-content: center;
  gap: 0.5rem;
}

.hud__score {
  border: var(--border);
  padding: 0.5rem 0.2rem 0.5rem 0.2rem;
  width: 3.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--yellow);
}

.hud__score--red {
  background: var(--red);
}

.hud__score--blue {
  background: var(--blue);
}

.outer {
  padding: 0;
}

.hud__outer {
  padding: var(--frame-w-outer);
  background: var(--frame-black);
}

.hud__border {
  height: 100%;
  padding: var(--frame-w-mid);
  background: var(--frame-mid);
}

.panel__outer {
  flex: 1 1 auto;
  min-height: 0;
  width: 100%;
  margin: 0;
  padding: var(--frame-w-mid);
  background: var(--frame-mid);
  display: flex;
  flex-direction: column;
}

.panel__inner {
  width: 100%;
  height: 100%;
}

.hud__team {
  font-size: 0.7rem;
  text-shadow: var(--outline);
}

.hud__points {
  font-size: 0.75rem;
  text-shadow: var(--outline);
}

/* Stacked title — matches venue screen */

.hud__title {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  margin: 0.5rem 0;
  padding: 0.25rem 0;
  text-align: center;
}

.hud__title-line {
  font-size: 1.2rem;
  color: #959595;
  text-shadow:
    0.125rem 0 0 #0b0038,
    -0.125rem 0 0 #0b0038,
    0 0.125rem 0 #0b0038,
    0 -0.125rem 0 #0b0038,
    0.125rem 0.125rem 0 #0b0038;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.hud__title-line--vj {
  margin: 0.2rem 0;
}

.hud__title-btn {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  font: inherit;
  color: inherit;
  text-align: center;
}

.hud__title-btn:hover .hud__title-line,
.hud__title-btn:focus-visible .hud__title-line {
  color: var(--yellow);
}

.hud__title-btn:focus-visible {
  outline: none;
}

/* Event info modal */

.info-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.info-modal[hidden] {
  display: none;
}

.info-modal__backdrop {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(0, 0, 0, 0.72);
  cursor: pointer;
}

.info-modal__panel {
  position: relative;
  width: min(100%, 22rem);
  max-height: calc(100dvh - 2rem);
  overflow: auto;
}

.info-modal__inner {
  background: var(--bg);
  border: var(--border);
  padding: 1rem 0.85rem 0.85rem;
  color: var(--green-text);
  font-family: var(--dot-gothic);
  /* font-size: 0.65rem; */
  line-height: 1.8;
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: grayscale;
}

.info-modal__title {
  margin: 0 0 0.5rem;
  font-family: inherit;
  font-size: 0.8rem;
  color: var(--yellow);
  text-shadow: var(--outline);
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.info-modal__body:last-of-type {
  margin-bottom: 0;
}

.info-modal__body a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}

.info-modal__body a:hover,
.info-modal__body a:focus-visible {
  color: var(--white);
}

.info-modal__actions {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.info-modal__close {
  min-width: 5rem;
}

.close__border {
  padding: 0rem 0.2rem;
  background-color: var(--frame-mid);
}

.round-label-bg {
  padding-bottom: 0.1rem;
  width: 100%;
  background-color: var(--gray);
}

/* .hud__title-line--sm {
  font-size: 0.8rem;
} */

/* Power meters */

.hud__meters {
  display: flex;
  flex-shrink: 0;
  margin-top: auto;
  justify-content: center;
  gap: 0.5rem;
  height: 4rem;
  align-items: flex-end;
  padding-bottom: 0;
}

.hud__meter {
  width: 1.8rem;
  border: var(--border);
  height: 100%;
  width: 3.5rem;
  transition: height 0.25s steps(4);
}

.hud__meter--red {
  background: var(--red);
}

.hud__meter--blue {
  background: var(--blue);
}

.hud__nav {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: flex-start;
}

.hud__btn {
  font-family: var(--pixel);
  font-size: 0.6rem;
  min-width: 1.55rem;
  padding: 0.2rem;
  background: #2a2a3e;
  color: var(--white);
  border: var(--border);
  cursor: pointer;
}

.hud__btn:hover,
.hud__btn:focus-visible {
  background: var(--yellow);
  color: #000;
  outline: none;
}

/* ─── Footer ─── */

.site-footer {
  flex-shrink: 0;
  text-align: center;
  margin: 0.05rem 0.2rem 0.2rem;
  padding-top: 0;
  font-size: 0.4rem;
  opacity: 0.6;
  line-height: 1.7;
}

.site-footer__hint {
  opacity: 0.5;

}

/* ─── Per-language typography ─── */

.panel__diary:lang(zh) {
  font-family: "DotGothic16", sans-serif;
}

.info-modal__body:lang(zh) {
  font-family: "DotGothic16", sans-serif;
  font-size: 0.58rem;
  line-height: 1.8;
  margin: 0;
}

.panel__diary:lang(en) {
  font-size: 0.75rem;
  line-height: 1.3;
  /* font-stretch: 150%; */
}

.info-modal__body:lang(en) {
  font-size: 0.73rem;
  line-height: 1.3;
  margin: 0 0 0.4rem
}


/* ─── Responsive: stack on narrow screens ─── */

@media (max-width: 880px) {

  /* Undo the desktop "everything fits viewport via flex chain" constraints
     so the stacked layout can grow naturally and the page can scroll. */
  html,
  body {
    height: auto;
  }

  #not-p5 {
    position: relative;
    display: block;
    height: auto;
    min-height: auto;
  }

  .battle-screen {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    align-items: stretch;
    padding-top: 0.5rem;
    flex: none;
    height: auto;
    min-height: auto;
    overflow: visible;
  }

  .panel {
    height: auto;
    min-height: auto;
    margin: 0.3rem;
  }

  .panel--red,
  .panel--blue {
    margin-top: 0.3rem;
  }

  .panel__outer,
  .panel__screen {
    flex: none;
    min-height: auto;
  }

  .video-wrapper {
    margin-top: 0;
    width: auto;
    flex-shrink: 1;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .panel__content {
    flex: none;
    min-height: auto;
    max-height: 46vh;
    margin: 0.2rem;
    flex-direction: row;
    justify-content: space-around;
    background: var(--bg);
  }

  .panel__diary {
    min-width: 50%;
  }

  .hud {
    width: 100%;
    height: auto;
    min-height: auto;
    flex: none;
    padding: 0 1rem;
    min-width: unset;
    border-left: none;
    border-right: none;
    order: -1;
    align-self: stretch;
  }

  .hud__title {
    flex: 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.35rem 0.5rem;
  }

  .hud__title-line--vj {
    /* font-size: 0.7rem; */
    width: 100%;
  }

  .hud__title-line {
    font-size: 0.75rem;
  }

  .panel__screen--green {
    min-height: 40vh;
    max-height: 55vh;
  }

  .hud__meters {
    /* margin-top: 1; */
    /* overflow: hidden; */
  }

  /* Responsive English sizing (Chinese sizes stay the same as desktop) */
  .panel__diary:lang(en) {
    font-size: 0.6rem;
  }

  .info-modal__body:lang(en) {
    font-size: 0.6rem;
  }
}

@media (max-width: 480px) {
  .panel__diary {
    font-size: 0.52rem;
    min-height: 39vh;
    max-width: 100%;
  }

  .panel__diary:lang(en) {
    font-size: 0.65rem;
  }

  .info-modal__body:lang(en) {
    font-size: 0.55rem;
  }

  .panel__content {
    min-height: 81.2vh;
    max-height: none;
    margin: 0.2rem;
    flex-direction: column;
    justify-content: flex-start;
    background: var(--bg);
  }

  .panel__screen--green {
    min-height: 90vh;
    /* max-height: 95vh; */
  }

  .video-wrapper {
    width: 100%;
    flex-shrink: 0;
  }

  .channel {
    max-width: 18rem;
  }

  .channel__title {
    font-size: 0.4rem;
  }

  .channel__label {
    font-size: 0.4rem;
    letter-spacing: 0.02rem;
    padding: 0 0.2rem;
  }

  .site-footer {
    font-size: 0.24rem;
    margin: 0;
  }
}