:root {
  color-scheme: dark;
  --bg: #0b0605;
  --bg-soft: #15100e;
  --panel: #1c1411;
  --panel-strong: #281713;
  --line: rgba(230, 204, 146, 0.2);
  --line-strong: rgba(247, 223, 154, 0.52);
  --text: #f7ead2;
  --muted: #c8a98a;
  --faint: #bda18b;
  --gold: #e9bd65;
  --gold-soft: #f7df9a;
  --red: #9f2722;
  --red-soft: #dc5044;
  --green: #67c58f;
  --danger: #e76c5d;
  --shadow: 0 24px 72px rgba(0, 0, 0, 0.42);
  --radius: 16px;
  --font: "Malgun Gothic", "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif;
  --serif: "Noto Serif KR", "KoPub Batang", "Batang", "Nanum Myeongjo", serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  background:
    radial-gradient(circle at 18% 2%, rgba(159, 39, 34, 0.17), transparent 34rem),
    radial-gradient(circle at 84% 35%, rgba(89, 46, 28, 0.12), transparent 28rem),
    linear-gradient(180deg, #080403 0%, var(--bg) 36rem, #0c0706 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(233, 189, 101, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233, 189, 101, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: rgba(233, 189, 101, 0.18);
}

:focus-visible {
  outline: 3px solid var(--gold-soft);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  color: #160906;
  background: var(--gold-soft);
  border-radius: var(--radius);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: clamp(320px, 28vw, 430px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #080403;
}

.site-hero__image,
.site-hero__shade {
  position: absolute;
  inset: 0;
}

.site-hero__image {
  overflow: hidden;
}

.site-hero__image img {
  position: absolute;
  top: -10%;
  left: 50%;
  width: 100%;
  min-width: 980px;
  height: auto;
  transform: translateX(-50%);
  filter: saturate(0.94) contrast(1.03) brightness(0.88);
}

.site-hero__shade {
  background:
    linear-gradient(90deg, rgba(8, 4, 3, 0.93) 0%, rgba(8, 4, 3, 0.6) 34%, rgba(8, 4, 3, 0.16) 62%, rgba(8, 4, 3, 0.42) 100%),
    linear-gradient(180deg, rgba(8, 4, 3, 0.3) 0%, transparent 32%, rgba(11, 6, 5, 0.94) 96%);
}

.site-hero__content,
.page-shell,
.event-strip__inner,
.round-nav__inner,
.site-footer {
  width: min(1160px, calc(100% - 48px));
  margin-inline: auto;
}

.site-hero__content {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3.2rem 0 1.9rem;
}

.kicker,
.section-eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy .kicker {
  width: fit-content;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.hero-copy {
  display: grid;
  gap: 0.7rem;
  max-width: 40rem;
  filter: drop-shadow(0 2px 14px rgba(0, 0, 0, 0.6));
}

.hero-copy h1 {
  margin: 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.4vw, 4.1rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.02em;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.72);
}

.site-hero__sub {
  margin: -0.1rem 0 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 1.0625rem;
}

.hero-actions,
.entry-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-actions {
  margin-top: 0.25rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.72rem 1.1rem;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 800;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.04);
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.button:hover {
  border-color: rgba(247, 223, 154, 0.58);
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.button:active,
.round-submissions-toggle:active,
.round-rules-toggle:active,
.round-nav__item:not(:disabled):active {
  transform: translateY(0) scale(0.985);
}

.button--primary {
  color: var(--gold-soft);
  border-color: rgba(247, 223, 154, 0.5);
  background: linear-gradient(135deg, rgba(117, 56, 34, 0.48), rgba(25, 14, 12, 0.88));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.08), 0 10px 28px rgba(0, 0, 0, 0.24);
}

.button--primary:hover {
  color: #fff3cf;
  border-color: rgba(247, 223, 154, 0.82);
  background: linear-gradient(135deg, rgba(145, 66, 39, 0.62), rgba(38, 19, 15, 0.94));
}

.hero-actions .button--primary {
  min-height: 2.625rem;
  padding: 0.32rem 0.78rem;
  border-radius: 9px;
  font-family: var(--font);
  font-size: 1.008rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  background:
    linear-gradient(180deg, rgba(247, 223, 154, 0.07), transparent 48%),
    linear-gradient(135deg, rgba(104, 48, 31, 0.44), rgba(22, 13, 12, 0.92));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.07), 0 8px 22px rgba(0, 0, 0, 0.22);
}

.hero-actions .button--primary:hover {
  background:
    linear-gradient(180deg, rgba(247, 223, 154, 0.1), transparent 50%),
    linear-gradient(135deg, rgba(125, 56, 35, 0.52), rgba(29, 15, 13, 0.95));
}

.button--ghost {
  backdrop-filter: blur(10px);
}

.button--small {
  min-height: 2.75rem;
  width: fit-content;
  padding: 0.48rem 0.75rem;
  font-size: 0.9rem;
}

.page-shell {
  display: grid;
  gap: 1.1rem;
  padding: 1.5rem 0 4.75rem;
}

.round-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(27, 19, 16, 0.9);
  backdrop-filter: blur(16px);
}

.event-strip {
  position: relative;
  border-top: 1px solid rgba(230, 204, 146, 0.16);
  background: rgba(8, 4, 3, 0.74);
  backdrop-filter: blur(8px);
}

.event-strip__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.15rem;
  min-height: 3.4rem;
  padding: 0.5rem 0;
}

.event-status {
  --status-color: var(--gold-soft);
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 0.55rem;
}

.event-status__dot {
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--faint);
}

.event-status--running .event-status__dot {
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(233, 189, 101, 0.45);
  animation: status-pulse 2.2s ease-out infinite;
}

@keyframes status-pulse {
  0% { box-shadow: 0 0 0 0 rgba(233, 189, 101, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(233, 189, 101, 0); }
  100% { box-shadow: 0 0 0 0 rgba(233, 189, 101, 0); }
}

.event-status__label {
  color: var(--faint);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.event-status__value {
  color: var(--status-color);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.event-status--running {
  --status-color: var(--gold-soft);
}

.event-status--complete {
  --status-color: var(--muted);
}

.event-status--ended {
  --status-color: #ff9a8d;
}

.event-strip #last-updated {
  flex: 0 0 auto;
  color: var(--faint);
  font-size: 0.8125rem;
  white-space: nowrap;
}

.event-strip__countdown {
  display: inline-flex;
  min-width: 0;
  margin-left: auto;
}

.mini-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2rem;
  padding: 0.3rem 0.62rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.24);
}

.round-card h2 {
  margin: 0.15rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  line-height: 1.2;
}

.match-card h3,
.final-set h3,
.theme-reveal h3 {
  margin: 0.18rem 0 0;
  font-family: var(--serif);
  font-size: clamp(1.18rem, 2.2vw, 1.5rem);
  line-height: 1.25;
}

.progress-summary__title {
  margin: 0;
  color: var(--gold-soft);
  font-weight: 900;
}

.muted,
.empty-state p,
.spotlight__detail {
  color: var(--muted);
}

.progress-meter {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.65rem;
}

.progress-meter__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.progress-meter__track {
  appearance: none;
  display: block;
  width: 100%;
  height: 0.7rem;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.3);
}

.progress-meter__track::-webkit-progress-bar {
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.3);
}

.progress-meter__track::-webkit-progress-value {
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red-soft), var(--gold));
}

.progress-meter__track::-moz-progress-bar {
  border-radius: inherit;
  background: linear-gradient(90deg, var(--red-soft), var(--gold));
}

.round-nav {
  position: sticky;
  top: 0;
  z-index: 8;
  border-bottom: 1px solid rgba(230, 204, 146, 0.16);
  background: rgba(11, 6, 5, 0.88);
  backdrop-filter: blur(10px);
}

.round-nav__inner {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}

.round-nav__inner::-webkit-scrollbar {
  display: none;
}

.round-nav__item {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  flex: 0 1 auto;
  gap: 0.55rem;
  min-width: 0;
  min-height: 3.3rem;
  padding: 0.85rem 1.05rem 0.75rem;
  color: var(--faint);
  text-align: left;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: color 160ms ease, border-color 160ms ease;
}

.round-nav__item strong {
  overflow: hidden;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.round-nav__state {
  color: var(--faint);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.round-nav__state.is-live {
  color: var(--gold);
}

.round-nav__state.is-live::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 0.3rem;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: 0.08em;
  content: '';
}

.round-nav__item.is-active {
  color: var(--text);
  border-color: var(--gold);
}

.round-nav__item:not(.is-active):not(:disabled):hover {
  color: var(--muted);
  border-color: rgba(230, 204, 146, 0.34);
}

.round-nav__item.is-current-round::after {
  content: none;
}

.round-nav__item:disabled {
  color: var(--faint);
  cursor: not-allowed;
  opacity: 0.55;
}

.round-nav__item:focus-visible,
.bingo-simulator__cell:focus-visible,
.bingo-simulator__reset:focus-visible {
  outline: 0;
  box-shadow: inset 0 0 0 3px var(--gold-soft);
}

.app-alert {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(231, 108, 93, 0.45);
  border-radius: var(--radius);
  color: #ffd7cf;
  background: rgba(92, 20, 16, 0.6);
}

.round-list {
  display: grid;
  gap: 1.15rem;
  scroll-margin-top: 7rem;
}

.round-card {
  overflow: hidden;
  border-radius: 18px;
  scroll-margin-top: 7rem;
}

.round-card {
  position: relative;
}

.round-card::before,
.round-card::after {
  position: absolute;
  z-index: 1;
  width: 1.65rem;
  height: 1.65rem;
  pointer-events: none;
  content: '';
}

.round-card::before {
  top: 0.7rem;
  left: 0.7rem;
  border-top: 1px solid rgba(230, 204, 146, 0.4);
  border-left: 1px solid rgba(230, 204, 146, 0.4);
  border-top-left-radius: 6px;
}

.round-card::after {
  top: 0.7rem;
  right: 0.7rem;
  border-top: 1px solid rgba(230, 204, 146, 0.4);
  border-right: 1px solid rgba(230, 204, 146, 0.4);
  border-top-right-radius: 6px;
}

.round-card__head {
  position: relative;
  padding: 2.1rem clamp(1rem, 3.5vw, 2.6rem) 0;
  text-align: center;
}

.round-card__head::before {
  position: absolute;
  top: -2.5rem;
  left: 50%;
  width: min(30rem, 80%);
  height: 9rem;
  pointer-events: none;
  content: '';
  background: radial-gradient(ellipse at 50% 0%, rgba(233, 189, 101, 0.09), transparent 68%);
  transform: translateX(-50%);
}

.round-card__eyebrow {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.round-card__eyebrow-divider {
  color: rgba(230, 204, 146, 0.34);
  letter-spacing: 0;
}

.round-card__state {
  color: var(--faint);
  letter-spacing: 0.18em;
}

.round-card__state--active {
  color: var(--gold-soft);
}

.round-card__state--complete {
  color: var(--red-soft);
}

.round-card__title {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 3.4vw, 2.55rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.025em;
  text-wrap: balance;
  word-break: keep-all;
}

.round-card__subtitle {
  margin: 0.7rem 0 0;
  color: #ddc8ae;
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.5;
  word-break: keep-all;
}

.round-ornament {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 26rem;
  margin: 1.35rem auto 0;
}

.round-ornament::before,
.round-ornament::after {
  flex: 1;
  height: 1px;
  content: '';
}

.round-ornament::before {
  background: linear-gradient(90deg, transparent, rgba(230, 204, 146, 0.34));
}

.round-ornament::after {
  background: linear-gradient(90deg, rgba(230, 204, 146, 0.34), transparent);
}

.round-ornament__gem {
  flex: none;
  width: 7px;
  height: 7px;
  background: var(--gold);
  transform: rotate(45deg);
}

.round-card__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1.15rem clamp(1rem, 3.5vw, 2.6rem) 0;
}

.round-card__schedule-text {
  margin: 0.6rem 0 0;
  color: var(--faint);
  font-family: var(--serif);
  font-size: 0.9375rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  text-align: center;
}

.round-card__tools {
  display: flex;
  flex: 0 1 auto;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.round-schedule {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.6rem 1.2rem;
  margin: 1.15rem clamp(1rem, 3.5vw, 2.6rem) 0;
  padding: 0.85rem 1.15rem;
  border: 1px solid rgba(230, 204, 146, 0.16);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.18);
}

.round-schedule__item {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.75rem;
}

.round-schedule__label {
  color: var(--faint);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.round-schedule__value {
  color: #ddc8ae;
  font-family: var(--serif);
  font-size: 0.9375rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.round-schedule__item--count {
  margin-left: auto;
}

.round-submissions-toggle {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.52rem 1rem;
  border: 1px solid rgba(230, 204, 146, 0.24);
  border-radius: 8px;
  color: #ead9bd;
  font: inherit;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  background: rgba(8, 5, 4, 0.42);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
  transition: border-color 160ms ease, color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.round-submissions-toggle:hover {
  border-color: rgba(247, 223, 154, 0.52);
  color: #fff2cf;
  background: rgba(31, 20, 15, 0.7);
  transform: translateY(-1px);
}

.round-submissions-toggle:focus-visible {
  outline: 2px solid rgba(247, 223, 154, 0.95);
  outline-offset: 3px;
}

.round-submissions-toggle[aria-expanded='true'] {
  border-color: rgba(247, 223, 154, 0.48);
  color: var(--gold-soft);
  background: rgba(43, 28, 19, 0.72);
}

.round-countdown {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.52rem 0.78rem;
  border: 1px solid rgba(230, 204, 146, 0.2);
  border-radius: 8px;
  color: #d8c3a7;
  background: rgba(5, 3, 3, 0.34);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
  font-family: var(--serif);
  font-size: 1.26rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.round-countdown__segment {
  display: inline-flex;
  align-items: baseline;
}

.round-countdown__value {
  display: inline-block;
  min-width: 2ch;
  text-align: center;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
}

.round-countdown__divider,
.round-countdown__separator {
  white-space: pre;
}

.round-countdown.is-ended {
  color: var(--faint);
  border-color: rgba(189, 161, 139, 0.2);
  background: rgba(255, 255, 255, 0.025);
}

.round-countdown.is-finished {
  color: #f0b8ae;
  border-color: rgba(220, 80, 68, 0.38);
  background:
    radial-gradient(circle at 18% 0%, rgba(220, 80, 68, 0.16), transparent 52%),
    linear-gradient(135deg, rgba(159, 39, 34, 0.13), rgba(55, 16, 14, 0.08)),
    rgba(5, 3, 3, 0.48);
  box-shadow:
    inset 0 1px rgba(255, 218, 210, 0.055),
    0 0 18px rgba(159, 39, 34, 0.1);
  text-shadow: 0 0 12px rgba(220, 80, 68, 0.16);
}

.round-rules-toggle {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 0.58rem;
  min-height: 2.75rem;
  padding: 0.55rem 0.88rem 0.55rem 1rem;
  border: 1px solid rgba(247, 223, 154, 0.56);
  border-radius: 999px;
  color: var(--gold-soft);
  font: inherit;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  white-space: nowrap;
  cursor: pointer;
  background:
    linear-gradient(135deg, rgba(233, 189, 101, 0.12), rgba(83, 36, 25, 0.1)),
    rgba(5, 3, 3, 0.52);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.055), 0 8px 22px rgba(0, 0, 0, 0.2);
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease, transform 160ms ease;
}

.round-rules-toggle:hover {
  border-color: rgba(247, 223, 154, 0.78);
  color: #fff2c6;
  background:
    linear-gradient(135deg, rgba(233, 189, 101, 0.2), rgba(108, 43, 30, 0.16)),
    rgba(5, 3, 3, 0.64);
  transform: translateY(-1px);
}

.round-rules-toggle:focus-visible {
  outline: 2px solid rgba(247, 223, 154, 0.95);
  outline-offset: 3px;
}

.round-submissions-toggle__icon,
.round-rules-toggle__icon {
  position: relative;
  width: 1.4rem;
  height: 1.4rem;
  border: 1px solid rgba(247, 223, 154, 0.27);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.24);
}

.round-submissions-toggle__icon::before,
.round-submissions-toggle__icon::after,
.round-rules-toggle__icon::before,
.round-rules-toggle__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.48rem;
  height: 1px;
  background: currentColor;
  content: '';
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.round-submissions-toggle__icon::after,
.round-rules-toggle__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.round-rules-toggle[aria-expanded='true'] {
  border-color: rgba(247, 223, 154, 0.62);
  color: #fff2c6;
  background:
    linear-gradient(135deg, rgba(233, 189, 101, 0.18), rgba(108, 43, 30, 0.14)),
    rgba(5, 3, 3, 0.58);
}

.round-submissions-toggle[aria-expanded='true'] .round-submissions-toggle__icon::after,
.round-rules-toggle[aria-expanded='true'] .round-rules-toggle__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.round1-submissions {
  position: relative;
  padding: clamp(0.75rem, 1.8vw, 1.15rem) clamp(0.8rem, 2vw, 1.35rem) clamp(1rem, 2.2vw, 1.4rem);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 5, 4, 0.4);
}

.round1-submissions__inner {
  display: grid;
  gap: 0.9rem;
}

.round1-submissions__stats {
  display: grid;
  width: min(720px, 100%);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(233, 189, 101, 0.4);
  border-radius: 8px;
  background: rgba(16, 11, 9, 0.72);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035), 0 10px 28px rgba(0, 0, 0, 0.16);
}

.round1-submissions__stat {
  min-width: 0;
  padding: 0.65rem 0.75rem 0.62rem;
  text-align: center;
}

.round1-submissions__stat + .round1-submissions__stat {
  border-left: 1px solid rgba(230, 204, 146, 0.22);
}

.round1-submissions__stat:last-child {
  background: #c3a25f;
  box-shadow: inset 1px 0 rgba(255, 237, 187, 0.28), inset 0 1px rgba(255, 244, 209, 0.22);
}

.round1-submissions__stat:last-child dt,
.round1-submissions__stat:last-child dd,
.round1-submissions__stat:last-child span {
  color: #1b1109;
}

.round1-submissions__stat dt {
  color: var(--muted);
  font-family: var(--font);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.25;
}

.round1-submissions__stat dd {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35rem;
  margin: 0.16rem 0 0;
  color: var(--gold-soft);
  font-family: var(--font);
  line-height: 1;
}

.round1-submissions__stat strong {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.round1-submissions__stat span {
  color: #d7c09d;
  font-size: 0.78rem;
}

.round1-submissions__notice,
.round1-submissions__state {
  margin: 0;
  color: var(--faint);
  text-align: center;
  font-size: 0.84rem;
  line-height: 1.55;
}

.round1-submissions__notice {
  padding: 0.42rem 0.7rem;
  border: 1px solid rgba(230, 204, 146, 0.13);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
}

.round1-submissions__state {
  padding: 1.1rem 0.85rem;
  border: 1px solid rgba(230, 204, 146, 0.16);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.16);
}

.round1-submissions__state--loading {
  color: #d7c09d;
}

.round1-submissions__list {
  overflow: hidden;
  border: 1px solid rgba(233, 189, 101, 0.34);
  border-radius: 8px;
  background: rgba(8, 5, 4, 0.48);
}

.round1-submissions__toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.round1-submissions__sort {
  display: inline-flex;
  width: fit-content;
  min-width: 0;
  align-items: center;
  gap: 0.5rem;
  color: var(--faint);
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.round1-submissions__sort-label {
  white-space: nowrap;
}

.round1-submissions__sort-select {
  min-width: 6.4rem;
  height: 2.25rem;
  padding: 0 2rem 0 0.72rem;
  border: 1px solid rgba(233, 189, 101, 0.35);
  border-radius: 6px;
  color: #ead7b0;
  background-color: rgba(11, 7, 5, 0.9);
  font: inherit;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.round1-submissions__sort-select:hover,
.round1-submissions__sort-select:focus-visible {
  border-color: rgba(247, 223, 154, 0.68);
  outline: none;
  box-shadow: 0 0 0 2px rgba(233, 189, 101, 0.1);
}

.round1-submissions__pager {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 0.48rem;
  min-width: 15.5rem;
  color: #d9c6a7;
  font-family: var(--font);
}

.round1-submissions__pager--bottom {
  width: min(24rem, 100%);
  margin: 0 auto;
  padding-top: 0.1rem;
}

.round1-submissions__page-button {
  display: inline-flex;
  min-width: 4.25rem;
  min-height: 2.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.34rem;
  padding: 0.3rem 0.66rem;
  border: 1px solid rgba(233, 189, 101, 0.34);
  border-radius: 6px;
  color: #ead7b0;
  background: rgba(14, 9, 6, 0.82);
  font-family: var(--font);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: border-color 150ms ease, color 150ms ease, background-color 150ms ease, transform 150ms ease;
}

.round1-submissions__page-button--previous {
  justify-self: end;
}

.round1-submissions__page-button--next {
  justify-self: start;
}

.round1-submissions__page-button:hover:not(:disabled),
.round1-submissions__page-button:focus-visible {
  border-color: rgba(247, 223, 154, 0.72);
  color: #fff0c6;
  background: rgba(91, 54, 24, 0.28);
  outline: none;
}

.round1-submissions__page-button:active:not(:disabled) {
  transform: translateY(1px);
}

.round1-submissions__page-button:disabled {
  border-color: rgba(230, 204, 146, 0.12);
  color: rgba(217, 198, 167, 0.32);
  background: rgba(8, 5, 4, 0.32);
  cursor: default;
}

.round1-submissions__page-arrow {
  margin-top: -0.08em;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 0.7;
}

.round1-submissions__page-status {
  min-width: 6.6rem;
  color: var(--faint);
  font-size: 0.73rem;
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-align: center;
  white-space: nowrap;
}

.round1-submissions__carousel {
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  touch-action: pan-y pinch-zoom;
  overscroll-behavior-x: contain;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.round1-submissions__carousel::-webkit-scrollbar {
  display: none;
}

.round1-submissions__carousel:focus-visible {
  outline: 1px solid rgba(247, 223, 154, 0.68);
  outline-offset: 4px;
}

.round1-submissions__carousel.is-settling {
  scroll-snap-type: none;
}

.round1-submissions__carousel.is-dragging {
  scroll-snap-type: none;
  cursor: grabbing;
  user-select: none;
}

.round1-submissions__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  align-items: stretch;
}

.round1-submissions__page {
  width: 100%;
  min-width: 0;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.round1-submissions__page[aria-hidden='true'] {
  pointer-events: none;
}

.round1-submissions__page .round1-submissions__list {
  box-sizing: border-box;
  height: 100%;
}

.round1-submission {
  display: grid;
  grid-template-columns: 3.9rem minmax(0, 1fr) auto;
  align-items: stretch;
  min-width: 0;
  min-height: 3.2rem;
  padding: 0.5rem 0.72rem;
  color: #eadbc4;
}

.round1-submission + .round1-submission {
  border-top: 1px solid rgba(230, 204, 146, 0.14);
}

.round1-submission--accepted {
  background: rgba(101, 71, 26, 0.18);
  box-shadow: inset 3px 0 rgba(233, 189, 101, 0.42);
}

.round1-submission--disqualified {
  background: rgba(92, 20, 27, 0.2);
  box-shadow: inset 3px 0 rgba(181, 52, 60, 0.72);
}

.round1-submission--disqualified .round1-submission__works {
  color: #cdbcb3;
  border-left-color: rgba(181, 52, 60, 0.28);
}

.round1-submission--disqualified .round1-submission__work-link {
  font-style: italic;
}

.round1-submission__identity {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  padding: 0.15rem 0.3rem 0.15rem 0;
}

.round1-submission__identity .round1-submission__nickname {
  max-width: none;
  min-height: 1.3rem;
  padding: 0.04rem 0.28rem;
  font-size: 0.68rem;
}

.round1-submission__mask {
  position: relative;
  display: grid;
  width: 2.4rem;
  height: 2.4rem;
  padding: 0;
  border: 0;
  place-items: center;
  background: transparent;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.round1-submission__mask-image {
  grid-area: 1 / 1;
  width: 2rem;
  height: 2rem;
  opacity: 0.85;
  transition: opacity 160ms ease, filter 160ms ease;
}

.round1-submission__mask:hover .round1-submission__mask-image,
.round1-submission__mask[aria-expanded='true'] .round1-submission__mask-image {
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(233, 189, 101, 0.4));
}

.round1-submission__mask--disqualified .round1-submission__mask-image {
  opacity: 0.92;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.75));
}

.round1-submission__mask--disqualified:hover .round1-submission__mask-image,
.round1-submission__mask--disqualified[aria-expanded='true'] .round1-submission__mask-image {
  filter: drop-shadow(0 0 7px rgba(181, 52, 60, 0.5));
}

.round1-submission__disqualified-x {
  grid-area: 1 / 1;
  width: 1.75rem;
  height: 1.75rem;
  opacity: 0.88;
  filter: drop-shadow(0 1px 2px rgba(18, 2, 4, 0.9));
  pointer-events: none;
}

.id-tip {
  position: fixed;
  z-index: 60;
  display: grid;
  gap: 0.4rem;
  max-width: min(17rem, calc(100vw - 24px));
  padding: 0.42rem 0.66rem 0.5rem;
  border: 1px solid rgba(233, 189, 101, 0.6);
  border-radius: 5px;
  color: var(--gold-soft);
  background: #140d08;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
  font-family: var(--serif);
  font-size: 0.82rem;
  font-weight: 700;
}

.id-tip__code {
  font-size: 0.86rem;
  white-space: nowrap;
}

.id-tip__works {
  display: grid;
  gap: 0.32rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(233, 189, 101, 0.22);
}

.id-tip__round {
  display: grid;
  grid-template-columns: 1.7rem minmax(0, 1fr);
  align-items: start;
  column-gap: 0.4rem;
}

.id-tip__round-label {
  padding-top: 0.05rem;
  color: var(--faint);
  font-family: var(--font);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.id-tip__round-works {
  display: grid;
  min-width: 0;
  gap: 0.14rem;
}

.id-tip__work {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  justify-self: start;
  overflow: hidden;
  color: #e6d3ab;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.4;
  text-decoration: none;
  text-overflow: ellipsis;
  white-space: nowrap;
}

a.id-tip__work:hover {
  color: var(--gold-soft);
  text-decoration: underline;
}

[data-mask-nickname] {
  cursor: pointer;
}

.results-link {
  display: inline-flex;
  flex: none;
  align-items: center;
  min-height: 2.1rem;
  padding: 0.12rem 0.62rem;
  border: 1px solid rgba(233, 189, 101, 0.75);
  color: #f4e3b6;
  background: #1c1208;
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(20, 10, 2, 0.3);
  transition: color 160ms ease, background-color 160ms ease, filter 160ms ease;
}

a.results-link:hover {
  color: #241304;
  background: linear-gradient(160deg, #f7df9a, #ddb264);
}

span.results-link.is-empty {
  opacity: 0.45;
}

.round1-top3__heading {
  display: grid;
  min-width: 0;
  gap: 0.15rem;
}

.round1-top3__heading h3 {
  position: relative;
  padding-bottom: 0.6rem;
}

.round1-top3__heading h3::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: min(27rem, 50vw);
  height: 1px;
  background: linear-gradient(90deg, var(--gold), rgba(230, 204, 146, 0.12) 62%, transparent);
  content: '';
  opacity: 0.8;
}

.round1-top3__heading > span {
  color: var(--faint);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.round1-submission__nickname {
  display: inline-flex;
  width: max-content;
  max-width: none;
  min-height: 1.48rem;
  flex: none;
  align-items: center;
  padding: 0.08rem 0.3rem;
  border: 1px solid rgba(233, 189, 101, 0.58);
  border-radius: 2px;
  color: var(--gold-soft);
  background: rgba(9, 6, 5, 0.62);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035), 0 4px 12px rgba(0, 0, 0, 0.18);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
  overflow: visible;
  text-overflow: clip;
  white-space: nowrap;
}

.round1-submission__works {
  display: grid;
  min-width: 0;
  align-content: center;
  gap: 0.12rem;
  padding: 0.06rem 0.8rem 0.06rem 1rem;
  border-left: 1px solid rgba(230, 204, 146, 0.24);
}

.round1-submission__work {
  display: grid;
  grid-template-columns: 0.72rem minmax(0, 1fr);
  align-items: baseline;
  column-gap: 0.24rem;
  min-width: 0;
  line-height: 1.48;
}

.round1-submission__work::before {
  color: rgba(233, 189, 101, 0.7);
  content: "✲";
  font-family: var(--font);
  font-size: 0.63rem;
  font-style: normal;
  line-height: 1;
}

.round1-submission__work-link {
  display: inline-block;
  justify-self: start;
  width: fit-content;
  max-width: 100%;
  color: inherit;
  font-family: var(--serif);
  font-size: 0.91rem;
  text-decoration: none;
  overflow-wrap: anywhere;
}

a.round1-submission__work-link:hover {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.round1-submission__work--old {
  color: #aa9881;
  font-style: italic;
}

.round1-submission__status {
  align-self: center;
  min-width: 3.15rem;
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(233, 189, 101, 0.72);
  border-radius: 2px;
  color: var(--gold-soft);
  background: rgba(22, 14, 9, 0.72);
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.round1-submission__status--disqualified {
  border-color: rgba(215, 77, 85, 0.78);
  color: #ffd9d7;
  background: rgba(110, 25, 33, 0.82);
  box-shadow: inset 0 1px rgba(255, 218, 215, 0.08);
}

.round-rules {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(233, 189, 101, 0.16);
  background: rgba(10, 6, 5, 0.96);
}

.round-rules[hidden] {
  display: none;
}

.round-rules::before {
  position: absolute;
  top: 0;
  right: clamp(1rem, 3vw, 2.25rem);
  left: clamp(1rem, 3vw, 2.25rem);
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(247, 223, 154, 0.34), transparent);
  content: '';
}

.round-rules__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(13rem, 0.72fr) minmax(22rem, 1.28fr);
  column-gap: clamp(1.5rem, 4vw, 3.8rem);
  row-gap: clamp(1.1rem, 2.2vw, 1.65rem);
  padding: clamp(1.35rem, 3vw, 2.4rem);
}

.round-rules__heading {
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 0.2rem 0 0.2rem 1rem;
  border-left: 2px solid rgba(233, 189, 101, 0.76);
}

.round-rules__heading h3 {
  margin: 0;
  color: #fff0cf;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.round-rules__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 0;
  margin: 0;
  border-block: 1px solid rgba(233, 189, 101, 0.18);
}

.round-rules__fact {
  position: relative;
  min-width: 0;
  padding: 0.68rem 1.05rem;
}

.round-rules__fact + .round-rules__fact {
  border-left: 1px solid rgba(233, 189, 101, 0.14);
}

.round-rules__fact dt {
  margin-bottom: 0.18rem;
  color: var(--faint);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.055em;
}

.round-rules__fact dd {
  margin: 0;
  color: var(--gold-soft);
  font-size: 0.96rem;
  font-weight: 850;
  line-height: 1.45;
}

.round-rules__intro {
  position: relative;
  display: grid;
  grid-column: 1 / -1;
  gap: 0.3rem;
  max-width: 80rem;
  padding: 0.92rem 0 0.98rem 1rem;
  border-left: 1px solid rgba(233, 189, 101, 0.58);
}

.round-rules__intro p {
  margin: 0;
  color: #d7c8b1;
  font-size: 0.96rem;
  line-height: 1.7;
}

.round-rules__intro p:first-child {
  color: #fff0cf;
  font-weight: 800;
}

.round-rules__sections {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
  column-gap: clamp(1.2rem, 3vw, 2.6rem);
  row-gap: 0.2rem;
}

.round-rule {
  min-width: 0;
  border-top: 1px solid rgba(233, 189, 101, 0.2);
}

.round-rule__header {
  display: grid;
  grid-template-columns: 2.15rem minmax(0, 1fr);
  align-items: baseline;
  gap: 0.42rem;
  min-height: 0;
  padding: 1rem 0.15rem 0.62rem;
}

.round-rule__number {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  height: auto;
  color: rgba(233, 189, 101, 0.7);
  font-family: var(--serif);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.round-rule__header h4 {
  margin: 0;
  color: #f5dfb2;
  font-family: var(--serif);
  font-size: 1.06rem;
  line-height: 1.4;
  letter-spacing: -0.015em;
}

.round-rule__body {
  display: grid;
  gap: 0.88rem;
  padding: 0.06rem 0.15rem 1.3rem 2.72rem;
}

.round-rule__paragraphs {
  display: grid;
  gap: 0.54rem;
}

.round-rule__paragraphs p {
  margin: 0;
  color: #cfc0aa;
  font-size: 0.94rem;
  line-height: 1.74;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.round-rule__list,
.round-rule__points {
  display: grid;
  gap: 0.48rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.round-rule__list li,
.round-rule__points li {
  position: relative;
  padding-left: 0.82rem;
  color: #d7c8b2;
  font-size: 0.92rem;
  line-height: 1.66;
}

.round-rule__list li::before,
.round-rule__points li::before {
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 0.34rem;
  height: 1px;
  background: rgba(233, 189, 101, 0.8);
  content: '';
}

.round-rule__group {
  display: grid;
  gap: 0.66rem;
  padding: 0.78rem 0 0.82rem 1rem;
  border-left: 1px solid rgba(233, 189, 101, 0.22);
  background: rgba(233, 189, 101, 0.018);
}

.round-rule__group h5 {
  margin: 0;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.round-rule__points {
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 0.34rem 0.8rem;
}

.round-rule__points li {
  padding: 0.22rem 0.3rem 0.22rem 0.8rem;
  color: #f0ddba;
  font-weight: 750;
}

.round-rule__points li::before {
  top: 0.98em;
  left: 0;
}

.round-rule__score-list {
  display: grid;
  gap: 0;
  margin: 0;
  border-block: 1px solid rgba(233, 189, 101, 0.13);
}

.round-rule__score-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem;
  padding: 0.62rem 0.15rem;
  border-bottom: 1px solid rgba(233, 189, 101, 0.1);
}

.round-rule__score-list > div:last-child {
  border-bottom: 0;
}

.round-rule__score-list dt {
  color: #d5c5ae;
  font-size: 0.92rem;
  line-height: 1.5;
}

.round-rule__score-list dd {
  min-width: 2.7rem;
  margin: 0;
  padding: 0.22rem 0.46rem;
  border: 1px solid rgba(233, 189, 101, 0.34);
  border-radius: 3px;
  color: var(--gold-soft);
  font-size: 0.84rem;
  font-weight: 950;
  text-align: center;
  background: rgba(233, 189, 101, 0.07);
}

.round-content {
  display: grid;
  gap: 1.3rem;
  padding: 1.45rem;
}

.round-content--two-col {
  grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 1.08fr);
  align-items: start;
}

.round2-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(300px, 1.08fr);
  align-items: start;
  gap: 1.3rem;
}

.round2-content {
  gap: 1rem;
}

.round2-bingo-board {
  width: 100%;
  padding: clamp(0.75rem, 1.7vw, 1.15rem);
  border: 1px solid rgba(233, 189, 101, 0.28);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% -30%, rgba(233, 189, 101, 0.12), transparent 48%),
    rgba(8, 5, 4, 0.48);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035), 0 20px 48px rgba(0, 0, 0, 0.18);
}

.round2-bingo-board .bingo-simulator,
.round2-bingo-board > .empty-state {
  width: min(900px, 100%);
  margin-inline: auto;
}

.round2-player-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.68rem;
}

.round2-player-card {
  position: relative;
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 0.62rem;
  overflow: hidden;
  padding: 0.76rem;
  border: 1px solid rgba(230, 204, 146, 0.2);
  border-radius: 10px;
  color: #eadbc4;
  background: rgba(12, 8, 7, 0.78);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.025), 0 10px 28px rgba(0, 0, 0, 0.14);
}

.round2-player-card--winner {
  border-color: rgba(233, 189, 101, 0.62);
  background: rgba(62, 42, 19, 0.32);
  box-shadow: inset 3px 0 rgba(233, 189, 101, 0.56), 0 12px 30px rgba(0, 0, 0, 0.18);
}

.round2-player-card__identity {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: 0.42rem;
}

.round2-player-card__nickname {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  color: var(--text);
  font-family: var(--serif);
  font-size: 0.96rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.round2-player-card__nickname .player-name {
  align-items: center;
}

.round2-player-card__nickname .player-name__icon {
  width: 2em;
  height: 2em;
}

.round2-player-card__bonus {
  flex: 0 0 auto;
  padding: 0.08rem 0.3rem;
  border: 1px solid rgba(233, 189, 101, 0.55);
  border-radius: 2px;
  color: #1b1109;
  background: #c3a25f;
  font-family: var(--serif);
  font-size: 0.68rem;
  font-weight: 900;
  line-height: 1.2;
}

.round2-bonus-badge {
  position: relative;
  appearance: none;
  margin: 0;
  cursor: help;
}

.round2-bonus-badge::after {
  position: absolute;
  z-index: 20;
  top: calc(100% + 0.42rem);
  right: 0;
  width: max-content;
  max-width: 10rem;
  padding: 0.34rem 0.5rem;
  border: 1px solid rgba(233, 189, 101, 0.42);
  border-radius: 4px;
  color: #ead7af;
  background: rgba(18, 10, 8, 0.98);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
  content: '1R TOP 3 보상';
  font-family: var(--serif);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-3px);
  transition: opacity 140ms ease, transform 140ms ease;
  white-space: nowrap;
}

.round2-bonus-badge:hover::after,
.round2-bonus-badge:focus-visible::after,
.round2-bonus-badge.is-open::after {
  opacity: 1;
  transform: translateY(0);
}

.round2-player-card__submission {
  min-height: 2.7em;
  max-height: 2.7em;
  margin: 0;
  overflow: hidden;
  color: var(--faint);
  font-family: var(--serif);
  font-size: 0.78rem;
  line-height: 1.35;
}

.round2-player-card__submission:focus-within {
  max-height: none;
  overflow: visible;
}

.round2-player-card__submission-link {
  display: inline;
  color: inherit;
  overflow-wrap: anywhere;
  text-decoration: none;
}

a.round2-player-card__submission-link:hover {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.round2-player-card__submission-link.is-empty {
  color: rgba(189, 161, 139, 0.7);
  font-style: italic;
}

.round2-player-card__bingo {
  display: grid;
  grid-template-columns: minmax(4.25rem, 5rem) minmax(0, 1fr);
  align-items: end;
  gap: 0.56rem;
  margin-top: auto;
}

.round2-player-card__map {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(230, 204, 146, 0.26);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.3);
  aspect-ratio: 1;
}

.round2-player-card__cell {
  position: relative;
  display: grid;
  border: 1px solid rgba(230, 204, 146, 0.2);
  border-radius: 1px;
  background: rgba(255, 255, 255, 0.025);
  aspect-ratio: 1;
  place-items: center;
}

.round2-player-card__cell.is-checked {
  border-color: rgba(247, 223, 154, 0.76);
  background: #c3a25f;
}

.round2-player-card__cell.is-checked::after {
  width: 36%;
  border-radius: 1px;
  background: #2b190e;
  content: '';
  transform: rotate(45deg);
  aspect-ratio: 1;
}

.round2-player-card__bingo-summary {
  display: grid;
  min-width: 0;
  align-content: end;
  justify-items: end;
  gap: 0.16rem;
  padding-bottom: 0.08rem;
  font-family: var(--serif);
  text-align: right;
}

.round2-player-card__bingo-summary > strong {
  color: #d7c09d;
  font-size: 0.72rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.round2-player-card__bingo-score {
  color: #e3c992;
  font-size: 1rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.round2-player-card__final {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  padding-top: 0.55rem;
  border-top: 1px solid rgba(230, 204, 146, 0.18);
}

.round2-player-card__final-label {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  color: var(--faint);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.round2-player-card__rank {
  padding: 0.05rem 0.4rem;
  border: 1px solid rgba(233, 189, 101, 0.4);
  border-radius: 3px;
  color: var(--gold-soft);
  font-family: var(--serif);
  letter-spacing: 0;
}

.round2-player-card__final-score {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.round2-player-card__final.is-pending .round2-player-card__final-score {
  color: var(--faint);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.round1-top3 {
  position: relative;
  overflow: hidden;
  padding: 1.15rem;
  border: 1px solid rgba(233, 189, 101, 0.32);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% -40%, rgba(233, 189, 101, 0.18), transparent 55%),
    linear-gradient(135deg, rgba(34, 20, 16, 0.98), rgba(13, 8, 7, 0.98));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.045), 0 18px 48px rgba(0, 0, 0, 0.2);
}

.round1-top3__header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 0.18rem 1rem;
  margin-bottom: 0.9rem;
}

.round1-top3__header h3 {
  margin: 0;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.3vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.round1-top3__header > span {
  color: var(--faint);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.round1-top3__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.round1-top3__place {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: rgba(0, 0, 0, 0.2);
}

.round1-top3__place--1 {
  border-color: rgba(247, 223, 154, 0.38);
  background: linear-gradient(135deg, rgba(233, 189, 101, 0.13), rgba(0, 0, 0, 0.2));
}

.round1-top3__number {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border: 1px solid rgba(233, 189, 101, 0.26);
  border-radius: 50%;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 0.84rem;
  background: rgba(0, 0, 0, 0.24);
}

.round1-top3__place p {
  margin: 0 0 0.08rem;
  color: var(--faint);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.round1-top3__place strong {
  display: block;
  overflow: hidden;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.round-ranking--top3 {
  padding: 1rem 1.25rem 0.9rem;
  border-color: rgba(230, 204, 146, 0.2);
  background: #080504;
  box-shadow: inset 0 0 54px rgba(0, 0, 0, 0.55), 0 14px 34px rgba(0, 0, 0, 0.24);
}

.round-ranking--top3 .round1-top3__header {
  margin-bottom: 0.45rem;
}

.round-ranking--top3 .round1-top3__header h3 {
  text-shadow: 0 0 26px rgba(233, 189, 101, 0.5);
}

.round-ranking--top3 .round1-top3__header > span {
  color: #cdb794;
}

.round-ranking--top3 .round1-top3__grid {
  align-items: end;
  gap: 0;
}

.top3-place {
  position: relative;
  display: grid;
  gap: 0.35rem;
  min-width: 0;
  padding: 0.8rem 0.8rem 0.65rem;
  border: 0;
  background: transparent;
  justify-items: center;
  text-align: center;
  isolation: isolate;
}

.top3-place::before {
  position: absolute;
  inset: -0.7rem -0.2rem 0;
  z-index: -1;
  background:
    radial-gradient(46% 42% at 50% 40%, rgba(233, 189, 101, var(--top3-glow, 0.07)), transparent 98%),
    radial-gradient(32% 28% at 50% 32%, rgba(255, 240, 200, calc(var(--top3-glow, 0.07) * 0.55)), transparent 96%);
  content: '';
  pointer-events: none;
}

.top3-place--1 {
  --top3-glow: 0.17;
  grid-column: 2;
  grid-row: 1;
  padding-bottom: 1rem;
}

.top3-place--2 {
  --top3-glow: 0.09;
  grid-column: 1;
  grid-row: 1;
}

.top3-place--3 {
  --top3-glow: 0.055;
  grid-column: 3;
  grid-row: 1;
}

.top3-place__mask {
  display: grid;
  place-items: center;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 12px rgba(233, 189, 101, 0.3));
}

.top3-place__mask img {
  width: 4.8rem;
  height: 4.8rem;
}

.top3-place--1 .top3-place__mask img {
  width: 7.2rem;
  height: 7.2rem;
}

.top3-medal {
  position: relative;
  display: inline-flex;
  flex: none;
  align-items: baseline;
  justify-content: center;
  gap: 0.1rem;
  min-width: 3.6rem;
  padding: 0.36rem 0.85rem 0.26rem;
  clip-path: polygon(11% 0, 89% 0, 100% 32%, 100% 68%, 89% 100%, 11% 100%, 0 68%, 0 32%);
  background: linear-gradient(165deg, rgba(247, 223, 154, 0.55), rgba(150, 105, 45, 0.55) 60%, rgba(80, 52, 18, 0.6));
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  filter: drop-shadow(0 3px 10px rgba(30, 16, 3, 0.4));
  isolation: isolate;
}

.top3-medal::before {
  position: absolute;
  inset: 2px;
  z-index: -1;
  clip-path: polygon(11% 0, 89% 0, 100% 32%, 100% 68%, 89% 100%, 11% 100%, 0 68%, 0 32%);
  background: linear-gradient(180deg, #241708, #180f05);
  content: '';
}

.top3-medal b {
  font-size: 1.4em;
  font-weight: 900;
  line-height: 1;
}

.top3-medal span {
  font-size: 0.66em;
  font-weight: 700;
  letter-spacing: 0.05em;
  transform: translateY(-0.55em);
}

.top3-place--1 .top3-medal {
  min-width: 4rem;
  color: #241304;
  background: linear-gradient(165deg, #fdf1c5, #e9bd65 50%, #a97c33);
  font-size: 1.05rem;
  filter:
    drop-shadow(0 0 14px rgba(233, 189, 101, 0.5))
    drop-shadow(0 3px 10px rgba(30, 16, 3, 0.45));
  text-shadow: 0 1px 0 rgba(255, 244, 214, 0.65);
}

.top3-place--1 .top3-medal::before {
  background:
    radial-gradient(90% 120% at 50% -18%, rgba(255, 250, 226, 0.95), transparent 58%),
    linear-gradient(165deg, #f6dd9c, #ddad55 55%, #b98a3c);
}

.top3-place--2 .top3-medal {
  color: #f4e2b2;
}

.top3-place--2 .top3-medal::before {
  background:
    radial-gradient(90% 120% at 50% -18%, rgba(247, 223, 154, 0.2), transparent 60%),
    linear-gradient(180deg, #2b1d0d, #1b1106);
}

.top3-place--3 .top3-medal {
  color: #cbb083;
  background: linear-gradient(165deg, rgba(230, 204, 146, 0.34), rgba(96, 66, 26, 0.4) 60%, rgba(52, 34, 12, 0.5));
}

.top3-place--3 .top3-medal::before {
  background: linear-gradient(180deg, #221708, #150d04);
}

.top3-place__name {
  display: block;
  max-width: 100%;
  overflow: hidden;
  color: #ffefc9;
  font-family: var(--serif);
  font-size: 1.05rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top3-place--1 .top3-place__name {
  color: #fff6dc;
  font-size: 1.3rem;
}

.top3-place__works {
  display: inline-flex;
  justify-content: center;
  gap: 0;
  border: 1px solid rgba(233, 189, 101, 0.9);
  box-shadow: 0 4px 16px rgba(20, 10, 2, 0.35);
}

.top3-work-btn {
  display: inline-flex;
  align-items: center;
  min-height: 1.7rem;
  padding: 0.06rem 0.55rem;
  color: #f2dfae;
  background: #1c1208;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 160ms ease, background-color 160ms ease, filter 160ms ease;
}

.top3-place__works .top3-work-btn:first-child {
  color: #241304;
  background: linear-gradient(160deg, #f7df9a, #ddb264);
}

a.top3-work-btn:hover {
  filter: brightness(1.12);
}

span.top3-work-btn {
  opacity: 0.5;
}

.round-ranking--single .round1-top3__grid {
  grid-template-columns: 1fr;
}

.round-ranking--winner {
  padding: 1rem 1.25rem 1.15rem;
  border-color: rgba(230, 204, 146, 0.24);
}

.round-ranking--winner .round1-top3__header {
  margin-bottom: 0.15rem;
}

.round-ranking--winner .round1-top3__heading h3 {
  padding-bottom: 0;
}

.round-ranking--winner .round1-top3__heading h3::after {
  display: none;
}

.round-ranking--winner .results-link {
  min-height: auto;
  padding: 0.2rem 0;
  border: 0;
  color: #cbb384;
  background: transparent;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-decoration-color: rgba(203, 179, 132, 0.34);
  text-underline-offset: 0.24em;
  box-shadow: none;
}

.round-ranking--winner a.results-link:hover {
  color: #f2dda9;
  background: transparent;
  text-decoration-color: currentColor;
}

.round-ranking--winner .round1-top3__grid {
  grid-template-columns: minmax(0, 1fr);
  min-height: 23.5rem;
  align-items: center;
}

.round-ranking--winner .round2-winner {
  grid-column: 1;
  grid-row: 1;
  width: min(100%, 54rem);
  margin-inline: auto;
  gap: 0.55rem;
  padding: 0.7rem 2rem 1.15rem;
}

.round-ranking--winner .round2-winner::before {
  inset: -1rem -5rem -0.5rem;
  background:
    radial-gradient(42% 50% at 50% 42%, rgba(233, 189, 101, 0.2), transparent 98%),
    radial-gradient(28% 34% at 50% 38%, rgba(255, 240, 200, 0.09), transparent 96%);
}

.round-ranking--winner .round2-winner .top3-place__mask img {
  width: 6.8rem;
  height: 6.8rem;
}

.round-ranking--winner .round2-winner .top3-place__name {
  font-size: clamp(1.3rem, 2.4vw, 1.55rem);
  text-shadow: 0 0 18px rgba(233, 189, 101, 0.22);
}

.round2-winner__work {
  display: grid;
  width: min(100%, 40rem);
  justify-items: center;
  gap: 0.24rem;
  margin-top: 0.1rem;
  padding: 0.42rem 0.75rem 0.5rem;
}

.round2-winner__work > span {
  color: #ac9674;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.round2-winner__work-link {
  display: inline;
  max-width: 100%;
  color: #f1dfb6;
  font-family: var(--serif);
  font-size: clamp(0.94rem, 1.8vw, 1.08rem);
  font-weight: 700;
  line-height: 1.4;
  overflow-wrap: anywhere;
  text-align: center;
  text-decoration: none;
  text-underline-offset: 0.18em;
}

a.round2-winner__work-link:hover {
  color: #fff2cf;
  text-decoration: underline;
}

span.round2-winner__work-link {
  color: var(--faint);
  font-style: italic;
}

.round2-winner__details {
  display: grid;
  width: min(100%, 46rem);
  grid-template-columns: minmax(12rem, 0.85fr) minmax(23rem, 1.6fr);
  align-items: center;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  margin-top: 0.32rem;
  padding: 0.35rem 0.45rem 0.2rem;
}

.round2-winner__bingo {
  display: grid;
  grid-template-columns: 5.8rem minmax(0, 1fr);
  align-items: center;
  gap: 0.7rem;
  padding: 0.25rem 0;
}

.round2-winner__map {
  width: 5.8rem;
  flex: none;
}

.round2-winner__map.round2-player-card__map {
  gap: 2px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.round2-winner__bingo-copy {
  display: grid;
  min-width: 0;
  gap: 0.22rem;
  justify-items: start;
  font-family: var(--serif);
  text-align: left;
}

.round2-winner__bingo-copy strong {
  color: var(--gold-soft);
  font-size: 0.82rem;
  white-space: nowrap;
}

.round2-winner__bingo-copy span {
  color: var(--faint);
  font-size: 0.72rem;
}

.round2-winner__scores {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
}

.round2-winner__score {
  display: grid;
  min-width: 0;
  align-content: center;
  gap: 0.28rem;
  padding: 0.78rem 0.55rem;
}

.round2-winner__score dt {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  color: #a98f6d;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.round2-winner__score dd {
  display: inline-flex;
  min-width: 0;
  align-items: baseline;
  justify-content: center;
  gap: 0.15rem;
  margin: 0;
  color: #d9c49a;
  font-family: var(--serif);
}

.round2-winner__score dd strong {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.round2-player-card__bingo-scoreline {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  white-space: nowrap;
}

.round2-player-card__bingo-score-caption {
  color: rgba(215, 192, 157, 0.52);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.round2-winner__score dd span {
  font-size: 0.68rem;
  font-weight: 700;
}

.round2-winner__score.is-total {
  position: relative;
}

.round2-winner__score.is-total dd {
  color: #fff0c6;
  text-shadow: 0 0 20px rgba(233, 189, 101, 0.28);
}

.round2-winner__bonus {
  padding: 0;
  border: 0;
  color: #d9b965;
  background: transparent;
  font-family: var(--serif);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
  text-shadow: 0 0 10px rgba(217, 185, 101, 0.2);
}

.round2-winner__score.is-pending dd strong {
  color: var(--faint);
  font-size: 0.78rem;
  font-style: italic;
  font-weight: 700;
}

.round-ranking--final .round1-top3__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.round-ranking--final .round1-top3__place--1 {
  grid-column: 1 / -1;
  min-height: 5.1rem;
  padding-block: 1rem;
}

.round-ranking--final .round1-top3__place--1 strong {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: clamp(1.12rem, 2.2vw, 1.4rem);
}

.judge-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.judge-column {
  --judge-accent: var(--gold);
  --judge-number-border: rgba(230, 204, 146, 0.3);
  --judge-number-surface: rgba(230, 204, 146, 0.065);
  --judge-number-shadow: rgba(230, 204, 146, 0.07);
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(230, 204, 146, 0.22);
  border-radius: 16px;
  background: #080504;
  box-shadow: inset 0 0 64px rgba(0, 0, 0, 0.55), inset 0 1px rgba(255, 255, 255, 0.02), 0 16px 40px rgba(0, 0, 0, 0.22);
}

.judge-column--genius {
  --judge-accent: #aa7062;
  --judge-number-border: rgba(174, 99, 84, 0.34);
  --judge-number-surface: rgba(108, 37, 32, 0.09);
  --judge-number-shadow: rgba(108, 37, 32, 0.09);
  border-color: rgba(174, 99, 84, 0.2);
  background:
    radial-gradient(circle at 0 0, rgba(108, 37, 32, 0.05), transparent 48%),
    #080504;
}

.judge-column--kassian {
  --judge-accent: #70889d;
  --judge-number-border: rgba(101, 130, 157, 0.32);
  --judge-number-surface: rgba(44, 70, 98, 0.1);
  --judge-number-shadow: rgba(44, 70, 98, 0.1);
  border-color: rgba(101, 130, 157, 0.18);
  background:
    radial-gradient(circle at 100% 0, rgba(44, 70, 98, 0.055), transparent 48%),
    #070404;
}

.judge-column::before {
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, var(--judge-accent), transparent 78%);
}

.judge-column__header {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.4rem 1.05rem;
}

.judge-column__header::after {
  position: absolute;
  right: 1.4rem;
  bottom: 0;
  left: 1.4rem;
  height: 1px;
  background: linear-gradient(90deg, var(--judge-accent), rgba(230, 204, 146, 0.08) 62%, transparent);
  content: '';
  opacity: 0.55;
}

.judge-column__identity {
  display: grid;
  min-width: 0;
  gap: 0.3rem;
}

.judge-column__role {
  color: var(--faint);
  font-size: 0.625rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.24em;
}

.judge-column__header h3 {
  overflow: hidden;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.2vw, 1.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.judge-column__quota {
  display: inline-flex;
  align-items: baseline;
  gap: 0.3rem;
  color: var(--faint);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
}

.judge-column__quota strong {
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.judge-column__quota span {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.judge-column__roster {
  display: grid;
  gap: 0.7rem;
  padding: 0.9rem;
}

.judge-column__empty {
  display: grid;
  min-height: 13rem;
  place-content: center;
  gap: 0.25rem;
  padding: 2rem 1.25rem;
  border: 1px solid rgba(230, 204, 146, 0.12);
  border-radius: 8px;
  text-align: center;
  background: rgba(255, 255, 255, 0.015);
}

.judge-column__empty p {
  margin: 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
}

.judge-column__empty span {
  color: var(--faint);
  font-size: 0.9rem;
}

.judge-pick {
  position: relative;
  min-width: 0;
  padding: 0.95rem;
  border: 1px solid rgba(230, 204, 146, 0.12);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.018);
  transition: border-color 160ms ease, background-color 160ms ease;
}

.judge-pick:hover {
  border-color: rgba(230, 204, 146, 0.24);
  background: rgba(247, 223, 154, 0.035);
}

.judge-pick--slot,
.judge-pick--slot:hover {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 1.1rem;
  min-height: 8.9rem;
  padding: 0.85rem 1rem;
  border: 0;
  border-radius: 16px;
  background: transparent;
}

.judge-pick--slot {
  position: relative;
  isolation: isolate;
}

.judge-pick--slot::before {
  position: absolute;
  inset: -2.8rem -1.6rem;
  z-index: -1;
  background:
    radial-gradient(115% 42% at 22% 50%, var(--slot-tint, rgba(233, 189, 101, 0.08)), transparent 99%),
    radial-gradient(135% 47% at 48% 50%, rgba(233, 189, 101, 0.028), transparent 99%);
  content: '';
  opacity: 0;
  pointer-events: none;
  transition: opacity 750ms ease;
}

.judge-column--genius .judge-pick--slot {
  --slot-tint: rgba(196, 112, 92, 0.1);
}

.judge-column--kassian .judge-pick--slot {
  --slot-tint: rgba(112, 140, 165, 0.1);
}

.judge-pick--slot.is-lit::before {
  opacity: 1;
}

.judge-pick__mask {
  position: relative;
  display: grid;
  flex: none;
  width: 6.8rem;
  height: 6.8rem;
  place-items: center;
  user-select: none;
  -webkit-touch-callout: none;
}

.judge-pick__mask img,
.judge-pick__mask-img {
  width: 6rem;
  height: 6rem;
  transition: filter 600ms ease, opacity 600ms ease, transform 600ms ease;
}

.judge-pick__mask-img {
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-user-drag: none;
}

.judge-pick__mask::after {
  position: absolute;
  bottom: -0.3rem;
  left: 50%;
  width: 5.2rem;
  height: 0.9rem;
  border-radius: 50%;
  background: radial-gradient(50% 50% at 50% 50%, rgba(233, 189, 101, 0.34), transparent 72%);
  content: '';
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 750ms ease;
}

.judge-pick--slot.is-lit .judge-pick__mask::after {
  opacity: 1;
}

.judge-pick--slot.is-veiled .judge-pick__mask img,
.judge-pick--slot.is-veiled .judge-pick__mask-img {
  opacity: 0.19;
  filter: brightness(0.26) saturate(0.28) contrast(1) blur(0.9px);
}

.judge-pick--slot.is-lit .judge-pick__mask img {
  filter:
    drop-shadow(0 0 10px rgba(233, 189, 101, 0.42))
    drop-shadow(0 6px 14px rgba(0, 0, 0, 0.5));
}

.judge-pick__body {
  display: grid;
  min-width: 0;
  gap: 0.4rem;
}

.judge-pick__title-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.6rem;
  min-height: 3rem;
}

.judge-pick__name {
  margin: 0;
  overflow: hidden;
  color: #f6e6c6;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.judge-pick__scores {
  --judge-score-size: 0.84rem;
  --final-score-size: 1.5rem;
  --final-pending-size: 1.15rem;
  --judge-badge-score-gap: 0.38rem;
  --judge-final-gap: 0.78rem;
  display: grid;
  grid-template-columns: max-content max-content;
  grid-template-rows: repeat(2, minmax(1.12rem, auto));
  column-gap: var(--judge-final-gap);
  justify-content: end;
  min-width: 0;
  padding: 0.12rem 0 0.12rem 0.38rem;
  font-variant-numeric: tabular-nums;
}

.judge-pick__judge-row {
  --score-accent: #d47c70;
  --score-light: #f5d8d2;
  --badge-ink: #ffaaa0;
  display: grid;
  grid-column: 1;
  grid-template-columns: 3.6rem max-content;
  align-items: center;
  gap: var(--judge-badge-score-gap);
  min-width: 0;
  transition: filter 180ms ease, opacity 180ms ease;
}

.judge-pick__judge-row--kassian {
  --score-accent: #7ea9cc;
  --score-light: #d9eafa;
  --badge-ink: #9fd5ff;
}

.judge-pick__judge-row.is-primary {
  opacity: 1;
}

.judge-pick__judge-row.is-secondary {
  opacity: 0.46;
  filter: saturate(0.68);
}

.judge-pick__judge-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  min-height: 0.96rem;
  padding: 0.1rem 0.18rem 0.09rem;
  overflow: hidden;
  border: 1px solid rgba(225, 191, 119, 0.48);
  border-radius: 3px;
  color: var(--badge-ink);
  font-family: var(--serif);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
  background: #030202;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015);
}

.judge-pick__judge-row.is-primary .judge-pick__judge-badge {
  border-color: rgba(235, 204, 137, 0.82);
  box-shadow: 0 0 0 1px rgba(235, 204, 137, 0.07), inset 0 0 8px rgba(235, 204, 137, 0.055);
}

.judge-pick__judge-value {
  overflow: hidden;
  color: var(--score-light);
  font-family: var(--serif);
  font-size: var(--judge-score-size);
  font-weight: 800;
  line-height: 1;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.judge-pick__judge-value.is-pending {
  color: var(--faint);
  font-size: 0.66rem;
  font-style: italic;
  font-weight: 700;
}

.judge-pick__final-score {
  display: inline-flex;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-items: center;
  justify-content: flex-end;
  min-width: 3.15rem;
  padding-left: 0.34rem;
  color: var(--gold-soft);
  font-family: var(--serif);
  line-height: 1;
  white-space: nowrap;
}

.judge-pick__final-score strong {
  font-size: var(--final-score-size);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.judge-pick__final-score small {
  margin-left: 0.13rem;
  font-size: 0.68rem;
  font-weight: 800;
}

.judge-pick__final-score.is-pending {
  align-items: center;
  color: var(--faint);
}

.judge-pick__final-score.is-pending strong {
  font-size: var(--final-pending-size);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.judge-pick--slot .judge-pick__works {
  gap: 0.06rem;
  margin-top: 0;
  padding-top: 0.2rem;
  border-top: 0;
}

.judge-pick--slot .judge-pick__work {
  position: relative;
  padding: 0.18rem 0.1rem 0.18rem 0.72rem;
  border-top: 0;
}

.judge-pick--slot .judge-pick__work + .judge-pick__work {
  border-top: 0;
}

.judge-pick--slot .judge-pick__work::before {
  position: absolute;
  top: 50%;
  left: 0.12rem;
  color: rgba(230, 204, 146, 0.58);
  content: '✲';
  font-size: 0.46rem;
  line-height: 1;
  transform: translateY(-50%);
}

.judge-pick--slot .judge-pick__work .text-link,
.judge-pick--slot .judge-pick__work .muted-link {
  display: block;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  overflow-wrap: normal;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@keyframes pool-bloom {
  0% {
    opacity: 0;
    transform: scale(0.72);
  }
  45% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes flash-burst {
  0% { opacity: 0; }
  16% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes mask-ignite {
  0% { transform: scale(0.86); }
  45% { transform: scale(1.14); }
  100% { transform: scale(1); }
}

.judge-pick--slot.is-igniting::before {
  animation: pool-bloom 950ms cubic-bezier(0.22, 1, 0.36, 1) 1;
}

.judge-pick--slot.is-igniting::after {
  position: absolute;
  inset: -1.4rem -0.6rem;
  z-index: -1;
  background: radial-gradient(95% 120% at 24% 50%, rgba(247, 223, 154, 0.34), transparent 68%);
  content: '';
  opacity: 0;
  animation: flash-burst 1.05s ease-out 1;
}

.judge-pick--slot.is-igniting .judge-pick__mask img {
  animation: mask-ignite 780ms cubic-bezier(0.34, 1.56, 0.64, 1) 1;
}

.judge-pick__head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
}

.judge-pick__head--score-hidden {
  grid-template-columns: auto minmax(0, 1fr);
}

.judge-pick__identity {
  min-width: 0;
}

.judge-pick__identity h4 {
  overflow: hidden;
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: -0.015em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.judge-pick__identity h4,
.round1-top3__place strong,
.score-row__body h3,
.match-player h4,
.final-player h4 {
  font-family: var(--serif);
}

.judge-pick__rank {
  display: block;
  margin-top: 0.16rem;
  color: var(--faint);
  font-size: 0.8rem;
}

.judge-pick .metric {
  min-width: 4.5rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid rgba(230, 204, 146, 0.13);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.16);
}

.judge-pick .metric span {
  font-size: 0.76rem;
}

.judge-pick .metric strong {
  font-size: 1.08rem;
}

.judge-pick__works {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 0.9rem;
  padding-top: 0.15rem;
  border-top: 1px solid rgba(230, 204, 146, 0.1);
}

.judge-pick__work {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  justify-items: start;
  width: 100%;
  min-width: 0;
  padding: 0.55rem 0.25rem 0.4rem;
}

.judge-pick__work + .judge-pick__work {
  border-top: 1px solid rgba(230, 204, 146, 0.07);
}

.judge-pick__work .text-link,
.judge-pick__work .muted-link {
  width: fit-content;
  max-width: 100%;
  justify-self: start;
  min-width: 0;
  text-align: left;
  overflow-wrap: anywhere;
  min-height: 2.75rem;
  align-content: center;
  padding-block: 0.35rem;
  font-size: 0.94rem;
  line-height: 1.5;
}

.judge-pick__work .text-link {
  font-weight: 700;
  text-decoration: none;
}

.judge-pick__work .text-link:hover {
  color: var(--gold-soft);
  text-decoration: underline;
  text-decoration-color: rgba(247, 223, 154, 0.4);
}

.empty-state,
.spotlight,
.match-card,
.final-set {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.15);
}

.theme-reveal {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 1rem;
  border: 1px dashed rgba(230, 204, 146, 0.3);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.12);
}

.leaderboard,
.score-list {
  display: grid;
  gap: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.match-players,
.final-players {
  display: grid;
  gap: 0.72rem;
}

.ranking-row,
.score-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  padding: 0.95rem 0.2rem;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.ranking-row:last-child,
.score-row:last-child {
  border-bottom: 0;
}

.ranking-row h3,
.score-row h3,
.match-player h4,
.final-player h4,
.spotlight h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.24;
  letter-spacing: 0;
}

.rank-badge {
  display: grid;
  place-items: center;
  min-width: 2.4rem;
  min-height: 2.4rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.025);
  font-family: Georgia, serif;
  font-size: 0.9rem;
}

.leaderboard .ranking-row:nth-child(-n + 3) .rank-badge,
.score-list .score-row:nth-child(-n + 3) .rank-badge {
  color: #201009;
  border-color: rgba(247, 223, 154, 0.72);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
}

.text-link {
  color: var(--gold-soft);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

.player-name {
  display: inline-flex;
  align-items: center;
  gap: 0.42em;
  min-width: 0;
  max-width: 100%;
  vertical-align: bottom;
}

.player-name__icon {
  flex: none;
  width: 1.3em;
  height: 1.3em;
  filter: drop-shadow(0 1px 4px rgba(0, 0, 0, 0.4));
}

.score-plain {
  flex: none;
  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}

.score-plain.is-reviewing {
  color: var(--faint);
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.player-name__text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.winner-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55em;
  height: 1.55em;
  margin-left: 0.4em;
  border: 1px solid rgba(233, 189, 101, 0.5);
  border-radius: 4px;
  color: var(--gold);
  background: rgba(233, 189, 101, 0.08);
  font-family: var(--serif);
  font-size: 0.72em;
  font-weight: 700;
  vertical-align: 0.12em;
}

.muted-link {
  color: var(--faint);
}

.judge-pick__work .text-link,
.judge-pick__work .muted-link,
.score-row__body .text-link,
.score-row__body .muted-link,
.match-player .text-link,
.match-player .muted-link,
.final-player .text-link,
.final-player .muted-link,
.spotlight .button {
  font-weight: 400;
}

.metric {
  display: grid;
  min-width: 5.4rem;
  justify-items: end;
  padding: 0.15rem 0;
  text-align: right;
}

.metric span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.metric strong {
  color: var(--gold-soft);
  font-size: 1.24rem;
}

.metric--reviewing strong {
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.metric--score {
  border: 0;
  background: transparent;
}

.bingo-visual,
.participant-panel {
  display: grid;
  gap: 0.9rem;
}

.bingo-visual {
  min-width: 0;
}

.bingo-simulator {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(233, 189, 101, 0.3);
  border-radius: 14px;
  background: #090605;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.26);
}

.bingo-simulator__canvas {
  position: relative;
  display: block;
  overflow: hidden;
  background: #080504;
  aspect-ratio: 932 / 887;
  isolation: isolate;
}

.bingo-simulator__canvas > img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 932 / 887;
  object-fit: fill;
  pointer-events: none;
  user-select: none;
}

.bingo-simulator__cell {
  position: absolute;
  z-index: 1;
  margin: 0;
  padding: 0;
  border: 0;
  appearance: none;
  background: transparent;
  color: #211207;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.bingo-simulator__cell::before {
  position: absolute;
  inset: clamp(2px, 0.4vw, 5px);
  border: 1px solid transparent;
  border-radius: 4px;
  background: transparent;
  content: '';
  transition: background 180ms ease, border-color 180ms ease, box-shadow 220ms ease;
}

.bingo-simulator__cell::after {
  position: absolute;
  right: clamp(7px, 1.1vw, 12px);
  bottom: clamp(7px, 1.1vw, 12px);
  width: clamp(7px, 0.9vw, 9px);
  background: linear-gradient(135deg, #f7df9a, #c89b4e);
  box-shadow: 0 0 8px rgba(233, 189, 101, 0.55);
  content: '';
  opacity: 0;
  transform: rotate(45deg) scale(0.4);
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.34, 1.4, 0.64, 1);
  aspect-ratio: 1;
}

.bingo-simulator__cell:hover::before {
  border-color: rgba(255, 228, 166, 0.42);
  background: rgba(240, 202, 113, 0.05);
}

.bingo-simulator__cell:active::before {
  background: rgba(240, 202, 113, 0.1);
}

.bingo-simulator__cell.is-active::before {
  border-color: rgba(233, 189, 101, 0.58);
  background:
    radial-gradient(circle at 50% 100%, rgba(233, 189, 101, 0.13), transparent 72%),
    rgba(233, 189, 101, 0.05);
  box-shadow:
    inset 0 0 0 1px rgba(255, 231, 171, 0.12),
    inset 0 -14px 26px rgba(230, 185, 84, 0.1);
}

.bingo-simulator__cell.is-active::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.bingo-simulator__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.5rem;
  padding: 0.74rem 0.95rem 0.78rem 1.05rem;
  border-top: 1px solid rgba(233, 189, 101, 0.28);
  background: rgba(13, 8, 7, 0.98);
}

.bingo-simulator__result {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 0.82rem;
  font-family: var(--serif);
  font-variant-numeric: tabular-nums;
}

.bingo-simulator__count {
  color: #ead7b8;
  font-size: clamp(0.92rem, 1.8vw, 1.12rem);
  font-weight: 800;
  letter-spacing: 0.035em;
  line-height: 1;
  white-space: nowrap;
}

.bingo-simulator__score {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  padding-left: 0.82rem;
  border-left: 1px solid rgba(233, 189, 101, 0.28);
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1;
}

.bingo-simulator__score-number {
  color: var(--gold-soft);
  font-size: clamp(1.7rem, 3.2vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.bingo-simulator__reset {
  flex: 0 0 auto;
  min-height: 2.2rem;
  padding: 0.45rem 0.78rem;
  border: 1px solid rgba(229, 196, 136, 0.34);
  border-radius: 5px;
  color: #d8c5a7;
  background: rgba(255, 255, 255, 0.025);
  font-family: var(--serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.bingo-simulator__reset:not(:disabled):hover {
  border-color: rgba(247, 221, 157, 0.68);
  color: var(--gold-soft);
  background: rgba(233, 189, 101, 0.08);
}

.bingo-simulator__reset:disabled {
  cursor: default;
  opacity: 0.42;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(4.5rem, auto));
  gap: 0.45rem;
}

.spotlight,
.empty-state,
.theme-reveal {
  padding: 1.05rem 1.15rem;
}

.spotlight {
  display: grid;
  gap: 0.55rem;
  border-color: rgba(233, 189, 101, 0.46);
  background: linear-gradient(135deg, rgba(159, 39, 34, 0.32), rgba(233, 189, 101, 0.08));
}

.match-card,
.final-set {
  overflow: hidden;
  padding: 0;
}

.match-card__head,
.final-set__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem 1rem;
  padding: 0.85rem 1.15rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}

.match-card__head > div,
.final-set__head > div {
  display: flex;
  min-width: 0;
  align-items: baseline;
  gap: 0.75rem;
}

.match-card__mission--hidden {
  color: var(--faint);
  font-style: italic;
  font-weight: 600;
}

.match-players {
  position: relative;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
}

.match-players::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 1.9rem;
  height: 1.9rem;
  border: 1px solid rgba(230, 204, 146, 0.22);
  border-radius: 50%;
  color: var(--faint);
  background: #140D09;
  content: '對';
  font-family: var(--serif);
  font-size: 0.8rem;
  place-items: center;
  transform: translate(-50%, -50%);
}

.match-player {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
  padding: 1rem 1.15rem;
}

.match-player + .match-player {
  border-left: 1px solid var(--line);
}

.match-player__who,
.final-player__who {
  display: grid;
  min-width: 0;
  gap: 0.2rem;
}

.match-player__who > .text-link,
.final-player__who > .text-link {
  width: fit-content;
  max-width: 100%;
  justify-self: start;
}

.match-player.is-winner {
  background: linear-gradient(90deg, rgba(233, 189, 101, 0.08), transparent 70%);
  box-shadow: inset 2px 0 0 var(--gold);
}

.match-player.is-winner .metric strong {
  color: var(--gold-soft);
}

.final-players {
  grid-template-columns: 1fr;
  gap: 0;
}

.final-player {
  display: grid;
  grid-template-columns: 4.6rem minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.15rem;
}

.final-player + .final-player {
  border-top: 1px solid var(--line);
}

.final-player .mini-pill {
  justify-self: start;
}

.final-player.is-eliminated h4,
.final-player.is-eliminated .metric strong {
  color: var(--faint);
}

.deadline {
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.mini-pill--live {
  color: var(--gold-soft);
}

.mini-pill--muted {
  color: var(--faint);
}

.mini-pill--winner,
.mini-pill--survive {
  color: var(--gold-soft);
  border-color: rgba(233, 189, 101, 0.4);
  background: rgba(233, 189, 101, 0.07);
}

.mini-pill--danger {
  color: var(--danger);
  border-color: rgba(220, 80, 68, 0.4);
}

.site-footer {
  margin-bottom: 0;
  padding: 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.8rem;
}

.site-footer p {
  margin: 0;
}

.skeleton {
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  background-size: 240% 100%;
  animation: shimmer 1.4s infinite linear;
}

.skeleton--line {
  height: 1.1rem;
  width: 100%;
}

.skeleton--short {
  width: 62%;
}

.skeleton--bar {
  height: 0.8rem;
  width: 100%;
}

.skeleton--image {
  height: 8rem;
}

.round-card--skeleton {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

@keyframes shimmer {
  to {
    background-position: -240% 0;
  }
}

@media (max-width: 860px) {
  .round-rules__inner {
    grid-template-columns: 1fr;
  }

  .round-rules__sections {
    grid-template-columns: 1fr;
  }

  .judge-board {
    grid-template-columns: 1fr;
  }

  .judge-column__empty {
    min-height: 9rem;
  }

  .site-hero {
    min-height: min(340px, 56svh);
  }

  .round-content--two-col {
    grid-template-columns: 1fr;
  }

  .round2-layout {
    grid-template-columns: 1fr;
  }

  .round2-player-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .round-card__header,
  .match-card__head,
  .final-set__head {
    align-items: flex-start;
    flex-direction: column;
  }

  .ranking-row,
  .score-row {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .ranking-row .metric,
  .score-grid {
    grid-column: 1 / -1;
  }

  .score-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .site-hero__content,
  .page-shell,
  .event-strip__inner,
  .round-nav__inner,
  .site-footer {
    width: min(100% - 20px, 1160px);
  }

  .site-hero {
    min-height: min(250px, 46svh);
  }

  .site-hero__image img {
    top: -4%;
    min-width: 880px;
  }

  .site-hero__content {
    padding-block: 2rem 1.1rem;
  }

  .hero-copy {
    gap: 0.45rem;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 9.5vw, 2.5rem);
  }

  .hero-copy .kicker {
    font-size: 0.66rem;
    letter-spacing: 0.18em;
  }

  .site-hero__sub {
    font-size: 0.92rem;
  }

  .hero-actions {
    gap: 0.35rem;
    margin-top: 0.4rem;
  }

  .hero-actions .button {
    flex: 0 0 auto;
    min-width: 0;
    min-height: 2.5rem;
    width: fit-content;
    padding: 0.36rem 0.7rem;
    font-size: 0.84rem;
    white-space: nowrap;
  }

  .page-shell {
    gap: 0.75rem;
    padding: 0.75rem 0 2.75rem;
  }

  .event-strip__inner {
    gap: 0.3rem 0.8rem;
    padding: 0.55rem 0;
  }

  .event-status__label {
    font-size: 0.7rem;
  }

  .event-status__value {
    font-size: 0.84rem;
  }

  .event-strip #last-updated {
    font-size: 0.75rem;
  }

  .event-strip__countdown {
    justify-content: center;
    width: 100%;
    margin-left: 0;
  }

  .round-nav__item {
    gap: 0.4rem;
    min-height: 2.85rem;
    padding: 0.6rem 0.7rem 0.55rem;
  }

  .round-nav__item strong {
    font-size: 0.84rem;
  }

  .round-nav__state {
    font-size: 0.625rem;
  }

  .round-card__head {
    padding-top: 1.5rem;
  }

  .round-card__title {
    font-size: clamp(1.4rem, 6.4vw, 1.8rem);
  }

  .round-card__subtitle {
    font-size: 0.875rem;
    line-height: 1.45;
  }

  .round-card__meta {
    padding-top: 0.9rem;
  }

  .round-card__tools {
    width: 100%;
  }

  .round-schedule {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    margin-top: 0.9rem;
    padding: 0.75rem 0.85rem;
  }

  .round-schedule__item {
    justify-content: space-between;
  }

  .round-schedule__item--count {
    margin-left: 0;
  }

  .round-schedule__item--count .round-countdown {
    width: 100%;
    justify-content: center;
  }

  .round-countdown {
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
    min-height: 2.35rem;
    padding: 0.38rem 0.52rem;
    font-size: clamp(0.78rem, 3.2vw, 0.88rem);
    letter-spacing: -0.035em;
  }

  .round-submissions-toggle {
    flex: 1 1 auto;
    min-height: 2.3rem;
    max-width: 100%;
    padding: 0.4rem 0.68rem;
    font-size: 0.8rem;
  }

  .round1-submissions {
    padding: 0.65rem 0.62rem 0.8rem;
  }

  .round1-submissions__inner {
    gap: 0.62rem;
  }

  .round1-submissions__toolbar {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.5rem;
  }

  .round1-submissions__pager {
    width: 100%;
    min-width: 0;
    gap: 0.35rem;
  }

  .round1-submissions__pager--bottom {
    padding-top: 0;
  }

  .round1-submissions__sort {
    justify-self: end;
    gap: 0.4rem;
    font-size: 0.7rem;
  }

  .round1-submissions__sort-select {
    min-width: 5.75rem;
    height: 2.1rem;
    padding-left: 0.58rem;
    font-size: 0.72rem;
  }

  .round1-submissions__page-button {
    min-width: 2.35rem;
    min-height: 2.1rem;
    padding: 0.28rem 0.5rem;
  }

  .round1-submissions__page-word {
    display: none;
  }

  .round1-submissions__page-status {
    min-width: 6rem;
    font-size: 0.7rem;
  }

  .round1-submissions__stat {
    padding: 0.52rem 0.25rem 0.5rem;
  }

  .round1-submissions__stat dt {
    font-size: 0.67rem;
  }

  .round1-submissions__stat strong {
    font-size: clamp(1.32rem, 8vw, 1.7rem);
  }

  .round1-submissions__stat span {
    font-size: 0.68rem;
  }

  .round1-submission {
    grid-template-columns: max-content minmax(0, 1fr) auto;
    gap: 0.42rem 0.5rem;
    padding: 0.55rem 0.5rem;
  }

  .round1-submission__identity {
    padding-right: 0;
  }

  .round1-submission__mask-image {
    width: 1.8rem;
    height: 1.8rem;
  }

  .round1-submission__disqualified-x {
    width: 1.58rem;
    height: 1.58rem;
  }

  .round1-submission__nickname {
    order: -1;
  }

  .round1-submission__status {
    min-width: 2.9rem;
    padding-inline: 0.42rem;
  }

  .round1-submission__works {
    padding: 0.06rem 0 0.06rem 0.6rem;
    border-left: 1px solid rgba(230, 204, 146, 0.16);
    border-left: 0;
  }

  .round1-submission__work-link {
    font-size: 0.87rem;
  }

  .round-rules-toggle {
    gap: 0.42rem;
    min-height: 2.3rem;
    padding: 0.4rem 0.62rem 0.4rem 0.72rem;
    font-size: 0.82rem;
  }

  .round-submissions-toggle__icon,
  .round-rules-toggle__icon {
    width: 1.1rem;
    height: 1.1rem;
  }

  .round-rules__inner {
    gap: 0.85rem;
    padding: 0.9rem 0.82rem 1rem;
  }

  .round-rules__heading {
    align-items: center;
    padding: 0.12rem 0 0.12rem 0.72rem;
  }

  .round-rules__heading h3 {
    font-size: 1.35rem;
  }

  .round-rules__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .round-rules__fact {
    display: block;
    padding: 0.52rem 0.58rem;
  }

  .round-rules__fact dt {
    margin: 0;
    font-size: 0.7rem;
  }

  .round-rules__fact dd {
    font-size: 0.84rem;
  }

  .round-rules__intro {
    padding: 0.68rem 0 0.72rem 0.72rem;
  }

  .round-rules__intro p {
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .round-rule__header {
    grid-template-columns: 1.85rem minmax(0, 1fr);
    gap: 0.34rem;
    min-height: 0;
    padding: 0.78rem 0.06rem 0.48rem;
  }

  .round-rule__number {
    width: auto;
    height: auto;
    font-size: 0.66rem;
  }

  .round-rule__header h4 {
    font-size: 0.95rem;
  }

  .round-rule__body {
    gap: 0.68rem;
    padding: 0.04rem 0.06rem 1rem 2.18rem;
  }

  .round-rule__paragraphs {
    gap: 0.42rem;
  }

  .round-rule__paragraphs p {
    font-size: 0.9rem;
    line-height: 1.62;
  }

  .round-rule__list,
  .round-rule__points {
    gap: 0.38rem;
  }

  .round-rule__list li,
  .round-rule__points li {
    font-size: 0.875rem;
    line-height: 1.58;
  }

  .round-rule__group {
    gap: 0.55rem;
    padding: 0.62rem 0 0.66rem 0.72rem;
  }

  .round-rule__score-list > div {
    gap: 0.55rem;
    padding: 0.5rem 0.06rem;
  }

  .round-content {
    gap: 0.8rem;
    padding: 0.8rem;
  }

  .round2-layout {
    gap: 0.8rem;
  }

  .round2-content {
    gap: 0.72rem;
  }

  .round2-bingo-board {
    padding: 0.58rem;
    border-radius: 10px;
  }

  .round2-player-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .round2-player-card {
    gap: 0.5rem;
    padding: 0.62rem;
  }

  .round2-player-card__bingo {
    grid-template-columns: minmax(3.9rem, 4.55rem) minmax(0, 1fr);
    gap: 0.46rem;
  }

  .round2-player-card__bingo-summary > strong {
    font-size: 0.67rem;
  }

  .round1-top3 {
    padding: 0.7rem;
  }

  .round1-top3__header {
    grid-template-columns: 1fr;
  }

  .round1-top3__header > span {
    display: none;
  }

  .round1-top3__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.48rem;
  }

  .round1-top3__place--1 {
    grid-column: 1 / -1;
  }

  .round1-top3__place {
    gap: 0.5rem;
    padding: 0.65rem 0.7rem;
  }

  .round1-top3__number {
    width: 2rem;
    height: 2rem;
  }

  .round1-top3__place strong {
    font-size: 0.92rem;
  }

  .judge-column__header {
    gap: 0.65rem;
    padding: 0.72rem 0.8rem;
  }

  .judge-column__role {
    font-size: 0.7rem;
  }

  .judge-column__header h3 {
    font-size: 1.2rem;
  }

  .judge-column__quota {
    min-height: 2.1rem;
    padding: 0.35rem 0.55rem;
  }

  .judge-column__quota strong {
    font-size: 0.9rem;
  }

  .judge-column__quota span {
    font-size: 0.68rem;
  }

  .judge-column__roster {
    gap: 0.48rem;
    padding: 0.62rem;
  }

  .judge-column__empty {
    min-height: 5.75rem;
    padding: 1rem 0.75rem;
  }

  .judge-column__empty p {
    font-size: 0.9rem;
  }

  .judge-column__empty span {
    font-size: 0.8rem;
  }

  .judge-pick {
    padding: 0.72rem;
  }

  .judge-pick--slot,
  .judge-pick--slot:hover {
    column-gap: 0.8rem;
    min-height: 8rem;
    padding: 0.7rem 0.6rem;
  }

  .judge-pick__mask {
    width: 5.4rem;
    height: 5.4rem;
  }

  .judge-pick__mask img,
  .judge-pick__mask-img {
    width: 4.7rem;
    height: 4.7rem;
  }

  .judge-pick__name {
    font-size: 1.5rem;
  }

  .judge-pick__title-row {
    gap: 0.45rem;
    min-height: 2.85rem;
  }

  .judge-pick__scores {
    --judge-score-size: 0.76rem;
    --final-score-size: 1.3rem;
    --final-pending-size: 1.05rem;
    --judge-badge-score-gap: 0.32rem;
    --judge-final-gap: 0.62rem;
    padding-left: 0.42rem;
  }

  .judge-pick__judge-row {
    grid-template-columns: 3.45rem max-content;
  }

  .judge-pick__judge-badge {
    width: 3.45rem;
    min-height: 1rem;
    padding-inline: 0.16rem;
    font-size: 0.53rem;
  }

  .judge-pick__judge-value.is-pending {
    font-size: 0.61rem;
  }

  .judge-pick__final-score {
    min-width: 3.05rem;
    padding-left: 0.38rem;
  }

  .judge-pick__final-score small {
    font-size: 0.6rem;
  }

  .round1-top3__grid {
    grid-template-columns: 1fr;
  }

  .judge-pick__rank {
    margin-top: 0.1rem;
    font-size: 0.72rem;
  }

  .judge-pick .metric {
    min-width: 4rem;
    padding: 0.2rem 0.4rem;
  }

  .judge-pick .metric span {
    font-size: 0.7rem;
  }

  .judge-pick .metric strong {
    font-size: 1rem;
  }

  .judge-pick__works {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0.65rem;
    padding-top: 0.1rem;
  }

  .judge-pick__work {
    padding-inline: 0.25rem;
  }

  .judge-pick__work .text-link,
  .judge-pick__work .muted-link {
    min-height: 2.3rem;
    padding-block: 0.25rem;
    font-size: 0.84rem;
    line-height: 1.4;
  }

  .match-players {
    grid-template-columns: 1fr;
  }

  .match-players::after {
    content: none;
  }

  .match-player + .match-player {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .final-player {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.4rem 1rem;
  }

  .final-player .mini-pill {
    grid-column: 1 / -1;
  }

  .ranking-row,
  .score-row {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 0.6rem;
    padding-block: 0.65rem;
  }

  .rank-badge {
    min-width: 2.05rem;
    min-height: 2.05rem;
    font-size: 0.82rem;
  }

  .ranking-row h3,
  .score-row h3,
  .match-player h4,
  .final-player h4,
  .spotlight h3 {
    font-size: 1rem;
  }

  .ranking-row .metric,
  .score-grid {
    grid-column: 1 / -1;
    justify-items: stretch;
    text-align: left;
  }

  .ranking-row .metric {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding-left: 2.55rem;
  }

  .score-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.3rem;
  }

  .score-grid .metric {
    align-items: start;
    justify-items: start;
    min-width: 0;
    padding: 0.32rem 0.4rem;
    border: 1px solid var(--line);
    border-radius: 9px;
    background: rgba(0, 0, 0, 0.14);
    text-align: left;
  }

  .score-grid .metric span {
    font-size: 0.72rem;
  }

  .score-grid .metric strong {
    font-size: 1rem;
  }

  .bingo-simulator__footer {
    gap: 0.58rem;
    min-height: 3.7rem;
    padding: 0.58rem 0.64rem 0.6rem 0.72rem;
  }

  .bingo-simulator__result {
    gap: 0.48rem;
  }

  .bingo-simulator__count {
    font-size: 0.82rem;
  }

  .bingo-simulator__score {
    gap: 0.14rem;
    padding-left: 0.48rem;
    font-size: 0.7rem;
  }

  .bingo-simulator__score-number {
    font-size: 1.52rem;
  }

  .bingo-simulator__reset {
    min-height: 1.95rem;
    padding: 0.36rem 0.58rem;
    font-size: 0.72rem;
  }

  .spotlight,
  .empty-state,
  .theme-reveal {
    padding: 0.78rem 0.82rem;
  }

  .match-card,
  .final-set {
    padding: 0.8rem 0.82rem;
  }

  .match-card__head,
  .final-set__head {
    gap: 0.6rem;
    margin-bottom: 0.6rem;
  }

  .match-player,
  .final-player {
    gap: 0.4rem;
    padding: 0.68rem;
  }

  .mini-pill {
    min-height: 1.75rem;
    padding: 0.24rem 0.5rem;
    font-size: 0.76rem;
  }
}

@media (max-width: 420px) {
  .round2-player-grid {
    grid-template-columns: 1fr;
  }

  .round2-player-card__bingo {
    grid-template-columns: minmax(4.5rem, 5.25rem) minmax(0, 1fr);
  }

  .event-status {
    width: auto;
    justify-content: flex-start;
  }

  .round-nav__item strong {
    font-size: 0.82rem;
  }

  .round-rules__fact {
    grid-template-columns: 1fr;
    gap: 0.22rem;
  }

  .round1-top3__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .round1-top3__place--1 {
    grid-column: 1 / -1;
  }

  .round-ranking--winner {
    padding: 0.72rem;
  }

  .round-ranking--winner .round1-top3__grid {
    min-height: 26.5rem;
  }

  .round-ranking--winner .round2-winner {
    grid-column: 1 / -1;
    width: 100%;
    padding: 0.55rem 0.5rem 0.8rem;
  }

  .round-ranking--winner .round2-winner::before {
    inset-inline: -1.5rem;
  }

  .round-ranking--winner .round2-winner .top3-place__mask img {
    width: 5.8rem;
    height: 5.8rem;
  }

  .round2-winner__work {
    width: 100%;
    padding-inline: 0.25rem;
  }

  .round2-winner__work-link {
    font-size: 0.9rem;
  }

  .round2-winner__details {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0.7rem;
    padding-inline: 0.15rem;
  }

  .round2-winner__bingo {
    grid-template-columns: 5.25rem minmax(0, 1fr);
    justify-content: center;
    width: min(100%, 15rem);
    margin-inline: auto;
    padding-block: 0.2rem;
  }

  .round2-winner__map {
    width: 5.25rem;
  }

  .round2-winner__score {
    padding: 0.68rem 0.32rem;
  }

  .round2-winner__score dt {
    gap: 0.18rem;
    font-size: 0.61rem;
    letter-spacing: 0.035em;
  }

  .round2-winner__score dd strong {
    font-size: 1.26rem;
  }

  .judge-pick__name {
    font-size: 1.28rem;
  }

  .judge-pick--slot,
  .judge-pick--slot:hover {
    grid-template-columns: 3.25rem minmax(0, 1fr);
    column-gap: 0.4rem;
  }

  .judge-pick__mask {
    width: 3.25rem;
    height: 3.25rem;
  }

  .judge-pick__mask img,
  .judge-pick__mask-img {
    width: 3rem;
    height: 3rem;
  }

  .judge-pick__title-row {
    gap: 0.35rem;
  }

  .judge-pick__scores {
    --judge-score-size: 0.7rem;
    --final-score-size: 1.2rem;
    --judge-badge-score-gap: 0.28rem;
    --judge-final-gap: 0.5rem;
    padding-left: 0.24rem;
  }

  .judge-pick__judge-row {
    grid-template-columns: 2.68rem max-content;
  }

  .judge-pick__judge-badge {
    width: 2.68rem;
    padding-inline: 0.1rem;
    font-size: 0.45rem;
  }

  .judge-pick__final-score {
    min-width: 2.45rem;
    padding-left: 0.18rem;
  }
}

@media (max-width: 359px) {
  .judge-pick--slot,
  .judge-pick--slot:hover {
    grid-template-columns: 2.8rem minmax(0, 1fr);
    column-gap: 0.36rem;
    padding-inline: 0.35rem;
  }

  .judge-pick__mask {
    width: 2.8rem;
    height: 2.8rem;
  }

  .judge-pick__mask img,
  .judge-pick__mask-img {
    width: 2.65rem;
    height: 2.65rem;
  }

  .judge-pick__name {
    font-size: 1rem;
  }

  .judge-pick__scores {
    --judge-score-size: 0.64rem;
    --final-score-size: 1.1rem;
    --final-pending-size: 1.04rem;
    --judge-badge-score-gap: 0.25rem;
    --judge-final-gap: 0.44rem;
    padding-left: 0.18rem;
  }

  .judge-pick__judge-row {
    grid-template-columns: 2.35rem max-content;
  }

  .judge-pick__judge-badge {
    width: 2.35rem;
    padding-inline: 0.08rem;
    font-size: 0.38rem;
  }

  .judge-pick__final-score {
    min-width: 2.25rem;
    padding-left: 0.12rem;
  }

  .judge-pick__final-score.is-pending strong {
    letter-spacing: 0;
  }

  .judge-pick__works {
    grid-template-columns: 1fr;
  }

  .judge-pick__work {
    padding-right: 0;
    padding-left: 0.62rem;
  }

  .judge-pick__work + .judge-pick__work {
    padding-top: 0.18rem;
    border-top: 0;
    border-left: 0;
  }
}

@media (min-width: 561px) and (max-height: 680px) {
  .site-hero {
    min-height: min(360px, 62svh);
  }
}

@media (prefers-reduced-motion: reduce) {
  .round1-submissions__carousel {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
