:root {
  color-scheme: dark;
  --bg: #050505;
  --bg-rgb: 5, 5, 5;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.14);
  --text: #f7f7f2;
  --text-rgb: 247, 247, 242;
  --muted: rgba(247, 247, 242, 0.68);
  --line: rgba(255, 255, 255, 0.14);
  --accent: #35f2a2;
  --danger: #ff5c7a;
  --gold: #ffd166;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

[data-theme="light"] {
  color-scheme: light;
  --bg: #f6f3ec;
  --bg-rgb: 246, 243, 236;
  --panel: rgba(10, 10, 10, 0.06);
  --panel-strong: rgba(10, 10, 10, 0.12);
  --text: #101010;
  --text-rgb: 16, 16, 16;
  --muted: rgba(16, 16, 16, 0.64);
  --line: rgba(16, 16, 16, 0.14);
  --accent: #087f5b;
  --danger: #c92a4b;
  --gold: #9a6700;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-snap-type: y mandatory;
}

html:has(.submit-page),
html:has(.leaderboard-page),
html:has(.legal-page) {
  scroll-snap-type: none;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 10%, rgba(53, 242, 162, 0.12), transparent 32rem),
    radial-gradient(circle at 10% 60%, rgba(255, 92, 122, 0.10), transparent 30rem),
    var(--bg);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.topbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 clamp(16px, 4vw, 48px);
  background: linear-gradient(to bottom, rgba(var(--bg-rgb), 0.84), rgba(var(--bg-rgb), 0));
  pointer-events: none;
}

.topbar > * {
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
}

.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-picker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 10px;
  background: var(--panel);
  color: var(--text);
}

.language-picker span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
}

.language-picker select {
  width: 92px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
}

.language-picker option {
  color: #050505;
}

.nav-actions a,
.icon-button,
.ghost-button,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 14px;
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
}

.icon-button {
  width: 36px;
  padding: 0;
  font-size: 17px;
}

.submit-button {
  background: var(--text);
  color: var(--bg);
  border-color: var(--text);
  font-weight: 800;
}

.danger-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border: 1px solid rgba(255, 92, 122, 0.54);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 92, 122, 0.12);
  color: var(--danger);
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.feed-shell {
  min-height: 100vh;
}

.rail {
  width: min(100%, 620px);
  margin: 0 auto;
}

.project-card {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 100vh;
  padding: 82px 18px 34px;
  scroll-snap-align: start;
}

.project-image-wrap {
  position: relative;
  overflow: hidden;
  width: min(100%, 520px);
  aspect-ratio: 4 / 5;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #141414;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.project-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rank-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.64);
  backdrop-filter: blur(14px);
  font-size: 13px;
  font-weight: 800;
}

.project-copy {
  width: min(100%, 520px);
  margin: 14px auto 0;
}

.project-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--muted);
  font-size: 13px;
}

.dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--muted);
}

.project-copy h2 {
  margin: 8px 0 0;
  font-size: clamp(32px, 6vw, 54px);
  line-height: 0.95;
  letter-spacing: 0;
}

.summary {
  max-width: 42rem;
  margin: 10px 0 0;
  color: rgba(247, 247, 242, 0.82);
  font-size: clamp(16px, 2.4vw, 18px);
  line-height: 1.38;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.tag-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--muted);
  font-size: 12px;
}

.action-stack {
  position: absolute;
  right: max(12px, calc(50% - 348px));
  bottom: 112px;
  display: grid;
  gap: 10px;
}

.vote-button,
.open-button {
  display: grid;
  place-items: center;
  width: 58px;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: var(--text);
  cursor: pointer;
  backdrop-filter: blur(16px);
}

.vote-button span {
  font-size: 24px;
  line-height: 1;
}

.vote-button strong {
  font-size: 11px;
}

.vote-button.like.selected {
  background: rgba(53, 242, 162, 0.22);
  border-color: rgba(53, 242, 162, 0.72);
}

.vote-button.dislike.selected {
  background: rgba(255, 92, 122, 0.22);
  border-color: rgba(255, 92, 122, 0.72);
}

.open-button {
  min-height: 42px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.side-panel {
  position: fixed;
  left: clamp(18px, 4vw, 48px);
  bottom: 34px;
  z-index: 10;
  display: grid;
  gap: 18px;
  width: min(280px, 24vw);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.side-panel h1 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1.02;
  letter-spacing: 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.stat-grid div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.07);
}

.stat-grid span {
  display: block;
  font-weight: 900;
}

.stat-grid small {
  color: var(--muted);
  font-size: 11px;
}

.legal-links {
  display: flex;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  pointer-events: auto;
}

.legal-links a:hover,
.site-footer a:hover {
  color: var(--accent);
}

.leaderboard-page {
  min-height: 100vh;
}

.submit-page {
  min-height: 100vh;
}

.leaderboard-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 104px 0 48px;
}

.submit-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 104px 0 54px;
}

.submit-hero {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 26px;
}

.legal-content {
  max-width: 860px;
}

.legal-panel {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(18px, 3vw, 30px);
  background: var(--panel);
}

.legal-panel h2 {
  margin: 12px 0 0;
  font-size: 18px;
}

.legal-panel h2:first-child {
  margin-top: 0;
}

.legal-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 0 16px 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.submit-hero h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.submit-hero p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
}

.submit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
  gap: 16px;
  align-items: start;
}

.submit-form,
.preview-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.submit-form {
  display: grid;
  gap: 16px;
  padding: clamp(16px, 3vw, 28px);
}

.form-row {
  display: grid;
  gap: 12px;
}

.form-row.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.submit-form label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.submit-form label > span,
.field-label,
.check-row span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.submit-form input,
.submit-form select,
.submit-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: rgba(var(--bg-rgb), 0.54);
  color: var(--text);
  font: inherit;
  outline: 0;
}

.submit-form textarea {
  min-height: 124px;
  resize: vertical;
  line-height: 1.45;
}

.submit-form input:focus,
.submit-form select:focus,
.submit-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(53, 242, 162, 0.14);
}

.image-uploader {
  display: grid;
  gap: 12px;
}

.image-uploader p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.field-hint {
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.field-hint span + span {
  margin-left: 8px;
  font-weight: 800;
}

.field-hint.danger,
.field-hint .danger {
  color: var(--danger);
}

.drop-zone {
  display: grid;
  place-items: center;
  min-height: 118px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  background: rgba(var(--bg-rgb), 0.38);
  cursor: pointer;
  text-align: center;
}

.drop-zone.is-dragging {
  border-color: var(--accent);
  background: rgba(53, 242, 162, 0.10);
}

.drop-zone input {
  display: none;
}

.cropper {
  max-width: 280px;
}

.crop-hint {
  max-width: 280px;
}

.cropper[hidden] {
  display: none;
}

.cropper canvas {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
  cursor: grab;
  touch-action: none;
  user-select: none;
}

.cropper canvas.is-dragging {
  cursor: grabbing;
}

.submit-form textarea.input-danger {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(255, 68, 94, 0.13);
}

.submit-checks {
  display: grid;
  gap: 10px;
}

.bot-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.check-row {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
}

.human-row {
  grid-template-columns: minmax(140px, max-content) minmax(80px, 120px);
  align-items: center;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--accent);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.form-status a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status.danger {
  color: var(--danger);
}

.preview-panel {
  position: sticky;
  top: 88px;
  display: grid;
  gap: 14px;
  padding: clamp(16px, 3vw, 24px);
}

.submission-preview-card {
  display: grid;
  gap: 12px;
}

.preview-image {
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(53, 242, 162, 0.28), rgba(255, 92, 122, 0.22)),
    rgba(var(--bg-rgb), 0.76);
  background-position: center;
  background-size: cover;
  color: var(--text);
  font-size: 52px;
  font-weight: 900;
}

.preview-image.has-image span {
  display: none;
}

.submission-preview-card h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 0.96;
}

.submission-preview-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.narrow-shell {
  max-width: 760px;
}

.status-result {
  display: grid;
  gap: 12px;
}

.status-card,
.admin-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--panel);
}

.status-card h2,
.admin-card h2 {
  margin: 10px 0 6px;
}

.status-card p,
.admin-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.status-card dl {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
}

.status-card dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.status-card dd {
  margin: 2px 0 0;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 10px;
  background: var(--panel-strong);
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.status-pill.published {
  border-color: rgba(53, 242, 162, 0.64);
  color: var(--accent);
}

.status-pill.rejected {
  border-color: rgba(255, 92, 122, 0.64);
  color: var(--danger);
}

.status-pill.new {
  border-color: rgba(53, 242, 162, 0.64);
  color: var(--accent);
}

.status-pill.read {
  color: var(--muted);
}

.status-pill.archived {
  border-color: rgba(255, 209, 102, 0.46);
  color: var(--gold);
}

.admin-panel {
  display: grid;
  gap: 16px;
}

.admin-list {
  display: grid;
  gap: 12px;
}

.admin-card {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 16px;
}

.admin-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
}

.admin-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.admin-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0;
}

.admin-links a {
  color: var(--accent);
  font-weight: 800;
}

.review-note-field {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.review-note-field span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.review-note-field textarea {
  display: block;
  width: 100%;
  min-height: 168px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: rgba(var(--bg-rgb), 0.54);
  color: var(--text);
  font: inherit;
  line-height: 1.45;
  outline: 0;
  resize: vertical;
}

.review-note-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(53, 242, 162, 0.14);
}

.admin-actions {
  gap: 12px;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.admin-card .admin-actions {
  margin-top: 30px;
}

.admin-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.admin-section-head h2 {
  margin: 0;
  font-size: 24px;
}

.admin-messages-list {
  display: grid;
  gap: 12px;
}

.contact-message-card {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: rgba(var(--bg-rgb), 0.38);
}

.contact-message-meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.contact-message-meta strong,
.contact-message-meta a {
  display: block;
}

.contact-message-meta strong {
  margin-top: 8px;
}

.contact-message-meta a {
  margin-top: 4px;
  color: var(--accent);
  font-weight: 800;
}

.contact-message-meta time {
  flex: 0 0 auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.contact-message-card p {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
  white-space: pre-wrap;
}

.message-actions {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.dialog-open {
  overflow: hidden;
}

.confirm-dialog {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(12px);
}

.confirm-dialog[hidden] {
  display: none;
}

.confirm-card {
  width: min(100%, 430px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--bg);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
}

.confirm-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.08;
}

.confirm-card p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.confirm-actions {
  justify-content: flex-end;
  margin-top: 22px;
}

.leaderboard-hero {
  display: grid;
  gap: 22px;
  margin-bottom: 28px;
}

.leaderboard-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.period-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.period-tabs button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  cursor: pointer;
}

.period-tabs .active {
  background: var(--text);
  color: #050505;
  border-color: var(--text);
  font-weight: 900;
}

.leaderboard-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.4fr);
  gap: 16px;
  align-items: start;
}

.podium {
  display: grid;
  gap: 10px;
}

.podium-card {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
}

.podium-card.rank-1 {
  border-color: rgba(255, 209, 102, 0.52);
  background: rgba(255, 209, 102, 0.10);
}

.podium-card img,
.leaderboard-row img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
}

.podium-card span,
.podium-card p,
.leaderboard-row small {
  color: var(--muted);
}

.podium-card h2 {
  margin: 2px 0;
  font-size: 18px;
  line-height: 1.1;
}

.podium-card p {
  margin: 0;
  font-size: 13px;
}

.podium-card strong {
  color: var(--gold);
}

.table-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.table-head,
.leaderboard-row {
  display: grid;
  grid-template-columns: 54px minmax(190px, 1fr) 86px 86px 86px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
}

.table-head {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.leaderboard-row {
  border-top: 1px solid var(--line);
}

.leaderboard-row:hover {
  background: rgba(255, 255, 255, 0.08);
}

.rank-number {
  color: var(--accent);
  font-weight: 900;
}

.row-project {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.row-project strong,
.row-project small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 1020px) {
  .side-panel {
    display: none;
  }

  .leaderboard-grid,
  .submit-grid {
    grid-template-columns: 1fr;
  }

  .preview-panel {
    position: static;
  }

  .cropper,
  .admin-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .topbar {
    height: 58px;
    padding: 0 12px;
  }

  .topbar .nav-actions a[href="./leaderboard.html"],
  .topbar #shuffleButton {
    display: none;
  }

  .brand span:last-child {
    display: none;
  }

  .brand {
    flex: 0 0 auto;
  }

  .nav-actions {
    gap: 6px;
    min-width: 0;
  }

  .language-picker {
    min-height: 34px;
    gap: 4px;
    padding: 0 7px;
  }

  .language-picker select {
    width: 62px;
    font-size: 13px;
  }

  .nav-actions a,
  .icon-button,
  .ghost-button,
  .submit-button,
  .danger-button {
    min-height: 34px;
    padding: 0 10px;
    font-size: 13px;
  }

  .icon-button {
    width: 34px;
    padding: 0;
  }

  .project-card {
    align-content: start;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 68px 12px 28px;
  }

  .project-image-wrap,
  .project-copy {
    width: min(100%, 360px);
  }

  .project-image-wrap {
    max-height: 48svh;
  }

  .action-stack {
    position: static;
    display: flex;
    justify-content: flex-end;
    width: min(100%, 360px);
    margin: 12px auto 0;
  }

  .vote-button,
  .open-button {
    width: auto;
    min-width: 52px;
    min-height: 42px;
    padding: 0 12px;
  }

  .open-button {
    min-width: 64px;
  }

  .summary {
    padding-right: 0;
    font-size: 15px;
    line-height: 1.35;
  }

  .project-copy h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .tag-row {
    gap: 6px;
    margin-top: 10px;
  }

  .leaderboard-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 86px;
  }

  .submit-shell {
    width: min(100% - 20px, 1120px);
    padding-top: 86px;
  }

  .form-row.two {
    grid-template-columns: 1fr;
  }

  .table-panel {
    overflow-x: auto;
  }

  .table-head,
  .leaderboard-row {
    grid-template-columns: 46px minmax(210px, 1fr) 74px 74px 74px;
    min-width: 560px;
  }

  .admin-section-head,
  .contact-message-meta {
    display: grid;
    justify-items: start;
  }
}
