:root {
  color-scheme: light;
  --font-cjk: "Source Han Sans SC", "Source Han Sans CN", "Noto Sans CJK SC", "Noto Sans SC", "思源黑体", "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
  --font-latin: Futura, "Futura PT", "Avenir Next", Avenir, Inter, system-ui, sans-serif;
  --font-ui: var(--font-latin), var(--font-cjk);
  font-family: var(--font-ui);
  background: #f6f7f2;
  color: #18201d;
}

@property --glow-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

button,
input,
textarea {
  font: inherit;
}

.viewer-open {
  overflow: hidden;
}

.upload-body {
  display: grid;
  place-items: center;
  padding: 18px;
  color: #f7faf7;
  background:
    radial-gradient(circle at 70% 18%, rgba(166, 87, 255, 0.17), transparent 25%),
    radial-gradient(circle at 22% 78%, rgba(192, 96, 66, 0.18), transparent 24%),
    linear-gradient(180deg, rgba(18, 15, 23, 0.08), rgba(18, 15, 23, 0.74) 74%, #120f17),
    #120f17;
}

.upload-body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 44%, black, transparent 72%);
  opacity: 0.42;
}

.upload-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
}

.upload-panel {
  padding: clamp(22px, 6vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(24, 19, 31, 0.86);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.46);
  backdrop-filter: blur(18px);
}

.brand-row {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #d5e0dd;
  font-size: 14px;
  font-weight: 800;
}

.brand-row.compact {
  color: #d5e0dd;
}

.brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: #c06042;
}

.upload-panel h1 {
  margin: 14px 0 24px;
  font-size: clamp(30px, 9vw, 46px);
  line-height: 1.02;
  letter-spacing: 0;
  color: #f7f2ff;
  text-shadow: 0 12px 46px rgba(0, 0, 0, 0.42);
}

.upload-form {
  display: grid;
  gap: 14px;
}

.mode-switch {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 62px;
  padding: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, #7c3aed 0%, #a855f7 48%, #8b5cf6 100%);
  box-shadow:
    inset 0 -10px 20px rgba(58, 25, 120, 0.28),
    inset 0 5px 12px rgba(255, 255, 255, 0.15),
    0 18px 48px rgba(124, 58, 237, 0.34);
  isolation: isolate;
}

.mode-switch::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  z-index: 0;
  width: calc(50% - 7px);
  height: calc(100% - 14px);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 242, 255, 0.9));
  box-shadow:
    0 12px 28px rgba(32, 19, 58, 0.34),
    inset 0 2px 4px rgba(255, 255, 255, 0.7);
  transform: translateX(0);
  transition: transform 220ms ease;
}

.mode-switch.comment-active::before {
  transform: translateX(100%);
}

.mode-btn {
  position: relative;
  z-index: 1;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(19px, 5vw, 28px);
  font-weight: 900;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.mode-btn.active {
  color: #8b35f6;
  background: transparent;
  box-shadow: none;
  transform: translateY(-1px);
}

.field-label {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.82);
}

input[type="text"],
input[name="name"] {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #f7f2ff;
}

input[name="name"]::placeholder,
.comment-input-panel textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.comment-input-panel {
  display: grid;
  gap: 9px;
}

.comment-input-panel[hidden] {
  display: none;
}

.comment-input-panel textarea {
  width: 100%;
  resize: vertical;
  min-height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: #f7f2ff;
  line-height: 1.5;
}

.comment-input-panel small {
  justify-self: end;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

.drop-zone {
  display: grid;
  place-items: center;
  min-height: 190px;
  border: 2px dashed rgba(56, 189, 248, 0.36);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.07);
  color: #f7f2ff;
  cursor: pointer;
  box-shadow: inset 0 0 38px rgba(56, 189, 248, 0.06);
}

.drop-zone[hidden] {
  display: none;
}

.drop-zone input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.drop-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #a78bfa);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  box-shadow: 0 14px 34px rgba(56, 189, 248, 0.2);
}

.drop-zone strong {
  margin-top: 14px;
  font-size: 18px;
}

.drop-zone small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.58);
}

.preview {
  display: none;
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: 8px;
  background: #09070d;
}

.upload-form #submitBtn {
  height: 52px;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #c06042, #a855f7);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 16px 42px rgba(168, 85, 247, 0.28);
}

.upload-form #submitBtn:disabled {
  opacity: 0.6;
  cursor: wait;
}

.status {
  min-height: 24px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.status.success {
  color: #276749;
}

.status.error {
  color: #b42318;
}

.gallery-body {
  overflow: hidden;
  background: #120f17;
  color: #f7faf7;
}

.gallery-body::before,
.gallery-body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.gallery-body::before {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 88%, rgba(255, 255, 255, 0.16), transparent 18%),
    radial-gradient(circle at 12% 18%, rgba(166, 87, 255, 0.15), transparent 26%),
    linear-gradient(180deg, rgba(18, 15, 23, 0.06), rgba(18, 15, 23, 0.58) 72%, #120f17 100%);
}

.gallery-body::after {
  z-index: 2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 46%, black, transparent 70%);
  opacity: 0.35;
}

.prism-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.gallery-toolbar {
  position: fixed;
  z-index: 6;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px clamp(18px, 4vw, 42px);
  pointer-events: none;
}

.gallery-toolbar h1 {
  margin: 4px 0 0;
  font-size: clamp(30px, 6vw, 62px);
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 10px 48px rgba(0, 0, 0, 0.36);
}

.shiny-title {
  display: inline-flex;
  align-items: center;
  gap: clamp(12px, 2vw, 22px);
}

.shiny-title span {
  background-image: linear-gradient(115deg, #a9a9af 0%, #a9a9af 35%, #ffffff 50%, #a9a9af 65%, #a9a9af 100%);
  background-size: 220% auto;
  background-position: 150% center;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: shiny-title-sweep 2.6s linear infinite;
}

.shiny-title span:first-child {
  font-size: 0.76em;
  animation-delay: 0.18s;
}

@keyframes shiny-title-sweep {
  0% {
    background-position: 150% center;
  }
  100% {
    background-position: -50% center;
  }
}

.toolbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  pointer-events: auto;
}

.icon-button,
.text-button,
.dialog-close {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.105);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(16px);
}

.icon-button {
  width: 42px;
  height: 42px;
  font-size: 20px;
}

.text-button {
  height: 42px;
  padding: 0 14px;
  font-weight: 800;
}

.circular-stage {
  position: relative;
  z-index: 4;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding-top: 116px;
  perspective: 1400px;
  overflow: hidden;
}

.comment-stage {
  position: relative;
  z-index: 4;
  min-height: 100vh;
  padding: 132px clamp(14px, 3vw, 34px) 24px;
}

.comment-grid {
  width: min(100%, 1280px);
  margin: 0 auto;
  columns: 260px;
  column-gap: clamp(12px, 2vw, 18px);
}

.comment-grid.is-empty {
  min-height: min(46vh, 360px);
  display: grid;
  place-items: center;
  columns: auto;
  width: min(100% - 28px, 1280px);
}

.comment-body {
  overflow: auto;
}

.glow-card {
  --pointer-x: 50%;
  --pointer-y: 50%;
  --glow-active: 0;
  --glow-delay: 0s;
  position: relative;
  display: block;
  min-height: 132px;
  margin: 0 0 clamp(12px, 2vw, 18px);
  break-inside: avoid;
  border-radius: 24px;
  padding: 2px;
  background:
    radial-gradient(420px circle at var(--pointer-x) var(--pointer-y), rgba(244, 114, 182, calc(0.32 * var(--glow-active))), transparent 38%),
    conic-gradient(from var(--glow-angle, 0deg), rgba(192, 132, 252, 0.18), rgba(56, 189, 248, 0.72), rgba(244, 114, 182, 0.7), rgba(192, 132, 252, 0.18));
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.38),
    0 0 42px rgba(124, 58, 237, 0.18);
  overflow: hidden;
  animation: glow-card-sweep 7.5s linear infinite;
  animation-delay: var(--glow-delay);
}

.glow-card::before {
  content: "";
  position: absolute;
  inset: -55%;
  background:
    radial-gradient(circle at 20% 18%, rgba(192, 132, 252, 0.38), transparent 22%),
    radial-gradient(circle at 76% 20%, rgba(56, 189, 248, 0.34), transparent 20%),
    radial-gradient(circle at 84% 84%, rgba(244, 114, 182, 0.32), transparent 23%);
  opacity: 0.55;
  animation: glow-card-drift 8s ease-in-out infinite alternate;
}

.glow-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 22px;
  background: #120f17;
}

.glow-edge {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    radial-gradient(320px circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, calc(0.46 * var(--glow-active))), transparent 34%),
    linear-gradient(120deg, transparent 12%, rgba(255, 255, 255, 0.42), transparent 32%);
  mix-blend-mode: screen;
  opacity: 0.58;
  transform: translateX(-120%);
  animation: glow-edge-pass 5.8s ease-in-out infinite;
  animation-delay: var(--glow-delay);
}

.glow-card-inner {
  position: relative;
  z-index: 1;
  min-height: 128px;
  display: grid;
  align-content: center;
  gap: 8px;
  border-radius: 22px;
  padding: clamp(16px, 2.2vw, 24px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(18, 15, 23, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.glow-card-short {
  min-height: 92px;
}

.glow-card-short .glow-card-inner {
  min-height: 88px;
}

.glow-card-medium {
  min-height: 122px;
}

.glow-card-medium .glow-card-inner {
  min-height: 118px;
}

.glow-card-long {
  min-height: 168px;
}

.glow-card-long .glow-card-inner {
  min-height: 164px;
}

.glow-name {
  margin: 0;
  color: #f2f0f7;
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 950;
  line-height: 1.08;
  letter-spacing: 0;
}

.glow-text {
  margin: 0;
  color: rgba(241, 238, 247, 0.76);
  font-size: clamp(13px, 1.35vw, 17px);
  line-height: 1.42;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.glow-time {
  color: rgba(241, 238, 247, 0.42);
  font-size: 11px;
  font-weight: 800;
}

@keyframes glow-card-sweep {
  0% {
    --glow-angle: 0deg;
  }
  100% {
    --glow-angle: 360deg;
  }
}

@keyframes glow-card-drift {
  0% {
    transform: translate(-4%, -3%) rotate(0deg);
  }
  100% {
    transform: translate(5%, 4%) rotate(18deg);
  }
}

@keyframes glow-edge-pass {
  0%, 18% {
    transform: translateX(-120%);
  }
  44%, 100% {
    transform: translateX(120%);
  }
}

.comment-empty {
  margin: 0;
  display: inline-block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
  word-spacing: normal;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(18px, 3vw, 30px);
  font-weight: 900;
}

.circular-track {
  position: relative;
  width: min(100vw, 1160px);
  height: min(56vh, 500px);
  overflow: hidden;
  cursor: grab;
  outline: none;
}

.circular-track:active {
  cursor: grabbing;
}

.circular-track canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.circular-stage::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 11vh;
  width: min(58vw, 680px);
  height: 76px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.34);
  filter: blur(26px);
  pointer-events: none;
}

.empty-state {
  position: absolute;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(18px, 3vw, 28px);
  font-weight: 800;
}

.qr-dialog {
  width: min(92vw, 380px);
  border: 0;
  border-radius: 8px;
  padding: 28px;
  background: #18131f;
  color: #f7f2ff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.5);
}

.image-viewer {
  width: min(94vw, 1120px);
  height: min(90vh, 820px);
  border: 0;
  border-radius: 8px;
  padding: 22px;
  background: rgba(10, 14, 13, 0.9);
  color: #fff;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(18px);
}

.image-viewer::backdrop {
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(3px);
}

.image-viewer figure {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  width: 100%;
  height: 100%;
  margin: 0;
}

.image-viewer img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  border-radius: 8px;
  background: #070a09;
}

.image-viewer figcaption {
  min-height: 22px;
  text-align: center;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.viewer-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
}

.qr-dialog::backdrop {
  background: rgba(0, 0, 0, 0.55);
}

.qr-dialog img {
  display: block;
  width: 100%;
  max-width: 260px;
  margin: 12px auto;
}

.qr-dialog p {
  overflow-wrap: anywhere;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
}

.dialog-close {
  float: right;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
}

.display-page-links {
  position: fixed;
  left: 50%;
  bottom: clamp(12px, 3vw, 24px);
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  width: min(94vw, 920px);
  padding: 8px 10px;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: translateX(-50%);
  backdrop-filter: none;
}

.comment-body .display-page-links {
  position: relative;
  left: auto;
  bottom: auto;
  width: min(94vw, 920px);
  margin: 0 auto 24px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  backdrop-filter: none;
}

.display-page-link-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.display-page-link-item a {
  padding: 5px 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.display-page-link-item a:hover {
  color: #ffffff;
}

.display-qr-trigger {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 30px;
  border: 0;
  border-radius: 8px;
  padding: 0 7px;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  font-weight: 950;
  cursor: pointer;
}

.display-qr-trigger:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

@media (max-width: 720px) {
  .gallery-toolbar {
    align-items: flex-start;
  }

  .toolbar-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .text-button {
    width: 100%;
  }

  .circular-stage {
    padding-top: 148px;
  }

  .comment-stage {
    padding: 154px 12px 18px;
  }

  .comment-grid {
    columns: 1;
  }

  .comment-grid.is-empty {
    display: grid;
  }

  .circular-track {
    width: 100vw;
    height: 50vh;
  }

  .image-viewer {
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none;
    border-radius: 0;
    padding: 56px 12px 18px;
  }

  .display-page-links {
    gap: 8px;
    padding: 8px;
  }

  .display-page-link-item a {
    font-size: 12px;
  }

  .display-qr-trigger {
    min-width: 28px;
    height: 28px;
    padding: 0 6px;
  }
}

/* Shared light theme inspired by comment-board-light */
:root { --ink:#302033; --muted:#7c8183; --line:#dfe5e7; --paper:#fbfcfa; --accent:#d8ff2f; }
body.gallery-body, body.upload-body { color:var(--ink); background:radial-gradient(circle at 84% 8%,rgba(216,255,47,.12),transparent 22%),var(--paper); }
.gallery-toolbar, .upload-panel, .upload-shell { color:var(--ink); background:#fff; border-color:var(--line); box-shadow:0 8px 24px rgba(48,32,51,.06); }
.prism-background { opacity:.18; background:linear-gradient(135deg,#edf0e9,#fbfcfa 55%,#e6dcf2); }
.comment-stage, .circular-stage { background:#edf0e9; background-image:linear-gradient(rgba(76,84,69,.055) 1px,transparent 1px),linear-gradient(90deg,rgba(76,84,69,.055) 1px,transparent 1px); background-size:28px 28px; }
.comment-card, .glow-card, .upload-panel, .drop-zone, .comment-input-panel { color:var(--ink); background:#fff; border-color:var(--line); box-shadow:5px 7px 0 rgba(48,32,51,.06),10px 17px 24px rgba(48,32,51,.10); }
.comment-card:nth-child(4n+1), .glow-card:nth-child(4n+1) { background:#fff1a5; }
.comment-card:nth-child(4n+2), .glow-card:nth-child(4n+2) { background:#dcecc7; }
.comment-card:nth-child(4n+3), .glow-card:nth-child(4n+3) { background:#d9eaf3; }
.comment-card:nth-child(4n), .glow-card:nth-child(4n) { background:#ffd8de; }
.comment-name, .glow-name { color:var(--ink); font-family:"LXGW Bright","Neue Montreal",sans-serif; font-weight:900; }
.comment-text, .glow-text, .upload-panel, input, textarea, button { font-family:"LXGW Bright","Neue Montreal",sans-serif; }
.icon-button, .text-button, .mode-btn, .submit-button { border-color:var(--line); background:#fff; color:var(--ink); }
.icon-button:hover, .text-button:hover, .mode-btn:hover, .submit-button:hover { background:var(--accent); color:var(--ink); }

/* Keep the light reference page calm and legible: disable legacy glow/sweep effects. */
.shiny-title span { background:none; -webkit-text-fill-color:currentColor; color:var(--ink); }
.shiny-title span, .glow-card, .glow-card::before, .glow-card::after, .glow-edge { animation:none !important; }
.glow-card::before, .glow-card::after, .glow-edge { display:none !important; }
.glow-card { background:var(--note, #fff1a5); border:1px solid rgba(48,32,51,.09); box-shadow:1px 2px 0 #dac85e,5px 7px 0 rgba(48,32,51,.08),10px 17px 24px rgba(48,32,51,.10); }
.icon-button:hover, .text-button:hover, .mode-btn:hover, .submit-button:hover { transform:none; box-shadow:none; }
.circular-track{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:28px;width:100%;height:auto;min-height:420px;padding:36px;overflow:auto}.gallery-photo-card{display:flex;flex-direction:column;gap:10px;padding:12px;border:1px solid #d9dfd6;background:#fff;color:var(--ink);box-shadow:5px 7px 0 rgba(48,32,51,.08),10px 17px 24px rgba(48,32,51,.10);cursor:zoom-in;transform:rotate(-1deg);transition:transform .2s}.gallery-photo-card:nth-child(even){transform:rotate(1deg);background:#fff1a5}.gallery-photo-card:hover{transform:translateY(-5px) rotate(0)}.gallery-photo-card img{width:100%;aspect-ratio:4/3;object-fit:cover}.gallery-photo-card span{font-family:"LXGW Bright","Neue Montreal",sans-serif;font-weight:700;text-align:left}
.upload-panel h1{color:var(--ink);font-family:Frama,"Arial Narrow",sans-serif;text-shadow:none}.upload-body::before,.upload-body::after{display:none!important}.mode-switch{background:#edf0e9!important;border:1px solid var(--line)!important;box-shadow:none!important}.mode-btn{color:var(--ink)!important;background:#fff!important}.mode-btn.active{color:#fff!important;background:var(--ink)!important;box-shadow:none!important}.field-label,.drop-zone strong,.drop-zone small,.comment-input-panel,.upload-panel input,.upload-panel textarea{color:var(--ink)!important}.drop-zone{background:#fff!important;border:2px dashed #b8c2bd!important}.drop-icon{background:var(--ink)!important;color:#fff!important;box-shadow:none!important}.upload-form #submitBtn{background:var(--ink)!important;color:#fff!important;box-shadow:none!important}.upload-form #submitBtn:hover{background:#493650!important}
.upload-panel input[type="text"],.upload-panel input[name="name"],.upload-panel textarea{background:#fff!important;color:#302033!important;border:1px solid #b9c4bf!important;box-shadow:inset 0 1px 2px rgba(48,32,51,.06)!important}.upload-panel input::placeholder,.upload-panel textarea::placeholder{color:#7c8183!important;opacity:1}.upload-panel input:focus,.upload-panel textarea:focus{outline:2px solid #d8ff2f!important;outline-offset:2px}
.upload-panel .brand-row{color:#66706d!important;font-size:15px;font-weight:700;letter-spacing:.01em}.upload-panel h1{color:#302033!important;letter-spacing:-.045em}.upload-panel .field-label{color:#4f5754!important;font-size:13px;font-weight:800;letter-spacing:.02em}.upload-panel small,.upload-panel .status{color:#7c8183!important;font-size:12px}.drop-zone strong{color:#302033!important;font-weight:800}.drop-zone small{color:#7c8183!important}.mode-btn{font-weight:800!important}.upload-form #submitBtn{font-weight:800!important;letter-spacing:.01em}
.upload-panel h1,.upload-panel .mode-btn,.upload-form #submitBtn{font-family:"LXGW Bright","Neue Montreal",sans-serif!important;font-weight:800!important}
.gallery-body{background:#14151a!important;color:#f4f1ea!important}.gallery-body .prism-background{display:none}.gallery-body .gallery-toolbar{background:#14151a!important;color:#f4f1ea!important}.gallery-body .brand-row.compact,.gallery-body .shiny-title span{color:#f4f1ea!important}.gallery-body .circular-stage{background:#1d2026!important;background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px)!important;border-color:#343943!important}.gallery-body .icon-button,.gallery-body .text-button,.gallery-body .display-qr-trigger{background:#232731!important;color:#f4f1ea!important;border-color:#454b58!important}.gallery-body .icon-button:hover,.gallery-body .text-button:hover{background:#d8ff2f!important;color:#302033!important}.gallery-body .empty-state,.gallery-body .display-page-link-item a{color:#d9dde5!important}
