:root {
  --bg: #020202;
  --panel: #0f0f0f;
  --panel-2: #17120f;
  --line: #d59b173d;
  --text: #f8f5ef;
  --muted: #c8c0b6;
  --gold: #f3c018;
  --red: #e31b14;
  --orange: #ff6b1b;
  --summary-height: 82px;
  --header-height: 96px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.d-none {
  display: none !important;
}

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

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

.site-bg {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--header-height) + var(--summary-height));
  background:
    radial-gradient(circle at 50% 18%, #7a06054d 0 12%, transparent 44%),
    linear-gradient(180deg, #020202 0, #060101 20%, #0a0202 34%, #050101 50%, #000 68%, #000 100%);
}

.site-bg::before {
  content: "";
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  height: calc(var(--summary-height) + min(58vh, 470px));
  pointer-events: none;
  background:
    linear-gradient(180deg,
      #fffaf04a 0%,
      #fff2d72e 8%,
      #f3c01830 18%,
      #cf251c48 34%,
      #7d0b093c 52%,
      #2b030324 74%,
      transparent 100%);
  z-index: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  background: #000;
  border-bottom: 1px solid #210505;
}

.header-inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: 180px 1fr 108px;
  align-items: center;
  gap: 24px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid #a26a11;
  border-radius: 4px;
  background: linear-gradient(180deg, #250909, #120404);
  box-shadow: inset 0 0 0 1px #ff3b1b33;
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  display: block;
  background: #fff;
}

.nav-toggle:hover {
  border-color: var(--gold);
  background: linear-gradient(180deg, #64140d, #1a0504);
  box-shadow: inset 0 0 0 1px #ffd44755, 0 0 18px #e31b1466;
}

.nav-toggle:active {
  transform: scale(.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.08rem;
  line-height: .9;
  text-transform: uppercase;
}

.brand-img {
  width: 240px;
  height: auto;
  display: block;
}

.brand.small img { width: 240px; }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.main-nav a {
  position: relative;
  padding: 38px 0 32px;
  color: #fff;
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  height: 3px;
  background: var(--red);
}

.nav-mobile-only {
  display: none;
}

.summary-strip {
  width: min(1120px, 92vw);
  min-height: var(--summary-height);
  position: fixed;
  top: var(--header-height);
  left: 50%;
  z-index: 79;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 7vw, 86px);
  margin: 0;
  padding: 12px 24px;
  isolation: isolate;
  border: 1px solid #2b0707;
  border-top: 0;
  border-radius: 0 0 18px 18px;
  background-color: #11161b;
  background:
    linear-gradient(180deg, #151a1f 0%, #101419 100%),
    radial-gradient(circle at 50% 0, #6f100b22, transparent 60%);
  box-shadow: 0 18px 38px #00000073;
}

.summary-strip::after {
  content: none;
}

.title-strip {
  position: relative;
  z-index: 1;
  width: min(1120px, 92vw);
  display: flex;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 20px;
  padding: 22px 18px 0;
}

.title-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: none;
  z-index: -1;
}

.title-strip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: min(360px, 48%);
  height: 2px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent 0, #ffffff00 10%, #ffffff72 50%, #ffffff00 90%, transparent 100%);
  box-shadow: 0 0 12px #ffffff24;
  pointer-events: none;
}

.title-strip img {
  width: min(520px, 100%);
  height: auto;
  display: block;
  filter:
    drop-shadow(0 12px 22px #00000088)
    drop-shadow(0 0 22px #ffffff12)
    drop-shadow(0 0 18px #b3140d30);
}

.summary-item {
  text-align: center;
  text-transform: uppercase;
}

.summary-item span {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.summary-item strong {
  display: block;
  color: var(--red);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: .9;
  letter-spacing: .03em;
  text-shadow: 0 0 18px #e31b1466;
}

.ijkd-swal-popup {
  border: 1px solid #5a3f14 !important;
  border-radius: 12px !important;
  background:
    linear-gradient(180deg, #140d0b, #090909),
    radial-gradient(circle at 50% 0, #7b120d45, transparent 54%) !important;
  box-shadow: 0 24px 60px #0000008f !important;
  padding: 1.6rem 1.4rem 1.35rem !important;
}

.ijkd-swal-title {
  color: #fff4ea !important;
  font-family: "Bebas Neue", Impact, sans-serif !important;
  font-size: clamp(1.9rem, 4vw, 2.55rem) !important;
  font-weight: 400 !important;
  letter-spacing: .06em !important;
  line-height: .98 !important;
  text-transform: uppercase !important;
}

.ijkd-swal-content {
  color: #efe7db !important;
  font-size: .98rem !important;
  line-height: 1.7 !important;
}

.ijkd-swal-actions {
  gap: 10px !important;
  margin-top: 1.25rem !important;
}

.ijkd-swal-confirm,
.ijkd-swal-deny,
.ijkd-swal-cancel {
  min-width: 124px !important;
  min-height: 46px !important;
  border-radius: 8px !important;
  padding: 0 18px !important;
  font-size: .92rem !important;
  font-weight: 800 !important;
  letter-spacing: .04em !important;
  text-transform: uppercase !important;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease !important;
}

.ijkd-swal-confirm {
  border: 1px solid #e0a40d !important;
  background: linear-gradient(180deg, #8b120c, #4f0907) !important;
  box-shadow: inset 0 0 0 1px #fff1a544, 0 0 22px #e31b1450 !important;
  color: #fff !important;
}

.ijkd-swal-deny,
.ijkd-swal-cancel {
  border: 1px solid #7a560f !important;
  background: #0c0c0c !important;
  color: #fff0d7 !important;
}

.ijkd-swal-confirm:hover,
.ijkd-swal-deny:hover,
.ijkd-swal-cancel:hover {
  transform: translateY(-1px) !important;
}

.ijkd-swal-confirm:focus-visible,
.ijkd-swal-deny:focus-visible,
.ijkd-swal-cancel:focus-visible {
  outline: none !important;
  box-shadow: 0 0 0 3px #f0b7182b !important;
}

.ijkd-swal-icon.swal2-success,
.ijkd-swal-icon.swal2-error,
.ijkd-swal-icon.swal2-warning,
.ijkd-swal-icon.swal2-info,
.ijkd-swal-icon.swal2-question {
  border-width: 0.18em !important;
}

.swal2-popup .swal2-loader,
.ijkd-swal-loader {
  border-color: #f0b718 transparent #f0b718 transparent !important;
}

.btn-login,
.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 40px;
  padding: 0 20px;
  border-radius: 4px;
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid #ae750f;
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease, color .16s ease;
}

.account-menu {
  position: relative;
  justify-self: end;
}

.account-toggle {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  border: 1px solid #4d190f;
  border-radius: 999px;
  background: linear-gradient(180deg, #160707 0%, #0a0505 100%);
  color: #fff;
  cursor: pointer;
  transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.account-toggle:hover {
  border-color: var(--gold);
  box-shadow: 0 0 22px #e31b143b;
  transform: translateY(-1px);
}

.account-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.account-avatar {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #ffffff22;
  background: #f7f4ee;
  box-shadow: 0 0 0 2px #0d0d0d;
}

.account-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.account-copy {
  display: grid;
  gap: 1px;
  text-align: left;
}

.account-copy small {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.account-copy strong {
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
}

.account-toggle > i {
  color: var(--gold);
  font-size: .76rem;
  transition: transform .16s ease;
}

.account-menu.is-open .account-toggle > i {
  transform: rotate(180deg);
}

.account-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 210px;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid #4d190f;
  border-radius: 10px;
  background: linear-gradient(180deg, #140909 0%, #090404 100%);
  box-shadow: 0 24px 50px #0000009c;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity .16s ease, visibility .16s ease, transform .16s ease;
}

.account-menu.is-open .account-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.account-dropdown a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border-radius: 6px;
  color: #efe7db;
  font-size: .8rem;
  font-weight: 800;
  transition: background .16s ease, color .16s ease;
}

.account-dropdown a:hover {
  background: #240707;
  color: var(--gold);
}

.account-dropdown i {
  width: 18px;
  text-align: center;
  color: var(--gold);
}

.btn-login,
.btn-primary {
  background: linear-gradient(180deg, #250909 0%, #6d0704 54%, #1d0706 100%);
  box-shadow: inset 0 0 0 1px #ff3b1b55, 0 0 18px #b5120a66;
}

.btn-outline {
  background: #060606;
}

.btn-login:hover,
.btn-primary:hover {
  border-color: var(--gold);
  background: linear-gradient(180deg, #62150d 0%, #b8140c 58%, #300706 100%);
  box-shadow: inset 0 0 0 1px #ffd44766, 0 0 24px #e31b147a;
  transform: translateY(-2px);
}

.btn-outline:hover {
  border-color: var(--red);
  background: #180403;
  box-shadow: inset 0 0 0 1px #ff3b1b44, 0 0 20px #e31b144f;
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-login:active,
.btn-primary:active,
.btn-outline:active {
  transform: translateY(1px) scale(.98);
  box-shadow: inset 0 3px 8px #00000088;
}

.btn-login:focus-visible,
.btn-primary:focus-visible,
.btn-outline:focus-visible,
.nav-toggle:focus-visible,
.slider-control:focus-visible,
.group-filter-buttons button:focus-visible,
.prize-tab-buttons button:focus-visible,
.ranking-pagination button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.hero-stage {
  min-height: 680px;
  position: relative;
  overflow: hidden;
  margin-top: calc(-1 * var(--summary-height));
  padding-top: calc(var(--summary-height) + 10px);
  background:
    linear-gradient(90deg, #050000f0 0%, #040000e8 24%, #040000c9 46%, #0300009a 68%, #010101cf 100%),
    linear-gradient(180deg, #14040496 0%, #0a010168 20%, #0500002e 48%, #00000042 100%),
    url("../assets/materials/hero-bg-min.png") 62% top / cover no-repeat;
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 120px;
  background: linear-gradient(180deg, #11030334 0%, #0c01011f 56%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, #000);
}

.hero-grid {
  min-height: 640px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: center;
}

.hero-copy {
  padding: 22px 0 80px;
}

.hero-copy h1 {
  margin: 0 0 10px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3.2rem, 7vw, 5.9rem);
  line-height: .86;
  font-style: italic;
  text-transform: uppercase;
}

.hero-copy h1 span { color: var(--gold); display: block; }

.hero-subtitle {
  margin: 0 0 26px;
  color: #fff;
  font-size: 1.07rem;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 0px;
  color: var(--gold);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.auction-cards {
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
}

.auction-card {
  width: 370px;
  min-height: 62px;
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  column-gap: 14px;
  padding: 8px 16px;
  border: 1px solid #d4a018;
  border-radius: 5px;
  background: #050505cc;
}

.auction-card strong {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.auction-card small {
  display: block;
  color: #fff;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.koi-badge {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: url("../assets/mockup/category-nisai-96x96.svg") center / cover no-repeat;
}

.koi-badge.tosai {
  background-image: url("../assets/mockup/category-tosai-96x96.svg");
}

.countdown {
  display: flex;
  gap: 20px;
  margin: 10px 0 22px;
}

.countdown:not(.is-live) > div {
  padding-top: 6px;
  width: 72px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid #c99b1b;
  border-radius: 4px;
  background: #111;
}

.countdown strong {
  font-size: 1.85rem;
  line-height: .8;
  transition: color .18s ease, text-shadow .18s ease, transform .18s ease;
}

.countdown strong.is-updating {
  color: var(--gold);
  text-shadow: 0 0 16px #f3c01880;
  transform: translateY(-1px) scale(1.06);
}

.countdown span {
  color: #d9d2c8;
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.countdown.is-live {
  display: block;
}

.countdown.is-live .countdown-live-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: auto;
  max-width: 100%;
  min-height: 62px;
  padding: 0 20px;
  border: 1px solid #c99b1b;
  border-radius: 4px;
  background: #111;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.countdown-live-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff2b1c;
  box-shadow: 0 0 0 0 #ff2b1c99;
  animation: livePulse 1.2s ease-out infinite;
}

.countdown-live-copy {
  display: inline-block;
  font-size: 1.2rem!important;
}

@keyframes livePulse {
  0% {
    transform: scale(.92);
    box-shadow: 0 0 0 0 #ff2b1c88;
  }

  55% {
    transform: scale(1);
    box-shadow: 0 0 0 10px #ff2b1c00;
  }

  100% {
    transform: scale(.92);
    box-shadow: 0 0 0 0 #ff2b1c00;
  }
}

.hero-actions {
  display: flex;
  gap: 22px;
}

.hero-visual {
  position: relative;
  height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 22px;
}

.hero-slider {
  position: absolute;
  inset: 0 -24px 0 0;
  height: 680px;
}

.hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center right;
  opacity: 0;
  transform: scale(.985);
  filter: drop-shadow(0 30px 28px #000);
  transition: opacity .45s ease, transform .45s ease;
}

.hero-slider img.is-active {
  opacity: 1;
  transform: scale(1);
}

.slider-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid #d69a14;
  border-radius: 50%;
  background: #070202d9;
  color: #fff;
  box-shadow: 0 0 18px #000, inset 0 0 0 1px #ff3b1b44;
  cursor: pointer;
  transform: translateY(-50%);
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease, color .16s ease;
}

.slider-control span {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}

.slider-control:hover {
  border-color: #ff3b1b;
  background: linear-gradient(180deg, #5f0805, #130303);
  color: var(--gold);
  box-shadow: 0 0 22px #e31b1477, inset 0 0 0 1px #ffd44755;
}

.slider-control:active {
  background: #000;
  box-shadow: inset 0 3px 8px #000;
}

.slider-control-prev { left: 128px; }
.slider-control-next { right: -56px; }

.fighter-panel {
  position: relative;
  z-index: 2;
  min-height: 260px;
  display: grid;
  grid-template-columns: 370px 1fr;
  align-items: end;
  margin-top: 0;
  padding: 28px 56px 20px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  background:
    linear-gradient(90deg, #060606 0 42%, #16040496 62%, #000 100%),
    url("../assets/materials/25-main-character-min.png") right bottom / contain no-repeat;
}

.fighter-copy { padding-bottom: 20px; }
.fighter-logo {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 3.9rem;
  line-height: .8;
  color: var(--red);
  text-transform: uppercase;
  text-shadow: 2px 2px 0 var(--gold), 5px 5px 0 #000;
}
.fighter-logo span { color: var(--gold); }
.fighter-copy h2 {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.3rem;
  text-transform: uppercase;
}
.fighter-copy p:not(.fighter-logo) {
  margin: 0 0 18px;
  color: #fff;
  line-height: 1.45;
}

.video-section {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  margin-bottom: 34px;
}

.video-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.video-kicker span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.video-kicker b {
  color: #fff;
  font-size: .86rem;
  letter-spacing: .12em;
}

.video-frame {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: #050505;
  box-shadow: 0 22px 50px #000000a3;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.dealers-section { padding: 20px 0 10px; }
.dealers-section h2,
.bottom-panel h2,
.champions-list-section h2,
.champion-detail-section h2 {
  margin: 0 0 14px;
  text-align: center;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2rem;
  font-style: italic;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.dealers-section h2 span,
.bottom-panel h2 span,
.champions-list-section h2 span,
.champion-detail-section h2 span { color: var(--red); }

.dealer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.dealer-card {
  aspect-ratio: 1 / 1;
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  gap: 6px;
  padding: 2px;
  border: 1px solid #5a5a5a;
  border-radius: 6px;
  background:
    linear-gradient(180deg, #1a1a1a, #0c0c0c),
    radial-gradient(circle at 50% 0, #7a130c44, transparent 62%);
}

.dealer-logo {
  width: 70%;
  height: 86%;
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid #ffffff26;
  border-radius: 4px;
  background: #f7f4ee;
  box-shadow: inset 0 0 0 1px #00000012, 0 10px 20px #00000066;
}

.dealer-logo img {
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px #00000099);
}

.dealer-card strong {
  align-self: end;
  text-align: center;
  font-size: .68rem;
  line-height: 1.25;
  text-transform: uppercase;
  color: #fff;
  min-height: 2.5em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-button {
  width: 260px;
  margin: 16px auto 0;
  display: flex;
}

.auction-page-section {
  padding: 0 0 70px;
}

.auction-dealer-section {
  margin-top: 30px;
}

.auction-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.auction-section-title > span {
  width: 8px;
  height: 52px;
  display: block;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--red));
  box-shadow: 0 0 18px #e31b1466;
}

.auction-section-title small {
  display: block;
  color: #fff;
  font-size: .75rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.auction-section-title h2 {
  margin: 0;
  color: var(--red);
  font-size: 1.65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.auction-dealer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.auction-dealer-card {
  min-height: 150px;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  gap: 10px;
  padding: 16px 12px 14px;
  border: 1px solid #40342d;
  border-radius: 6px;
  background: linear-gradient(180deg, #171717, #090909);
}

.auction-dealer-card img {
  width: 148px;
  height: 128px;
  object-fit: contain;
  padding: px;
  border-radius: 4px;
  background: #f7f4ee;
  box-shadow: 0 12px 24px #00000080;
}

.auction-dealer-card strong {
  min-height: 2.4em;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: .67rem;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.group-filter-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 34px 0 26px;
}

.group-filter-buttons button {
  min-height: 42px;
  border: 1px solid #c82718;
  border-radius: 5px;
  background: linear-gradient(180deg, #d92219, #8d0805);
  color: #fff;
  font-weight: 900;
  text-align: left;
  padding: 0 16px;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px #ffcd3d33;
  transition: transform .16s ease, border-color .16s ease, background .16s ease, box-shadow .16s ease;
}

.group-filter-buttons button:hover {
  border-color: var(--gold);
  background: linear-gradient(180deg, #f0b718, #b7120a);
  box-shadow: inset 0 0 0 1px #fff1a555, 0 0 20px #e31b1466;
  transform: translateY(-2px);
}

.group-filter-buttons button:active {
  transform: translateY(1px) scale(.985);
  box-shadow: inset 0 3px 8px #00000099;
}

.auction-filter-panel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 22px;
  border: 1px solid #3c2c23;
  border-radius: 8px;
  background: linear-gradient(180deg, #15110f, #080808);
}

.auction-filter-panel label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
}

.auction-filter-panel select {
  width: 100%;
  min-height: 44px;
  border: 1px solid #45342b;
  border-radius: 5px;
  background: #080808;
  color: #efe7db;
  font: inherit;
  font-size: .78rem;
  padding: 0 12px;
}

.auction-filter-actions {
  display: flex;
  align-items: end;
  gap: 10px;
}

.auction-filter-actions .btn-primary,
.auction-filter-actions .btn-outline {
  min-width: 112px;
  height: 44px;
  padding: 0 16px;
}

.auction-filter-actions .btn-primary,
.auction-filter-actions .btn-outline {
  gap: 10px;
}

.auction-filter-actions i {
  font-size: .9rem;
}

.auction-page-shell {
  padding-bottom: 42px;
}

.auction-heading {
  margin-top: 28px;
}

.auction-announcement-panel {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
  padding: 22px;
  border: 1px solid #5a3f14;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #0d0908, #070707),
    radial-gradient(circle at 50% 0, #8d120d40, transparent 55%);
}

.auction-announcement-media {
  display: block;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid #3f2f1e;
}

.auction-announcement-media img {
  width: 100%;
  height: auto;
  display: block;
}

.auction-announcement-copy {
  color: #efe7db;
  line-height: 1.7;
}

.auction-announcement-copy > *:first-child {
  margin-top: 0;
}

.auction-announcement-copy > *:last-child {
  margin-bottom: 0;
}

.auction-filter-form {
  display: grid;
  gap: 28px;
}

.auction-dealer-card {
  border: 1px solid #4f3821;
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.auction-dealer-card:hover,
.auction-dealer-card.is-active {
  border-color: var(--gold);
  background: linear-gradient(180deg, #231511, #0c0c0c);
  box-shadow: 0 0 22px #e31b1436;
  transform: translateY(-2px);
}

.group-filter-buttons button.is-active {
  border-color: var(--gold);
  background: linear-gradient(180deg, #f0b718, #b7120a);
  box-shadow: inset 0 0 0 1px #fff1a555, 0 0 20px #e31b1466;
}

.auction-products-section {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.auction-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.auction-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid #4f3821;
  border-radius: 10px;
  background:
    linear-gradient(180deg, #0c0908, #070707),
    radial-gradient(circle at 50% 0, #8d120d35, transparent 52%);
  overflow: hidden;
  box-shadow: 0 18px 34px #00000073;
}

.auction-product-media {
  display: block;
  aspect-ratio: 4 / 5;
  background: #0a0a0a;
}

.auction-product-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.auction-product-body {
  display: grid;
  gap: 3px;
  padding: 18px 18px 4px;
}

.auction-product-status {
  display: grid;
  gap: 8px;
}

.auction-product-status-head {
  display: grid;
  gap: 8px;
}

.auction-product-head {
  display: grid;
  align-content: start;
  gap: 2px;
  min-height: 48px;
}

.auction-product-eyebrow {
  display: block;
  margin: 0;
  min-height: 1em;
  line-height: 1.05;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.auction-product-head h3 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.1rem;
  font-style: italic;
  letter-spacing: .08em;
  line-height: .88;
  min-height: 1em;
  text-transform: uppercase;
}

.auction-product-head h3 a {
  display: block;
  color: #fff;
}

.auction-product-price,
.auction-product-login {
  margin: 0;
  color: #f0eadf;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.5;
}

.auction-product-price strong,
.auction-product-login {
  display: block;
  color: var(--gold);
  margin-top: 2px;
}

.auction-product-countdown {
  display: grid;
  gap: 0;
  padding: 0px;
  border-radius: 8px;
  margin-bottom: 6px;
}

.auction-product-countdown-title {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.auction-product-countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.auction-product-countdown-grid div {
  min-height: 58px;
  display: grid;
  place-items: center;
  padding: 6px 2px;
  border: 1px solid #31231b;
  border-radius: 6px;
  text-align: center;
}

.auction-product-countdown-grid strong {
  color: var(--red);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 1.7rem;
  line-height: .95;
}

.auction-product-countdown-grid span {
  color: var(--muted);
  font-size: .54rem;
  font-weight: 800;
  text-transform: uppercase;
}

.auction-product-specs {
  display: grid;
  gap: 10px;
  margin: 0;
}

.auction-product-spec-item {
  display: grid;
  gap: 3px;
  padding-bottom: 0px;
  border-bottom: 1px solid #221917;
}

.auction-product-spec-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.auction-product-specs dt {
  color: var(--gold);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.auction-product-specs dd {
  margin: 0;
  color: #fff;
  font-size: .84rem;
  line-height: 1.55;
}

.auction-product-specs .is-note dd {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.auction-product-actions {
  display: grid;
  gap: 14px;
  margin-top: auto;
}

.auction-product-media-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.auction-product-media-actions a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #5d3f12;
  border-radius: 50%;
  background: #120909;
  color: var(--gold);
  transition: border-color .16s ease, color .16s ease, background .16s ease;
}

.auction-product-media-actions a:hover {
  border-color: var(--red);
  background: #220807;
  color: #fff;
}

.auction-product-cta {
  width: 100%;
}

.auction-product-media-wrap {
  position: relative;
}

.my-auction-shell {
  padding-bottom: 54px;
}

.my-auction-section {
  display: grid;
  gap: 18px;
}

.my-auction-section + .my-auction-section {
  margin-top: 26px;
}

.my-auction-grid {
  align-items: stretch;
}

.my-auction-count {
  margin-left: auto;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.my-auction-status-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  pointer-events: none;
  box-shadow: 0 10px 22px #0000004f;
}

.my-auction-status-badge.is-winning {
  background: #0f3c22;
  color: #e9ffef;
  border: 1px solid #2c9a58;
}

.my-auction-status-badge.is-losing {
  background: #4d0d0a;
  color: #ffe6e3;
  border: 1px solid #d03c2d;
}

.my-auction-status-badge.is-won {
  background: linear-gradient(180deg, #f0b718, #b7120a);
  color: #fff;
  border: 1px solid #f6d57a;
}

.my-auction-bid-stack {
  display: grid;
  gap: 2px;
  margin-bottom: 4px;
}

.my-auction-your-bid strong.is-winning,
.auction-product-price strong.is-winning {
  color: #78e59a;
}

.my-auction-your-bid strong.is-losing,
.auction-product-price strong.is-losing {
  color: #ff8b78;
}

.auction-product-price strong.is-won {
  color: #ffd56f;
}

.auction-filter-panel .select2-container {
  width: 100% !important;
}

.auction-filter-panel .select2-container .select2-selection--single {
  min-height: 44px;
  display: flex;
  align-items: center;
  border: 1px solid #45342b;
  border-radius: 5px;
  background: #080808;
  color: #efe7db;
}

.auction-filter-panel .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #efe7db;
  font-size: .78rem;
  font-weight: 700;
  line-height: 44px;
  padding-left: 12px;
  padding-right: 36px;
}

.auction-filter-panel .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 42px;
  right: 8px;
}

.auction-filter-panel .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: #efe7db transparent transparent transparent;
}

.select2-dropdown {
  border: 1px solid #45342b;
  border-radius: 6px;
  background: #0d0d0d;
  box-shadow: 0 18px 30px #0000007a;
}

.select2-search--dropdown {
  padding: 10px;
}

.select2-search--dropdown .select2-search__field {
  min-height: 38px;
  border: 1px solid #45342b;
  border-radius: 5px;
  background: #080808;
  color: #efe7db;
  padding: 0 10px;
}

.select2-results__option {
  color: #efe7db;
  font-size: .78rem;
  padding: 10px 12px;
  background: transparent;
}

.select2-container--default .select2-results > .select2-results__options {
  background: #0d0d0d;
}

.select2-container--default .select2-results__option--disabled {
  color: #7b6f64;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: linear-gradient(180deg, #6d0704 0%, #1d0706 100%) !important;
  color: #fff !important;
}

.select2-container--default .select2-results__option--highlighted[aria-selected="true"] {
  background: #1b0b08 !important;
  color: var(--gold) !important;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
  background: #1b0b08 !important;
  color: var(--gold) !important;
}

.select2-container--default .select2-results__option[aria-selected="false"] {
  color: #efe7db !important;
}

.select2-container--default .select2-results__option--selected {
  background: #1b0b08 !important;
  color: var(--gold) !important;
}

.select2-container--default .select2-results__option--selected.select2-results__option--highlighted,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selected {
  background: #1b0b08 !important;
  color: var(--gold) !important;
}

.btn-icon {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: #ffffff18;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
}

.btn-icon i {
  font-size: .82rem;
}

.login-page-section {
  min-height: 560px;
  display: grid;
  align-items: center;
  padding: 0 0 70px;
}

.auth-page-section {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 460px);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: 38px 0 84px;
}

.auth-page-intro {
  max-width: 470px;
  display: grid;
  gap: 18px;
}

.auth-kicker {
  margin: 0;
  color: var(--gold);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.auth-page-intro h1 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  font-style: italic;
  line-height: .9;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.auth-page-intro h1 span {
  color: var(--gold);
}

.auth-page-intro p {
  margin: 0;
  color: #efe7db;
  font-size: .96rem;
  line-height: 1.7;
}

.auth-feature-list {
  display: grid;
  gap: 10px;
}

.auth-feature-list span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #efe7db;
  font-size: .86rem;
  font-weight: 800;
}

.auth-feature-list i {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #5d3f12;
  border-radius: 50%;
  color: var(--gold);
  font-size: .72rem;
}

.login-panel {
  width: min(420px, 100%);
  display: grid;
  gap: 18px;
  justify-self: center;
  padding: 28px;
  border: 1px solid #3c2c23;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #17110fe8, #080808f5),
    radial-gradient(circle at 50% 0, #8e120b40, transparent 58%);
  box-shadow: 0 28px 80px #0000009c;
}

.auth-panel {
  justify-self: end;
}

.profile-panel {
  width: min(520px, 100%);
}

.login-heading {
  text-align: center;
}

.login-heading h1 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 3rem;
  font-style: italic;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.login-heading h1 span {
  color: var(--red);
}

.auth-panel-header {
  display: grid;
  gap: 6px;
}

.auth-panel-header h2 {
  margin: 0;
  color: #fff;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2.2rem;
  font-style: italic;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.auth-panel-copy {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.6;
}

.auth-form,
.auth-form-grid {
  display: grid;
  gap: 16px;
}

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

.full-span {
  grid-column: 1 / -1;
}

.login-panel label {
  display: grid;
  gap: 8px;
  color: #fff;
  font-size: .86rem;
  font-weight: 900;
}

.login-panel input[type="text"],
.login-panel input[type="password"],
.login-panel input[type="email"],
.login-panel input[type="number"],
.login-panel textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #45342b;
  border-radius: 5px;
  background: #080808;
  color: #efe7db;
  font: inherit;
  padding: 0 12px;
}

.login-panel textarea {
  min-height: 112px;
  padding: 12px;
  resize: vertical;
}

.login-panel input[type="text"]:focus,
.login-panel input[type="password"]:focus,
.login-panel input[type="email"]:focus,
.login-panel input[type="number"]:focus,
.login-panel textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
  border-color: var(--gold);
}

.field-help {
  margin: -2px 0 0;
  color: #ff7c74;
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.5;
}

.form-error {
  margin-top: 8px;
  color: #ffb8b3;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.5;
}

.login-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: .84rem;
}

.login-options .check-label {
  display: inline-flex;
  grid-auto-flow: column;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.login-options a,
.signup-copy a {
  color: var(--gold);
  font-weight: 900;
}

.auth-form-linkrow {
  display: flex;
  justify-content: flex-end;
  margin-top: -4px;
}

.auth-form-linkrow a {
  color: var(--gold);
  font-size: .84rem;
  font-weight: 900;
}

.login-submit {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
}

.forgot-panel {
  gap: 22px;
}

.forgot-panel .login-submit {
  margin-top: 2px;
}

.signup-page-section {
  align-items: start;
}

.signup-panel {
  width: min(460px, 100%);
  gap: 16px;
}

.signup-panel label small {
  margin-top: -2px;
  color: #ff3b36;
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.5;
}

.signup-panel .login-submit {
  margin-top: 2px;
}

.signup-copy {
  margin: 0;
  color: var(--muted);
  text-align: center;
  font-size: .86rem;
}

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

.auth-static-block {
  min-height: 88px;
  display: grid;
  gap: 6px;
  align-content: start;
  padding: 14px;
  border: 1px solid #3f2f1e;
  border-radius: 6px;
  background: linear-gradient(180deg, #121212, #080808);
}

.auth-static-label {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.auth-static-value {
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  line-height: 1.45;
  word-break: break-word;
}

.champions-list-section {
  margin-top: 34px;
  padding: 28px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background:
    linear-gradient(180deg, #070707f2, #0c0202f7),
    radial-gradient(circle at 50% 0, #72100d66, transparent 48%);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 20px;
  text-align: center;
}

.section-heading .eyebrow {
  margin-bottom: 4px;
  letter-spacing: .18em;
}

.section-heading h2 {
  margin-bottom: 8px;
}

.section-heading h1 {
  margin: 0 0 8px;
  text-align: center;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-style: italic;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.section-heading h1 span {
  color: var(--red);
}

.section-heading p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.archive-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 22px;
}

.archive-toolbar span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid #5d3f12;
  border-radius: 999px;
  background: #070707;
  color: #e8dfd0;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.archive-toolbar .active {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 16px #e31b1438;
}

.champion-event-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.champion-event-grid > .leaderboard-empty,
.winner-fish-grid > .leaderboard-empty {
  grid-column: 1 / -1;
}

.champion-event-card {
  overflow: hidden;
  border: 1px solid #4c3a22;
  border-radius: 8px;
  background: #111;
  box-shadow: 0 18px 40px #0000008c;
}

.champion-event-card a {
  text-decoration: none;
}

.champion-poster {
  display: block;
  aspect-ratio: 420 / 620;
  overflow: hidden;
  background: #050505;
}

.champion-poster img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .24s ease, filter .24s ease;
}

.champion-event-card:hover .champion-poster img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.06);
}

.champion-event-meta {
  min-height: 132px;
  padding: 14px;
  border-top: 1px solid #3a2419;
  background:
    linear-gradient(180deg, #17110f, #0b0b0b);
}

.champion-event-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-size: .68rem;
  font-weight: 900;
}

.champion-event-meta h3 {
  margin: 10px 0 6px;
  font-size: 1rem;
  text-transform: uppercase;
}

.champion-event-meta p {
  margin: 0 0 8px;
  color: #fff;
  font-size: .8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.champion-event-meta small {
  display: block;
  color: var(--muted);
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.champion-event-meta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-page {
  background:
    radial-gradient(circle at 50% 0, #6a090777 0 12%, transparent 42%),
    linear-gradient(180deg, #050505 0, #080101 55%, #000 100%);
}

.detail-main {
  padding: 34px 0 54px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.champion-detail-section {
  margin-top: 28px;
  padding: 28px;
  border: 1px solid #5a3f14;
  border-radius: 4px;
  background:
    linear-gradient(180deg, #070707, #0d0605),
    radial-gradient(circle at 50% 10%, #6b100c44, transparent 54%);
}

.detail-title {
  max-width: 760px;
  margin: 0 auto 20px;
  text-align: center;
}

.detail-title h1 {
  margin-bottom: 8px;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2rem, 4.3vw, 3.5rem);
  font-style: italic;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.detail-title h1 span {
  color: var(--red);
}

.detail-title p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.champion-summary {
  display: grid;
  grid-template-columns: 2.0fr 1.2fr;
  gap: 12px;
  margin-bottom: 22px;
}

.champion-summary div {
  min-height: 76px;
  padding: 14px 16px;
  border: 1px solid #4a2f12;
  background: #0b0b0b;
}

.champion-summary span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.champion-summary strong {
  display: block;
  color: #fff;
  font-size: .96rem;
  text-transform: uppercase;
}

.winner-fish-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.winner-fish-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #4a3a2c;
  border-radius: 8px;
  background: #101010;
  box-shadow: 0 18px 38px #0000008f;
}

.winner-photo {
  display: block;
  aspect-ratio: 360 / 430;
  background: #008ee9;
  overflow: hidden;
}

.winner-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.winner-caption {
  min-height: 162px;
  padding: 16px 14px 18px;
  text-align: center;
  background: linear-gradient(180deg, #16110f, #0c0c0c);
  border-top: 1px solid #3a2a20;
}

.winner-caption h2 {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 1.08rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.winner-caption p {
  margin: 0 0 6px;
  color: #e9dfd3;
  font-size: .84rem;
  line-height: 1.35;
}

.winner-caption p:last-child {
  margin-bottom: 0;
}

.leaderboard-page-section {
  padding: 28px;
  border: 1px solid #5a3f14;
  border-radius: 4px;
  background:
    linear-gradient(180deg, #070707, #0a0303),
    radial-gradient(circle at 50% 0, #7c110d55, transparent 52%);
}

.leaderboard-shell {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.leaderboard-shell > * {
  min-width: 0;
}

.announcement-banner {
  overflow: hidden;
  display: grid;
  gap: 0;
  margin-bottom: 22px;
  border: 1px solid #4f3514;
  border-radius: 8px;
  background: linear-gradient(180deg, #16110f, #0b0b0b);
  box-shadow: 0 18px 40px #0000008c;
}

.announcement-banner img {
  width: 100%;
  display: block;
}

.announcement-copy {
  padding: 18px 20px;
  color: #efe7db;
  line-height: 1.7;
}

.announcement-copy > *:first-child {
  margin-top: 0;
}

.announcement-copy > *:last-child {
  margin-bottom: 0;
}

.leaderboard-loader,
.leaderboard-empty {
  min-height: 74px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
  border: 1px solid #4f3514;
  border-radius: 8px;
  background: #0d0d0d;
  color: #efe7db;
  font-size: .88rem;
  font-weight: 800;
}

.leaderboard-loader i {
  color: var(--gold);
}

.rank-name-cell {
  text-align: left !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.leaderboard-empty-cell {
  color: var(--muted);
  text-align: center !important;
}

.ranking-panel-foot {
  padding: 12px 18px 18px;
  border-top: 1px solid #302219;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 800;
}

.prizes-page-section {
  padding: 28px;
  border: 1px solid #5a3f14;
  border-radius: 4px;
  background:
    linear-gradient(180deg, #070707, #0a0303),
    radial-gradient(circle at 50% 0, #7c110d55, transparent 52%);
}

.howto-page-section {
  padding: 28px;
  border: 1px solid #5a3f14;
  border-radius: 4px;
  background:
    linear-gradient(180deg, #070707, #0a0303),
    radial-gradient(circle at 50% 0, #7c110d55, transparent 52%);
}

.pdf-actions {
  display: flex;
  justify-content: center;
  margin: 22px 0;
}

.pdf-viewer {
  overflow: hidden;
  border: 1px solid #3f2f1e;
  border-radius: 8px;
  background: #101010;
  box-shadow: 0 18px 40px #0000008c;
}

.pdf-embed {
  position: relative;
  height: 0;
  padding-top: 56%;
  overflow: hidden;
  max-width: 100%;
}

.pdf-embed iframe,
.pdf-embed object,
.pdf-embed embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.pdf-embed .fluid-vids {
  position: initial !important;
}

.pdf-viewer object,
.pdf-viewer iframe {
  width: 100%;
  height: min(78vh, 980px);
  min-height: 720px;
  display: block;
  border: 0;
  background: #1b1b1b;
}

.auction-detail-shell {
  display: grid;
  gap: 24px;
}

.auction-detail-top {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
  gap: 24px;
  align-items: start;
}

.auction-detail-gallery-card,
.auction-detail-section {
  padding: 28px;
  border: 1px solid #5a3f14;
  border-radius: 4px;
  background:
    linear-gradient(180deg, #070707, #0a0303),
    radial-gradient(circle at 50% 0, #7c110d55, transparent 52%);
}

.auction-detail-copy {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.auction-detail-copy h1 {
  margin: 0;
  color: #fff;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-style: italic;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.auction-price-note,
.auction-login-link {
  margin: 0;
  color: #efe7db;
  font-size: .96rem;
  font-weight: 800;
}

.auction-price-note strong,
.auction-login-link {
  color: var(--gold);
}

.auction-login-link {
  display: inline-flex;
}

.auction-detail-swiper {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  border: 1px solid #3f2f1e;
  border-radius: 10px;
  background: linear-gradient(180deg, #131313, #090909);
  box-shadow: 0 18px 40px #0000008c;
  aspect-ratio: 4 / 5;
}

.auction-detail-swiper .swiper-wrapper {
  width: 100%;
  max-width: 100%;
  height: 100%;
  align-items: center;
}

.auction-detail-swiper .swiper-slide {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: flex;
}

.auction-detail-swiper .swiper-button-next,
.auction-detail-swiper .swiper-button-prev {
  display: none !important;
}

.auction-detail-slide {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: 14px;
}

.auction-detail-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.auction-bid-panel {
  position: sticky;
  top: calc(var(--header-height) + 18px);
}

.auction-bid-body {
  display: grid;
  gap: 20px;
  padding: 20px;
}

.auction-countdown {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid #4a3213;
  border-radius: 8px;
  background: linear-gradient(180deg, #1a120f, #0b0b0b);
}

.auction-countdown-label {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.auction-countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.auction-countdown-grid div {
  min-height: 88px;
  display: grid;
  place-items: center;
  padding: 10px 6px;
  border: 1px solid #35261d;
  border-radius: 6px;
  background: #121212;
  text-align: center;
}

.auction-countdown-grid strong {
  color: var(--red);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: .95;
}

.auction-countdown-grid span {
  color: var(--muted);
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.auction-status {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid #5b1f18;
  border-radius: 8px;
  background:
    linear-gradient(180deg, #1c0d0c, #0c0909),
    radial-gradient(circle at 50% 0, #a8171040, transparent 58%);
}

.auction-status span {
  color: #ffb894;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.auction-status strong {
  color: #fff2e8;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: .95;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.auction-status p {
  margin: 0;
  color: #e8d7cb;
  font-size: .84rem;
  line-height: 1.6;
}

.auction-time-grid {
  display: grid;
  gap: 12px;
}

.auction-time-grid div {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid #3f2f1e;
  border-radius: 8px;
  background: #111;
}

.auction-time-grid span {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.auction-time-grid strong {
  color: #fff;
  font-size: .9rem;
  line-height: 1.5;
}

.auction-bid-input-wrap {
  display: grid;
  gap: 10px;
}

.auction-bid-input-wrap label {
  color: #efe7db;
  font-size: .84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.auction-bid-input {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  border: 1px solid #4a3213;
  border-radius: 8px;
  overflow: hidden;
  background: #120f0e;
}

.auction-bid-input .btn-number {
  border: 0;
  background: #22130d;
  color: var(--gold);
  font-size: 1rem;
  cursor: pointer;
  transition: background .16s ease, color .16s ease;
}

.auction-bid-input .btn-number:hover {
  background: #34170f;
  color: #fff;
}

.auction-bid-input input {
  min-height: 56px;
  border: 0;
  border-left: 1px solid #3a2517;
  border-right: 1px solid #3a2517;
  border-radius: 0;
  background: #090909;
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
}

.auction-bid-submit {
  width: 100%;
  justify-content: center;
}

.auction-login-cta {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid #5d3f12;
  border-radius: 8px;
  background: #140a07;
  color: var(--gold);
  font-size: .84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.auction-detail-heading {
  margin-bottom: 24px;
}

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

.auction-spec-card {
  min-height: 72px;
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 16px;
  border: 1px solid #3f2f1e;
  border-radius: 8px;
  background: linear-gradient(180deg, #121212, #090909);
}

.auction-spec-card span {
  color: var(--gold);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.auction-spec-card strong {
  color: #fff;
  font-size: .92rem;
  line-height: 1.45;
}

.auction-spec-card.is-accent strong {
  color: #32df32;
}

.auction-detail-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.auction-history-panel {
  margin-bottom: 8px;
}

.auction-history-body {
  padding: 20px;
}

.auction-history-table {
  min-width: 0;
}

.auction-history-table th:first-child,
.auction-history-table td:first-child {
  text-align: left;
}

.auction-history-login {
  color: var(--gold);
  font-weight: 900;
}

.leaderboard-heading {
  margin-top: 28px;
}

.leaderboard-tables {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 24px;
}

.ranking-panel {
  overflow: hidden;
  border: 1px solid #3f2f1e;
  border-radius: 8px;
  background: #0d0d0d;
  box-shadow: 0 18px 40px #0000008c;
}

.ranking-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 66px;
  padding: 18px 20px;
  border-bottom: 1px solid #3a2517;
  background: linear-gradient(180deg, #17110f, #0e0e0e);
}

.ranking-panel-head h2 {
  margin: 0;
  color: #fff;
  font-size: .98rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ranking-panel-head span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold);
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ranking-table-wrap {
  overflow-x: auto;
}

.ranking-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  font-size: .8rem;
}

.ranking-table.is-compact {
  min-width: 0;
  table-layout: fixed;
  font-size: .76rem;
}

.ranking-table th,
.ranking-table td {
  padding: 12px 14px;
  border-bottom: 1px solid #2e2926;
  text-align: left;
}

.ranking-table.is-compact th,
.ranking-table.is-compact td {
  padding: 10px 8px;
}

.ranking-table th {
  color: var(--gold);
  background: #090909;
  font-weight: 900;
  text-transform: uppercase;
}

.ranking-table td {
  color: #eee7dc;
  font-weight: 800;
}

.ranking-table.is-compact col.col-rank {
  width: 68px;
}

.ranking-table.is-compact col.col-score {
  width: 84px;
}

.ranking-table.is-compact col.col-total {
  width: 74px;
}

.ranking-table th:not(:nth-child(2)),
.ranking-table td:not(:nth-child(2)) {
  text-align: center;
}

.ranking-table tr.rank-gold td {
  color: #120d05;
  background: var(--gold);
}

.ranking-table tr.rank-danger td {
  color: #fff;
  background: #ce2434;
}

.ranking-table tbody tr:not(.rank-gold):not(.rank-danger):hover td {
  background: #18120d;
}

.prize-tabs {
  width: 100%;
  max-width: 860px;
  margin: 24px auto 0;
  min-width: 0;
  border: 1px solid #3f2f1e;
  border-radius: 8px;
  background: #0d0d0d;
  box-shadow: 0 18px 40px #0000008c;
  overflow: hidden;
}

.prize-tab-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  padding: 18px 18px 0;
  background: linear-gradient(180deg, #17110f, #0e0e0e);
  border-bottom: 1px solid #3a2517;
}

.prize-tab-buttons button {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #efe7db;
  font: inherit;
  font-size: .82rem;
  font-weight: 900;
  cursor: pointer;
  transition: background .16s ease, color .16s ease, border-color .16s ease;
}

.prize-tab-buttons button.active {
  color: #120d05;
  background: var(--gold);
  border-radius: 4px 4px 0 0;
}

.prize-tab-buttons button:hover {
  color: var(--gold);
  border-bottom-color: var(--red);
  background: #220605;
}

.prize-panel {
  display: none;
  padding: 22px 22px 26px;
  min-width: 0;
}

.prize-panel.active {
  display: block;
}

.prize-panel h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: .95rem;
  letter-spacing: .04em;
  text-align: center;
  overflow-wrap: anywhere;
}

.prize-panel h2 span {
  color: var(--gold);
}

.prize-table {
  min-width: 680px;
}

.prize-table-wrap {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
}

.prize-breakdown-table {
  width: 100%;
  min-width: 680px;
  table-layout: fixed;
}

.prize-breakdown-table th {
  text-align: center !important;
}

.prize-breakdown-table td {
  text-align: center;
}

.prize-breakdown-table th,
.prize-breakdown-table td {
  white-space: nowrap;
}

.prize-breakdown-table col.col-title {
  width: 52%;
}

.prize-breakdown-table col.col-percent {
  width: 18%;
}

.prize-breakdown-table col.col-nominal {
  width: 30%;
}

.prize-title-cell {
  text-align: left !important;
  white-space: normal !important;
}

.prize-percent-cell {
  text-align: center !important;
  white-space: nowrap !important;
}

.prize-amount {
  text-align: right !important;
  white-space: nowrap !important;
}

.prize-breakdown-table .leaderboard-empty-cell {
  white-space: normal !important;
  line-height: 1.4;
  text-align: center !important;
}

.prize-breakdown-table tr.summary-row td {
  color: #fff;
  background: #68737b;
}

.prize-breakdown-table tr.summary-row td:first-child {
  text-align: left;
}

.ranking-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  padding: 16px 18px 18px;
  border-top: 1px solid #302219;
  background: #0a0a0a;
}

.ranking-pagination button,
.ranking-pagination span {
  min-width: 34px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #4f3514;
  border-radius: 4px;
  background: #101010;
  color: #efe7db;
  font-size: .78rem;
  font-weight: 900;
}

.ranking-pagination button {
  cursor: pointer;
  transition: transform .16s ease, border-color .16s ease, background .16s ease, color .16s ease;
}

.ranking-pagination button.active {
  border-color: var(--gold);
  background: var(--gold);
  color: #120d05;
}

.ranking-pagination button:not(:disabled):hover {
  border-color: var(--gold);
  background: #2b0806;
  color: var(--gold);
  transform: translateY(-1px);
}

.ranking-pagination button:not(:disabled):active {
  transform: translateY(1px) scale(.97);
}

.ranking-pagination button:disabled {
  cursor: not-allowed;
  opacity: .42;
}

.ranking-pagination span {
  border-color: transparent;
  background: transparent;
  color: var(--muted);
}

.bottom-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  margin-top: 20px;
  padding: 24px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  background: #050505;
}

.tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 8px;
}

.tabs button {
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid #322;
  background: transparent;
  color: #fff;
  font-size: .76rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .16s ease, border-color .16s ease;
}

.tabs button.active {
  color: var(--gold);
  border-bottom-color: var(--red);
}

.leaderboard-preview ol {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}

.leaderboard-preview li {
  display: grid;
  grid-template-columns: 36px 1fr 80px;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  border-bottom: 1px solid #3c2525;
  font-size: .86rem;
}

.leaderboard-preview li span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: #2e211b;
  color: var(--gold);
  font-weight: 900;
}
.leaderboard-preview li b { text-transform: uppercase; }
.leaderboard-preview li strong { text-align: right; }

.leaderboard-preview .preview-empty {
  grid-template-columns: 1fr;
  padding: 14px 0 0;
  border-bottom: 0;
}

.leaderboard-preview .preview-empty b {
  color: #efe7db;
  text-transform: none;
}

.champion-grid {
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.champion-grid article {
  min-height: 310px;
  padding: 16px;
  border: 1px solid #5b4034;
  background: radial-gradient(circle at 50% 70%, #432014 0 12%, #060606 56%);
  text-align: center;
}

.champion-grid h3 {
  margin: 0;
  color: var(--gold);
  font-size: .9rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.champion-grid p {
  margin: 4px 0 8px;
  font-size: .86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.champion-koi {
  width: 100%;
  height: 180px;
  display: block;
  margin: 10px 0 12px;
  object-fit: cover;
  object-position: center;
  border: 1px solid #3d2b20;
  background: #0b0b0b;
}

.champion-grid .champion-meta,
.champion-grid .champion-owner {
  margin: 4px 0;
  color: #efe7dd;
  font-size: .78rem;
  font-weight: 800;
  text-transform: none;
}

.site-footer {
  margin-top: 28px;
  border-top: 1px solid #2b0707;
  padding: 12px 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 220px 1fr 180px;
  align-items: center;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
  text-align: center;
  color: #d8d2c8;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .36em;
  text-transform: uppercase;
}

.footer-inner strong {
  color: #fff;
  font-size: 1rem;
  letter-spacing: .42em;
}

.socials {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 18px;
  color: #d8d2c8;
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
}
.socials a {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #4a1710;
  border-radius: 4px;
  background: #100606;
  color: var(--red);
  font-size: 1.16rem;
  transition: transform .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease;
}

.socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 18px #e31b1455;
  transform: translateY(-2px);
}

.socials a:active {
  transform: translateY(1px) scale(.96);
}

@media (max-width: 980px) {
  :root {
    --summary-height: 118px;
    --header-height: 96px;
  }

  .header-inner {
    grid-template-columns: 150px 42px;
    justify-content: space-between;
  }
  .nav-toggle { display: inline-flex; justify-self: end; }
  .btn-login { display: none; }
  .account-menu {
    display: none;
  }
  .main-nav {
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 10px 0 8px;
    border-top: 1px solid #401006;
  }
  .site-header.nav-open .main-nav { display: flex; }
  .site-header.nav-open .btn-login {
    grid-column: 1 / -1;
    display: inline-flex;
    width: 100%;
    height: 44px;
    margin: 0 0 14px;
  }
  .main-nav a {
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid #210505;
    font-size: .78rem;
  }
  .main-nav a.active::after,
  .main-nav a:hover::after { bottom: 7px; right: auto; width: 34px; }
  .nav-mobile-only {
    display: inline-flex;
  }
  .summary-strip {
    flex-direction: column;
    gap: 9px;
  }
  .title-strip {
    padding-top: 18px;
    padding-bottom: 2px;
  }

  .title-strip img {
    width: min(440px, 100%);
  }
  .hero-grid,
  .fighter-panel,
  .bottom-panel,
  .auction-detail-top,
  .leaderboard-tables,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .hero-stage,
  .hero-grid,
  .hero-visual { min-height: auto; }
  .hero-visual {
    height: 520px;
    margin-top: 22px;
    order: -1;
    padding-top: 0;
  }
  .hero-slider {
    inset: 0;
    height: 520px;
  }
  .hero-slider img {
    object-position: center;
  }
  .slider-control {
    width: 40px;
    height: 40px;
  }
  .slider-control-prev { left: 4px; }
  .slider-control-next { right: 4px; }
  .hero-copy { padding: 28px 0 36px; }
  .video-section { margin-top: 22px; margin-bottom: 28px; }
  .fighter-panel { margin-top: 10px; padding: 24px; background-position: right bottom; }
  .dealer-grid,
  .auction-dealer-grid,
  .champion-event-grid,
  .winner-fish-grid { grid-template-columns: repeat(3, 1fr); }
  .auction-filter-panel { grid-template-columns: repeat(2, 1fr); }
  .auction-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .champion-summary { grid-template-columns: 1fr; }
  .auction-bid-panel {
    position: static;
  }
  .auction-detail-top {
    gap: 18px;
  }
  .auction-detail-copy {
    margin-bottom: 14px;
  }
  .auction-detail-swiper {
    aspect-ratio: 1 / 1.3;
  }
  .auction-detail-slide {
    padding: 10px;
  }
  .auction-detail-swiper.is-native-gallery {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .auction-detail-swiper.is-native-gallery::-webkit-scrollbar {
    display: none;
  }
  .auction-detail-swiper.is-native-gallery .swiper-wrapper {
    display: flex;
    width: auto !important;
    height: 100%;
    transform: none !important;
  }
  .auction-detail-swiper.is-native-gallery .swiper-slide {
    flex: 0 0 100%;
    width: 100% !important;
    height: 100%;
    scroll-snap-align: start;
  }
  .auction-detail-swiper.is-native-gallery .swiper-pagination {
    display: none;
  }
  .auction-detail-swiper.is-native-gallery .swiper-button-next,
  .auction-detail-swiper.is-native-gallery .swiper-button-prev {
    display: none;
  }
  .auction-spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footer-inner p,
  .socials { text-align: left; justify-content: flex-start; }
}

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
  }

  .header-inner { min-height: 68px; padding: 8px 0; }
  .brand-img { width: 172px; }
  .title-strip::after {
    width: min(260px, 72%);
  }
  .auction-detail-copy h1 {
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }
  .auction-detail-swiper {
    aspect-ratio: 1 / 1.34;
  }
  .auction-detail-slide {
    padding: 8px;
  }
  .auction-bid-body,
  .auction-history-body {
    padding: 16px;
  }
  .hero-visual,
  .hero-slider { height: 480px; }
  .hero-visual { margin-top: 26px; }
  .hero-copy { padding: 14px 0 34px; }
  .hero-copy h1 { display: none; }
  .auction-card { width: 100%; }
  .countdown { gap: 8px; }
  .countdown:not(.is-live) > div { width: 62px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .dealers-section {
    padding-bottom: 34px;
  }
  .dealer-grid {
    margin-bottom: 22px;
  }
  .dealer-grid,
  .champion-event-grid,
  .winner-fish-grid,
  .champion-grid { grid-template-columns: repeat(2, 1fr); }
  .auction-dealer-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 8px;
  }
  .auction-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .auction-countdown-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .auction-spec-grid { grid-template-columns: 1fr 1fr; }
  .auction-page-section { padding-bottom: 36px; }
  .auction-dealer-card {
    min-height: 92px;
    gap: 6px;
    padding: 8px 4px 10px;
  }
  .auction-dealer-card img {
    width: min(100%, 58px);
    height: auto;
    max-height: 50px;
    padding: 0;
  }
  .auction-dealer-card strong {
    min-height: 0;
    font-size: .5rem;
    line-height: 1.15;
  }
  .group-filter-buttons {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin: 22px 0 20px;
  }
  .group-filter-buttons button {
    min-height: 38px;
    padding: 0 8px;
    font-size: .68rem;
    text-align: center;
    white-space: nowrap;
  }
  .auction-filter-panel { grid-template-columns: 1fr; }
  .auction-filter-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }
  .auction-filter-actions .btn-primary,
  .auction-filter-actions .btn-outline {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }
  .login-page-section {
    min-height: auto;
    padding: 16px;
  }
  .auth-page-section {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 22px 16px 54px;
  }
  .auth-page-intro {
    max-width: none;
    gap: 14px;
  }
  .login-panel {
    padding: 22px;
  }
  .auth-panel {
    justify-self: stretch;
  }
  .auth-form-grid,
  .auth-static-grid {
    grid-template-columns: 1fr;
  }
  .login-options {
    align-items: flex-start;
    flex-direction: column;
  }
  .champions-list-section,
  .champion-detail-section,
  .auction-detail-gallery-card,
  .auction-detail-section,
  .auction-page-section,
  .login-page-section,
  .leaderboard-page-section,
  .prizes-page-section,
  .howto-page-section { padding: 16px; }
  .ranking-panel-head {
    min-height: 0;
    padding: 16px 14px;
    gap: 12px;
  }
  .ranking-panel-head h2 {
    font-size: .88rem;
    letter-spacing: .08em;
  }
  .ranking-panel-head span {
    padding: 0 8px;
    font-size: .62rem;
  }
  .ranking-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .ranking-table.is-compact {
    width: max-content;
    min-width: 620px;
    table-layout: fixed;
    font-size: .64rem;
  }
  .ranking-table.is-compact th,
  .ranking-table.is-compact td {
    padding: 9px 8px;
    white-space: nowrap;
  }
  .ranking-table.is-compact col.col-rank {
    width: 60px;
  }
  .ranking-table.is-compact col.col-name {
    width: 180px;
  }
  .ranking-table.is-compact col.col-score {
    width: 78px;
  }
  .ranking-table.is-compact col.col-total {
    width: 84px;
  }
  .pdf-embed { padding-top: 70%; }
  .pdf-viewer object,
  .pdf-viewer iframe { min-height: 560px; }
  .ranking-pagination { justify-content: center; }
  .bottom-panel {
    clear: both;
    margin-top: 30px;
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .ranking-table td {
    font-weight: 400;
  }
  .ranking-panel-head {
    padding: 14px 12px;
    gap: 10px;
  }
  .ranking-panel-head h2 {
    font-size: .8rem;
    letter-spacing: .07em;
  }
  .ranking-panel-head span {
    min-height: 24px;
    font-size: .56rem;
  }
  .ranking-table.is-compact {
    min-width: 600px;
    font-size: .58rem;
  }
  .ranking-table.is-compact th,
  .ranking-table.is-compact td {
    padding: 8px 7px;
  }
  .ranking-table.is-compact col.col-rank {
    width: 56px;
  }
  .ranking-table.is-compact col.col-name {
    width: 168px;
  }
  .ranking-table.is-compact col.col-score {
    width: 74px;
  }
  .ranking-table.is-compact col.col-total {
    width: 80px;
  }
  .prize-breakdown-table {
    width: 100%;
    min-width: 0;
    font-size: .58rem;
  }
  .prize-breakdown-table th,
  .prize-breakdown-table td {
    padding: 8px 4px;
    white-space: normal;
  }
  .prize-breakdown-table col.col-title {
    width: 50%;
  }
  .prize-breakdown-table col.col-percent {
    width: 16%;
  }
  .prize-breakdown-table col.col-nominal {
    width: 34%;
  }
  .prize-title-cell,
  .prize-breakdown-table .leaderboard-empty-cell {
    white-space: normal !important;
    overflow-wrap: anywhere;
  }
  .prize-amount {
    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .pdf-embed { padding-top: 100%; }
  .auction-page-section.container {
    width: min(1120px, 96vw);
  }
  .auction-countdown-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 6px; }
  .auction-spec-grid { grid-template-columns: 1fr; }
  .auction-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .auction-product-body {
    padding: 12px 9px 2px;
  }
  .auction-product-head {
    min-height: 36px;
  }
  .auction-product-eyebrow {
    font-size: .68rem;
  }
  .auction-product-head h3 {
    font-size: 1.5rem;
    letter-spacing: .05em;
  }
  .auction-dealer-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
  }
  .auction-dealer-card {
    min-height: 86px;
    gap: 5px;
    padding: 8px 3px 9px;
  }
  .auction-dealer-card img {
    width: min(100%, 52px);
    height: auto;
    max-height: 44px;
  }
  .auction-dealer-card strong {
    min-height: 0;
    font-size: .48rem;
    line-height: 1.1;
  }
  .auction-product-media {
    aspect-ratio: 3 / 5;
  }
  .auction-detail-top {
    gap: 14px;
  }
  .auction-detail-copy {
    gap: 8px;
  }
  .auction-product-status {
    gap: 6px;
  }
  .auction-product-status-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 4px;
  }
  .auction-product-price,
  .auction-product-login {
    display: block;
    min-width: 0;
    min-height: 1.8em;
    font-size: .78rem;
    line-height: 1.25;
  }
  .auction-product-price strong,
  .auction-product-login {
    margin-top: 0;
  }
  .auction-product-countdown-title {
    align-self: start;
    justify-self: start;
    text-align: left;
    white-space: nowrap;
  }
  .auction-product-countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }
  .auction-product-countdown-grid div {
    min-height: 42px;
    padding: 4px 2px;
  }
  .auction-product-countdown-grid strong {
    font-size: 1.2rem;
  }
  .auction-product-countdown-grid span {
    font-size: .42rem;
    line-height: 1;
  }
  .auction-product-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 8px;
  }
  .auction-product-specs dd {
    font-size: .77rem;
  }
  .auction-product-spec-item {
    grid-column: 1 / -1;
  }
  .auction-product-spec-item dd {
    min-height: 2em;
    line-height: 1.35;
  }
  .auction-product-spec-item.is-half-mobile {
    grid-column: auto;
  }
  .auction-product-spec-item.is-half-mobile dd,
  .auction-product-spec-item.is-note dd {
    min-height: 1.35em;
  }
  .auction-detail-swiper {
    aspect-ratio: 1 / 1.42;
  }
  .auction-detail-slide {
    padding: 6px;
  }
  .auction-countdown-grid div {
    min-height: 64px;
    padding: 8px 3px;
  }
  .auction-countdown-grid strong {
    font-size: 2.0rem;
  }
  .auction-countdown-grid span {
    font-size: .56rem;
  }
  .prize-tabs {
    max-width: 100%;
  }
  .prize-tab-buttons {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
    padding: 14px 14px 10px;
    overflow-x: visible;
  }
  .prize-tab-buttons button {
    flex: 1 1 140px;
    padding: 10px 12px;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }
  .prize-panel {
    padding: 18px 6px 22px;
    overflow-x: visible;
  }
  .prize-panel h2 {
    font-size: .86rem;
    line-height: 1.45;
  }
}
