:root {
  --ink: #0d0b09;
  --ink-soft: #16120f;
  --surface: rgba(22, 18, 15, 0.88);
  --surface-strong: rgba(18, 14, 12, 0.94);
  --surface-muted: rgba(201, 168, 76, 0.06);
  --text: #f5eed8;
  --text-soft: rgba(245, 238, 216, 0.8);
  --muted: rgba(232, 214, 169, 0.58);
  --gold: #c9a84c;
  --gold-light: #e8cc7a;
  --gold-dim: #7a5f28;
  --border: rgba(201, 168, 76, 0.18);
  --border-strong: rgba(201, 168, 76, 0.34);
  --primary: #c9a84c;
  --primary-strong: #e8cc7a;
  --success: #7ddfa8;
  --error: #f09090;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  font-family: 'Crimson Pro', Georgia, serif;
  color: var(--text);
  background-color: var(--ink);
  background-image:
    radial-gradient(ellipse at 15% 5%, rgba(139, 90, 30, 0.12) 0%, transparent 45%),
    radial-gradient(ellipse at 85% 95%, rgba(100, 20, 20, 0.09) 0%, transparent 45%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.28));
}

.ambient-glow {
  position: fixed;
  width: 36vw;
  height: 36vw;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.ambient-glow-left {
  top: -8vw;
  left: -10vw;
  background: rgba(201, 168, 76, 0.16);
}

.ambient-glow-right {
  right: -12vw;
  bottom: -10vw;
  background: rgba(120, 40, 40, 0.18);
}

body > * {
  position: relative;
  z-index: 1;
}

::selection {
  background: rgba(201, 168, 76, 0.28);
  color: #fff7dc;
}

a {
  color: var(--gold-light);
  text-decoration-color: rgba(201, 168, 76, 0.45);
  text-underline-offset: 0.18em;
}

a:hover {
  color: #fff4c4;
}

.container {
  width: min(1120px, 94vw);
  margin: 0 auto;
}

.site-header {
  padding: 1.35rem 0 0.75rem;
}

.site-header-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.2rem 1.5rem;
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.03));
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.site-branding {
  max-width: 32rem;
}

.site-kicker {
  margin: 0 0 0.55rem;
  font-family: 'Cinzel', serif;
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.logo {
  display: inline-block;
  color: var(--gold-light);
  text-decoration: none;
  font-family: 'Cinzel Decorative', 'Cinzel', serif;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.08;
  text-shadow: 0 0 24px rgba(201, 168, 76, 0.22);
}

.site-tagline {
  margin: 0.65rem 0 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 1rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.75rem;
  align-items: center;
}

.site-nav a,
.nav-meta {
  font-family: 'Cinzel', serif;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a {
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(201, 168, 76, 0.12);
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.04);
  text-decoration: none;
  color: rgba(245, 238, 216, 0.82);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-light);
  border-color: rgba(201, 168, 76, 0.32);
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-1px);
}

.nav-meta {
  color: var(--muted);
  padding: 0 0.25rem;
}

.page-shell {
  padding: 1.25rem 0 2.8rem;
}

h1,
h2,
h3,
h4 {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  color: var(--gold-light);
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.15;
  text-shadow: 0 0 20px rgba(201, 168, 76, 0.16);
}

h2 {
  margin: 0 0 0.7rem;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
}

p,
li,
td,
th,
label,
input,
select,
textarea,
button {
  font-size: 1.03rem;
}

.card {
  background:
    linear-gradient(180deg, rgba(201, 168, 76, 0.05), rgba(201, 168, 76, 0.015)),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem 1.25rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.card > :last-child {
  margin-bottom: 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1rem;
}

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

.stat-grid {
  margin-bottom: 1rem;
}

.stat-card {
  margin-bottom: 0;
}

.stat-label {
  margin: 0 0 0.35rem;
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-value {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
}

form.inline {
  display: inline;
}

label {
  display: block;
  margin-bottom: 0.38rem;
  font-family: 'Cinzel', serif;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

input,
select,
textarea,
button {
  width: 100%;
  padding: 0.7rem 0.82rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font: inherit;
}

input,
select,
textarea {
  color: var(--text);
  background: rgba(9, 7, 6, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

input:focus,
select:focus,
textarea:focus,
button:focus,
.button:focus {
  outline: none;
  border-color: var(--border-strong);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

textarea {
  min-height: 90px;
  resize: vertical;
}

button,
.button {
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.9), rgba(122, 95, 40, 0.92));
  border-color: rgba(201, 168, 76, 0.5);
  color: #1b1206;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  width: auto;
  padding: 0.72rem 1rem;
  font-family: 'Cinzel', serif;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease;
}

button:hover,
.button:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.button.secondary {
  background: rgba(201, 168, 76, 0.05);
  color: var(--gold-light);
  border-color: rgba(201, 168, 76, 0.28);
}

.button.warn,
button.warn {
  background: linear-gradient(180deg, rgba(110, 20, 20, 0.72), rgba(75, 12, 12, 0.86));
  color: #ffd4d4;
  border-color: rgba(200, 60, 60, 0.3);
}

.row {
  display: flex;
  gap: 0.8rem;
  align-items: end;
  flex-wrap: wrap;
}

.row > div {
  flex: 1;
  min-width: 180px;
}

.row-spread {
  justify-content: space-between;
}

table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
}

th,
td {
  text-align: left;
  border-bottom: 1px solid rgba(201, 168, 76, 0.12);
  padding: 0.7rem 0.55rem;
  vertical-align: top;
}

th {
  font-family: 'Cinzel', serif;
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

tbody tr:hover {
  background: rgba(201, 168, 76, 0.04);
}

.muted {
  color: var(--muted);
}

.badge {
  display: inline-block;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  text-transform: uppercase;
}

.status-draft {
  background: rgba(80, 130, 220, 0.18);
  color: #adc8ff;
}

.status-open {
  background: rgba(40, 110, 70, 0.22);
  color: #93efb9;
}

.status-finalized {
  background: rgba(120, 60, 20, 0.22);
  color: #f5c787;
}

.flash {
  padding: 0.88rem 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  border: 1px solid;
  box-shadow: var(--shadow);
}

.flash-success {
  background: rgba(40, 110, 70, 0.2);
  border-color: rgba(80, 180, 120, 0.28);
  color: var(--success);
}

.flash-error {
  background: rgba(110, 20, 20, 0.22);
  border-color: rgba(200, 60, 60, 0.28);
  color: var(--error);
}

.hidden {
  display: none;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.standings-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.field-error {
  border-color: rgba(200, 60, 60, 0.6);
  background: rgba(110, 20, 20, 0.22);
}

.vote-form {
  margin-top: 0.9rem;
}

.vote-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.vote-option {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(20, 14, 12, 0.86);
}

.vote-option input {
  width: auto;
  margin: 0;
}

.vote-results {
  display: grid;
  gap: 0.75rem;
  margin-top: 1rem;
}

.vote-result-row {
  display: grid;
  gap: 0.35rem;
}

.vote-result-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.vote-bar-track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(201, 168, 76, 0.12);
  overflow: hidden;
}

.vote-bar-fill {
  height: 100%;
  min-width: 0;
  background: linear-gradient(90deg, #7a5f28, #c9a84c, #e8cc7a);
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--ink);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dim);
  border-radius: 999px;
}

@media (max-width: 980px) {
  .site-header-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 840px) {
  .grid-2,
  .grid-3,
  .stat-grid,
  .vote-options {
    grid-template-columns: 1fr;
  }

  .standings-toolbar,
  .vote-result-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .site-header {
    padding-top: 1rem;
  }

  .site-header-inner {
    padding: 1rem;
  }

  .site-nav a,
  .nav-meta,
  .site-kicker,
  th,
  label,
  .button,
  button {
    letter-spacing: 0.1em;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(96vw, 1120px);
  }

  .card {
    padding: 1rem;
  }

  th,
  td {
    padding-left: 0.3rem;
    padding-right: 0.3rem;
  }
}
.stat-inset {
  background:
    linear-gradient(180deg, rgba(201, 168, 76, 0.03), rgba(201, 168, 76, 0.01)),
    rgba(10, 8, 7, 0.42);
  box-shadow: none;
  margin-bottom: 0;
}

.poty-hero {
  padding-bottom: 1.35rem;
}

.story-kicker {
  margin: 0 0 0.55rem;
  font-family: 'Cinzel', serif;
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-dim);
}

.story-card {
  background:
    linear-gradient(180deg, rgba(201, 168, 76, 0.08), rgba(90, 30, 20, 0.04)),
    var(--surface-strong);
}

.story-copy {
  display: grid;
  gap: 1rem;
}

.story-copy p {
  margin: 0;
  font-size: 1.14rem;
  line-height: 1.85;
  color: var(--text-soft);
}

.chronicle-list {
  display: grid;
  gap: 0.75rem;
}

.chronicle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.05rem;
  border: 1px solid rgba(201, 168, 76, 0.14);
  border-left: 3px solid rgba(201, 168, 76, 0.42);
  border-radius: 10px;
  background: rgba(201, 168, 76, 0.04);
}

.chronicle-item h3 {
  margin-bottom: 0.25rem;
}

.chronicle-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
}

.chronicle-meta .badge {
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold-light);
}

input[type="checkbox"],
input[type="radio"] {
  width: auto;
}

.table-wrap {
  width: 100%;
  overflow-x: auto;
}

@media (max-width: 840px) {
  .chronicle-item {
    flex-direction: column;
    align-items: stretch;
  }
}
.format-slot-card {
  display: grid;
  gap: 0.55rem;
}

.format-select-small {
  font-size: 0.92rem;
  line-height: 1.35;
}


.table-wrap table {
  min-width: 100%;
}

.key-code-mask {
  font-family: 'Courier New', monospace;
  letter-spacing: 0.08em;
}

body.gate-open {
  overflow: hidden;
}

.league-gate[hidden] {
  display: none;
}

.league-gate {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1.4rem;
}

.league-gate-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 2, 2, 0.78);
  backdrop-filter: blur(8px);
}

.league-gate-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 94vw);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.25rem;
  padding: 1.35rem;
  border: 1px solid rgba(201, 168, 76, 0.24);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.02)),
    rgba(9, 7, 6, 0.96);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.48);
}

.league-gate-scene {
  position: relative;
  min-height: 28rem;
  border-radius: 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 18%, rgba(201, 168, 76, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(15, 12, 10, 0.98), rgba(23, 18, 16, 0.98));
  border: 1px solid rgba(201, 168, 76, 0.12);
}

.league-gate-snow {
  position: absolute;
  inset: -40% 0 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.85) 0 1px, transparent 1.8px),
    radial-gradient(circle, rgba(255,255,255,0.5) 0 1.4px, transparent 2px),
    radial-gradient(circle, rgba(232, 214, 169, 0.28) 0 1.2px, transparent 1.8px);
  background-size: 110px 110px, 160px 160px, 210px 210px;
}

.league-gate-snow-a {
  animation: gateSnow 15s linear infinite;
}

.league-gate-snow-b {
  opacity: 0.32;
  animation: gateSnow 22s linear infinite reverse;
}

.league-door-frame {
  position: absolute;
  inset: 1.35rem 1.35rem 1.85rem;
  border-radius: 18px;
  border: 1px solid rgba(201, 168, 76, 0.22);
  background: linear-gradient(180deg, rgba(47, 34, 21, 0.46), rgba(23, 17, 13, 0.72));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

.league-door-header-glow {
  position: absolute;
  top: 1.1rem;
  left: 15%;
  right: 15%;
  height: 1.4rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(232, 214, 169, 0.42), transparent 70%);
  filter: blur(10px);
}

.league-door {
  position: absolute;
  inset: 2.1rem 2rem 2rem;
  overflow: hidden;
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 20%, rgba(201, 168, 76, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(31, 22, 16, 0.9), rgba(18, 13, 10, 0.96));
}

.league-door::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 52%, rgba(242, 231, 197, 0.14), transparent 32%);
  opacity: 0;
  transition: opacity 0.9s ease;
}

.league-door-panel {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background:
    linear-gradient(180deg, rgba(96, 68, 36, 0.92), rgba(55, 35, 20, 0.96)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0 14px, rgba(0,0,0,0.05) 14px 28px);
  border: 1px solid rgba(201, 168, 76, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease, opacity 0.45s ease;
}

.league-door-left {
  left: 0;
  border-right-width: 0.5px;
  transform-origin: left center;
}

.league-door-right {
  right: 0;
  border-left-width: 0.5px;
  transform-origin: right center;
}

.league-door-panel::before,
.league-door-panel::after {
  content: '';
  position: absolute;
  border-radius: 999px;
}

.league-door-panel::before {
  top: 14%;
  left: 14%;
  right: 14%;
  height: 1px;
  background: rgba(201, 168, 76, 0.28);
  box-shadow: 0 18px 0 rgba(201, 168, 76, 0.16), 0 36px 0 rgba(201, 168, 76, 0.1);
}

.league-door-panel::after {
  top: 50%;
  width: 0.7rem;
  height: 0.7rem;
  background: rgba(232, 214, 169, 0.85);
  box-shadow: 0 0 14px rgba(232, 214, 169, 0.4);
}

.league-door-left::after {
  right: 1.1rem;
}

.league-door-right::after {
  left: 1.1rem;
}

.league-lock {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7.4rem;
  height: 9.6rem;
  transform: translate(-50%, -44%);
  transition: transform 0.6s ease, opacity 0.6s ease, filter 0.6s ease;
}

.league-lock-shackle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4.6rem;
  height: 4rem;
  transform: translateX(-50%);
  border: 0.7rem solid rgba(232, 214, 169, 0.96);
  border-bottom: none;
  border-radius: 2.7rem 2.7rem 0 0;
  box-shadow: 0 0 24px rgba(232, 214, 169, 0.16);
}

.league-lock-body {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 7.4rem;
  height: 6.7rem;
  transform: translateX(-50%);
  border-radius: 1.2rem;
  background:
    linear-gradient(180deg, rgba(242, 226, 165, 0.98), rgba(201, 168, 76, 0.96) 48%, rgba(130, 94, 28, 0.98));
  border: 1px solid rgba(89, 61, 12, 0.56);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255,255,255,0.26);
}

.league-lock-core {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  width: 1rem;
  height: 1.9rem;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(71, 48, 12, 0.92);
  box-shadow: 0 0 0 0.34rem rgba(89, 61, 12, 0.2);
}

.league-gate-copy {
  display: grid;
  align-content: center;
  gap: 0.9rem;
  padding: 0.5rem 0.25rem 0.5rem 0;
}

.league-gate-copy h2 {
  font-size: clamp(1.5rem, 3.3vw, 2.25rem);
  margin-bottom: 0;
}

.league-gate-form {
  display: grid;
  gap: 0.9rem;
}

.league-gate-status {
  min-height: 2.8rem;
  margin: 0;
}

.vote-access-state {
  margin-top: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.vote-access-state p {
  margin: 0;
}

.vote-player-name {
  margin: 0;
}

.vote-submit-row {
  margin-top: 0.75rem;
}

.vote-options-locked {
  opacity: 0.6;
}

.vote-options-locked .vote-option {
  filter: saturate(0.72);
}

.league-gate-scene.gate-shake {
  animation: gateShake 0.42s ease;
}

.league-gate-scene.is-opening .league-lock {
  opacity: 0;
  transform: translate(-50%, -60%) scale(0.82);
  filter: blur(3px);
}

.league-gate-scene.is-opening .league-door::after {
  opacity: 1;
}

.league-gate-scene.is-opening .league-door-left {
  transform: translateX(-103%);
}

.league-gate-scene.is-opening .league-door-right {
  transform: translateX(103%);
}

.league-gate-scene.is-invalid .league-door::after {
  background: radial-gradient(circle at 50% 52%, rgba(191, 205, 236, 0.1), transparent 32%);
}

@keyframes gateSnow {
  from {
    transform: translateY(-8%) rotate(0deg);
  }

  to {
    transform: translateY(22%) rotate(6deg);
  }
}

@keyframes gateShake {
  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-8px);
  }

  40% {
    transform: translateX(6px);
  }

  60% {
    transform: translateX(-5px);
  }

  80% {
    transform: translateX(3px);
  }
}

@media (max-width: 900px) {
  .league-gate-dialog {
    grid-template-columns: 1fr;
  }

  .league-gate-scene {
    min-height: 22rem;
  }

  .vote-access-state {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .league-gate {
    padding: 0.8rem;
  }

  .league-gate-dialog {
    padding: 1rem;
    border-radius: 16px;
  }

  .league-door-frame {
    inset: 1rem 1rem 1.25rem;
  }

  .league-door {
    inset: 1.55rem 1.2rem 1.25rem;
  }

  .league-lock {
    width: 5.8rem;
    height: 7.8rem;
  }

  .league-lock-body {
    width: 5.8rem;
    height: 5.1rem;
  }

  .league-lock-shackle {
    width: 3.5rem;
    height: 3rem;
  }
}
