@font-face {
  font-family: "Anton";
  src: url("fonts/anton-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Instrument Serif";
  src: url("fonts/instrument-serif-italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("fonts/jetbrains-mono-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "JetBrains Mono";
  src: url("fonts/jetbrains-mono-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #0c0b0a;
  --ink-2: #141210;
  --ink-3: #1c1916;
  --bone: #efe7da;
  --bone-dim: #b6ada0;
  --steel: #6e6963;
  --orange: #ff4d00;
  --line: rgba(239, 231, 218, 0.14);
  --line-soft: rgba(239, 231, 218, 0.07);
  --display: "Anton", Impact, "Arial Narrow", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --serif: "Instrument Serif", Georgia, serif;
  --pad: clamp(18px, 4vw, 44px);
}

[hidden] { display: none !important; }

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(900px 700px at 85% -8%, rgba(255, 77, 0, 0.09) 0%, transparent 60%),
    radial-gradient(700px 600px at -10% 20%, rgba(120, 140, 190, 0.06) 0%, transparent 55%),
    var(--ink);
  color: var(--bone);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.locked { overflow: hidden; }

::selection { background: var(--orange); color: var(--ink); }

::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: #0a0908; }
::-webkit-scrollbar-thumb { background: #2b2723; border: 3px solid #0a0908; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange); }

.display {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.005em;
}

a { color: inherit; }

:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

.tapecounter {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: 0 50%;
  z-index: 70;
}

.scan {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
  background:
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 3px),
    radial-gradient(130% 95% at 50% 42%, transparent 52%, rgba(0, 0, 0, 0.5) 100%);
}

.rec {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 1.8s steps(1, end) infinite;
}
@keyframes blink {
  0%, 62% { opacity: 1; }
  63%, 100% { opacity: 0.22; }
}

.bar {
  position: sticky;
  top: 0;
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px var(--pad);
  border-bottom: 1px solid var(--line);
  background: rgba(12, 11, 10, 0.82);
  backdrop-filter: blur(14px);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.bar-l, .bar-r { display: flex; align-items: center; gap: 10px; }
.bar-tag { color: var(--orange); }
.bar-sep { color: var(--line); }
.clock { color: var(--bone-dim); font-variant-numeric: tabular-nums; }
.bar-r { color: var(--steel); }

.rail {
  position: fixed;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  writing-mode: vertical-rl;
  font-size: 0.56rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--steel);
  border-left: 1px solid var(--line);
  padding: 16px 0 16px 12px;
  display: none;
}
@media (min-width: 1240px) { .rail { display: block; } }

main, footer {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.hero { padding: clamp(52px, 10vw, 110px) 0 clamp(30px, 5vw, 54px); }

.kicker {
  font-size: 0.64rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 26px;
}

.hero-name {
  margin: 0 0 30px;
  font-size: clamp(4rem, 17.5vw, 11.5rem);
  line-height: 0.8;
  display: flex;
  flex-direction: column;
}
.hero-name span:last-child {
  color: transparent;
  -webkit-text-stroke: 1.6px var(--bone-dim);
  padding-left: clamp(26px, 11vw, 150px);
}

.hero-note {
  max-width: 44ch;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.25rem, 2.7vw, 1.8rem);
  line-height: 1.34;
  color: var(--bone-dim);
  margin: 0 0 34px;
}

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 9px 0;
  margin-bottom: 0;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: marquee 34s linear infinite;
}
.ticker-track span {
  padding-right: 26px;
  font-family: var(--display);
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-dim);
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  margin: 0;
  border-bottom: 1px solid var(--line);
}
.specs > div {
  padding: 16px 20px 18px;
  border-right: 1px solid var(--line-soft);
}
.specs > div:first-child { padding-left: 0; }
.specs dt {
  font-size: 0.56rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 7px;
}
.specs dd {
  margin: 0;
  font-size: 0.82rem;
  color: var(--bone);
}
.specs dd a { color: var(--orange); text-decoration: none; }
.specs dd a:hover { text-decoration: underline; }

.block { padding: clamp(48px, 8vw, 96px) 0 0; }

.sec {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 0 18px;
  padding: 18px 0 14px;
  border-top: 1px solid var(--line);
  margin-bottom: clamp(22px, 3vw, 34px);
}
.sec::before, .sec::after {
  content: "+";
  position: absolute;
  top: -9px;
  font-size: 0.62rem;
  line-height: 1;
  color: var(--steel);
}
.sec::before { left: -3px; }
.sec::after { right: -3px; }

.sec-num {
  font-size: clamp(2.6rem, 6.6vw, 4.6rem);
  line-height: 0.74;
  color: transparent;
  -webkit-text-stroke: 1px rgba(239, 231, 218, 0.42);
}
.sec h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3.6vw, 2.3rem);
  line-height: 0.9;
}
.sec-note {
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
  padding-bottom: 4px;
}

.sheet { columns: 2; column-gap: 12px; }
@media (min-width: 760px) { .sheet { columns: 3; } }

.frame {
  position: relative;
  break-inside: avoid;
  margin: 0 0 12px;
  background: var(--ink-2);
  border: 1px solid var(--line);
  cursor: crosshair;
  transition: border-color 0.2s ease, transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.frame::before, .frame::after {
  content: "";
  display: block;
  height: 11px;
  background-image: radial-gradient(circle at 7px 50%, rgba(239, 231, 218, 0.26) 2px, transparent 2.4px);
  background-size: 22px 11px;
}
.frame::before { border-bottom: 1px solid var(--line-soft); }
.frame::after { border-top: 1px solid var(--line-soft); }

.frame-win { overflow: hidden; background: #000; }
.frame-win img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.93);
  transition: transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.3s ease;
}
.frame figcaption {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 9px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}
.frame figcaption span:first-child { color: var(--bone-dim); }

.frame:hover, .frame:focus-visible { border-color: var(--orange); transform: translateY(-3px); }
.frame:hover .frame-win img, .frame:focus-visible .frame-win img { transform: scale(1.035); filter: saturate(1.05); }

.tapes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  align-items: start;
}

.tape {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--ink-2);
  cursor: pointer;
  transition: border-color 0.2s ease, transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.tape-bar {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 10px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--steel);
}
.tape-bar .tc { margin-left: auto; color: var(--bone-dim); font-variant-numeric: tabular-nums; }

.tape-win {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #000;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.tape-win img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(0.93) contrast(1.02);
  transition: transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), filter 0.3s ease;
}
.scanlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 4px);
  mix-blend-mode: overlay;
}

.play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 62px;
  height: 62px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(239, 231, 218, 0.6);
  border-radius: 50%;
  background: rgba(12, 11, 10, 0.42);
  backdrop-filter: blur(5px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.25s ease;
}
.play::before {
  content: "";
  position: absolute;
  left: 56%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 17px;
  border-color: transparent transparent transparent var(--bone);
}
.tape figcaption {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.56rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
}
.tape figcaption span:first-child { color: var(--bone-dim); }

.tape:hover, .tape:focus-visible { border-color: var(--orange); transform: translateY(-3px); }
.tape:hover .tape-win img, .tape:focus-visible .tape-win img { transform: scale(1.04); filter: saturate(1.05); }
.tape:hover .play, .tape:focus-visible .play {
  background: var(--orange);
  border-color: var(--orange);
  transform: translate(-50%, -50%) scale(1.08);
}
.tape:hover .play::before, .tape:focus-visible .play::before { border-left-color: var(--ink); }

.chans { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.chans li { border-bottom: 1px solid var(--line); }
.chans a {
  position: relative;
  display: grid;
  grid-template-columns: 66px 1fr auto;
  grid-template-areas:
    "ch name go"
    "ch url  go";
  align-items: center;
  gap: 4px 18px;
  padding: 24px 10px;
  text-decoration: none;
  overflow: hidden;
  transition: padding 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.chans a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--orange);
  transition: width 0.14s ease-out;
}
.chans a > * { position: relative; z-index: 1; transition: color 0.2s ease, transform 0.28s ease; }
.chans .ch {
  grid-area: ch;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
}
.chans .ch-name {
  grid-area: name;
  font-size: clamp(1.7rem, 4.6vw, 2.9rem);
  line-height: 0.92;
}
.chans .ch-url {
  grid-area: url;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  color: var(--steel);
}
.chans .ch-go {
  grid-area: go;
  font-size: 1.5rem;
  color: var(--steel);
}
.chans a:hover, .chans a:focus-visible { padding-left: 20px; }
.chans a:hover::before, .chans a:focus-visible::before { width: 100%; }
.chans a:hover .ch-name, .chans a:focus-visible .ch-name { color: var(--ink); transform: translateX(6px); }
.chans a:hover .ch, .chans a:focus-visible .ch { color: rgba(12, 11, 10, 0.66); }
.chans a:hover .ch-url, .chans a:focus-visible .ch-url { color: rgba(12, 11, 10, 0.72); }
.chans a:hover .ch-go, .chans a:focus-visible .ch-go { color: var(--ink); transform: translate(3px, -3px); }

footer {
  padding-top: clamp(64px, 11vw, 130px);
  padding-bottom: 50px;
}
.eot {
  margin: 0 0 10px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  font-size: clamp(2.4rem, 9vw, 6rem);
  line-height: 0.84;
  color: transparent;
  -webkit-text-stroke: 1.4px rgba(239, 231, 218, 0.5);
}
.mail {
  display: inline-block;
  margin-bottom: 26px;
  font-size: clamp(1.4rem, 4.6vw, 2.6rem);
  line-height: 1;
  color: var(--orange);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.mail:hover { border-color: var(--orange); color: var(--bone); }
.fine {
  margin: 0;
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 65;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 4vw, 46px);
  background: rgba(6, 5, 5, 0.95);
  backdrop-filter: blur(8px);
}
.lightbox[hidden] { display: none; }

.lb-monitor {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #000;
  border: 1px solid var(--line);
  max-width: min(94vw, 1160px);
}
.lb-monitor::before, .lb-monitor::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--orange);
}
.lb-monitor::before { top: -7px; left: -7px; border-right: 0; border-bottom: 0; }
.lb-monitor::after { bottom: -7px; right: -7px; border-left: 0; border-top: 0; }

.lb-top, .lb-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 8px 12px;
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--steel);
}
.lb-top { border-bottom: 1px solid var(--line); }
.lb-bot { border-top: 1px solid var(--line); }
.lb-top .rec { margin-right: 8px; }
.lb-meta { color: var(--bone-dim); }
.lb-hint { color: var(--steel); }

.lb-stage { display: grid; place-items: center; background: #000; }
.lb-stage img, .lb-stage video {
  display: block;
  max-width: min(90vw, 1120px);
  max-height: 72vh;
  width: auto;
  height: auto;
}

.lb-close, .lb-prev, .lb-next {
  position: fixed;
  z-index: 2;
  width: 44px;
  height: 44px;
  background: rgba(12, 11, 10, 0.72);
  color: var(--bone);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.lb-close { top: 18px; right: 18px; }
.lb-prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 16px; top: 50%; transform: translateY(-50%); }
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--ink);
}

.gate {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pad);
  background:
    repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 0 1px, transparent 1px 3px),
    rgba(8, 7, 6, 0.985);
}
.gate[hidden] { display: none; }
.gate-inner { max-width: 520px; }
.gate-mark {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 20px;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--orange);
}
.gate-big {
  margin: 0 0 6px;
  font-size: clamp(5rem, 22vw, 9rem);
  line-height: 0.78;
  color: transparent;
  -webkit-text-stroke: 2px var(--orange);
}
.gate h2 {
  margin: 0 0 16px;
  font-size: clamp(1.1rem, 3.4vw, 1.6rem);
  line-height: 1.02;
  max-width: 22ch;
}
.gate-copy {
  font-family: var(--serif);
  font-style: italic;
  color: var(--bone-dim);
  font-size: clamp(1rem, 2.4vw, 1.15rem);
  line-height: 1.45;
  margin: 0 0 26px;
  max-width: 44ch;
}
.gate-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 20px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.btn-fill { background: var(--orange); border-color: var(--orange); color: var(--ink); font-weight: 700; }
.btn-fill:hover { background: var(--bone); border-color: var(--bone); }
.btn-line { background: transparent; color: var(--steel); }
.btn-line:hover { border-color: var(--bone); color: var(--bone); }

.reveal { opacity: 0; transform: translateY(18px); }
.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.7, 0.2, 1);
}

@media (max-width: 620px) {
  .sec { grid-template-columns: auto 1fr; row-gap: 8px; }
  .sec-note { grid-column: 1 / -1; padding-bottom: 0; }
  .specs > div { padding-left: 0; border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .lb-hint { display: none; }
  .lb-prev, .lb-next { top: auto; bottom: 18px; transform: none; }
  .lb-prev { left: 18px; }
  .lb-next { right: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  .rec { animation: none; }
  .ticker-track { animation: none; }
  * { transition: none !important; }
}

.bar-admin { color: var(--orange); text-decoration: none; }
.bar-admin:hover { text-decoration: underline; }

.hero-album { padding-top: clamp(34px, 6vw, 64px); }
.hero-name-sm { font-size: clamp(2.6rem, 10vw, 6.5rem); }
.hero-name.hero-name-sm span:last-child {
  padding-left: 0;
  color: var(--bone);
  -webkit-text-stroke: 0;
}

.crumb { color: var(--orange); text-decoration: none; }
.crumb:hover { text-decoration: underline; }

.album-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 0 0 34px; }
.album-desc { color: var(--bone-dim); max-width: 60ch; margin: -4px 0 22px; font-size: .84rem; }

.sec-link { color: inherit; text-decoration: none; }
.sec-link:hover { color: var(--orange); }
.sec-note a { color: var(--bone-dim); text-decoration: none; border-bottom: 1px solid var(--line); }
.sec-note a:hover { color: var(--orange); border-color: var(--orange); }

.sheet .frame, .sheet .tape { break-inside: avoid; margin-bottom: 12px; }

.dl {
  color: var(--steel);
  text-decoration: none;
  font-size: .8rem;
  line-height: 1;
  padding: 0 2px;
}
.dl:hover { color: var(--orange); }

.empty { color: var(--steel); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; padding: 26px 0; }

.lb-actions { display: flex; gap: 10px; }
.lb-btn {
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-dim);
  background: transparent;
  border: 1px solid var(--line);
  padding: 6px 10px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.18s ease, color 0.18s ease;
}
.lb-btn:hover { border-color: var(--orange); color: var(--orange); }

.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 75;
  background: var(--orange);
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 12px 18px;
}
.toast[hidden] { display: none; }

.sharebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel);
}
.sharebar-tag { display: flex; align-items: center; gap: 8px; color: var(--bone-dim); }
.sharebar-link { color: var(--steel); text-decoration: none; border-bottom: 1px solid var(--line); }
.sharebar-link:hover { color: var(--orange); border-color: var(--orange); }

.lockform { max-width: 380px; display: flex; flex-direction: column; gap: 10px; margin-top: 22px; }
.lockform label { font-size: 0.56rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--steel); }
.lockform input {
  background: #0a0908;
  border: 1px solid var(--line);
  color: var(--bone);
  font-family: var(--mono);
  font-size: 0.9rem;
  padding: 12px;
}
.lockform input:focus { outline: none; border-color: var(--orange); }
.lockerror { color: var(--orange); font-size: 0.66rem; margin: 0; }

.sheet-single { columns: 1; max-width: 620px; }
.share-single { margin-bottom: 0; }
