:root {
  --black: #050505;
  --ink: #0d0d0d;
  --line: rgba(255, 255, 255, 0.18);
  --white: #f8f8ef;
  --muted: #b9b9b0;
  --pink: #ff176d;
  --yellow: #f3ed00;
  --cyan: #00c9f2;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.34) 18%, rgba(0, 0, 0, 0.12) 36%, rgba(0, 0, 0, 0.12) 64%, rgba(0, 0, 0, 0.34) 82%, rgba(0, 0, 0, 0.52) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.34)),
    url("assets/background-sides-bg.jpg?v=1") center top / cover fixed no-repeat,
    #030303;
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, system-ui, sans-serif;
  letter-spacing: 0;
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
}

body::before {
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0 26rem, rgba(0, 0, 0, 0.02) 45rem),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 4px);
  opacity: 0.48;
}

body::after {
  z-index: -1;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.12) 0 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.26), transparent 24%, transparent 76%, rgba(0,0,0,0.26));
  background-size: 13px 13px, 100% 100%;
  mix-blend-mode: screen;
  opacity: 0.14;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-shell {
  position: relative;
  width: min(100%, 640px);
  min-height: 100vh;
  margin: 0 auto;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.08), transparent 2%, transparent 98%, rgba(255,255,255,0.08)),
    rgba(5, 5, 5, 0.88);
  box-shadow: 0 0 42px rgba(0, 0, 0, 0.9);
}

.site-shell::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, transparent 0 18%, rgba(255, 23, 109, 0.13) 18% 18.6%, transparent 18.6%),
    linear-gradient(26deg, transparent 0 74%, rgba(0, 201, 242, 0.12) 74% 74.8%, transparent 74.8%);
  content: "";
}

.topbar {
  position: absolute;
  top: 0;
  z-index: 40;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 900;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,0.6));
}

.brand-logo {
  width: min(50vw, 250px);
  height: auto;
}

.language-switch {
  position: fixed;
  top: 26px;
  right: max(70px, calc((100vw - 640px) / 2 + 70px));
  z-index: 62;
  display: inline-flex;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.34);
  background: rgba(0,0,0,0.58);
  color: var(--white);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 12px;
  line-height: 1;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.7);
}

.language-switch a,
.language-switch span {
  display: inline-grid;
  min-width: 30px;
  min-height: 24px;
  place-items: center;
  padding: 0 7px;
}

.language-switch span {
  background: var(--yellow);
  color: #050505;
}

.menu-button {
  position: fixed;
  top: 18px;
  right: max(18px, calc((100vw - 640px) / 2 + 18px));
  z-index: 62;
  display: grid;
  width: 44px;
  height: 44px;
  place-content: center;
  gap: 5px;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 25px;
  height: 3px;
  background: currentColor;
  box-shadow: 2px 2px 0 #111;
  transform-origin: center;
  transition: transform 220ms ease, opacity 160ms ease, box-shadow 220ms ease;
}

.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 58px;
  padding: 96px 34px 74px;
  border: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.52), rgba(0,0,0,0.24) 48%, rgba(0,0,0,0.5)),
    linear-gradient(180deg, rgba(0,0,0,0.18), rgba(0,0,0,0.42)),
    url("assets/background-sides-bg.jpg?v=1") center top / cover no-repeat,
    rgba(5, 5, 5, 0.98);
  opacity: 0;
  pointer-events: none;
  transform: scaleX(0.02);
  transform-origin: right center;
  transition: opacity 180ms ease, transform 420ms cubic-bezier(.2,.9,.16,1), filter 520ms cubic-bezier(.2,.9,.16,1);
  overflow: hidden;
}

.menu-panel::before {
  content: none;
}

.topbar.menu-open .menu-panel {
  opacity: 1;
  pointer-events: auto;
  transform: scaleX(1);
  filter: saturate(1.08) contrast(1.08);
}

.menu-links {
  display: grid;
  width: min(100%, 390px);
}

.menu-panel .menu-links a,
.menu-panel .menu-links span {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 92px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.17);
  padding: 0 38px 0 30px;
  color: var(--white);
  background: transparent;
  font-size: clamp(26px, 6vw, 34px);
  font-weight: 900;
  line-height: 1.1;
  text-align: left;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 360ms cubic-bezier(.2,.9,.16,1);
}

.menu-panel .menu-links a::before,
.menu-panel .menu-links span::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 5px;
  background: var(--menu-accent, var(--pink));
  content: "";
}

.menu-panel .menu-links a::after,
.menu-panel .menu-links span::after {
  position: absolute;
  right: 10px;
  color: var(--menu-accent, var(--pink));
  font-size: 44px;
  line-height: 1;
  content: "›";
}

.menu-panel .menu-links small {
  margin-left: auto;
  color: var(--muted);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 14px;
  white-space: nowrap;
}

.menu-panel .menu-links .is-disabled {
  color: var(--muted);
  cursor: not-allowed;
  opacity: 0.45;
}

.menu-panel .menu-links .is-disabled::after {
  content: none;
}

.menu-link-news,
.menu-link-ticket {
  --menu-accent: var(--pink);
}

.menu-link-ranking {
  --menu-accent: var(--yellow);
}

.menu-link-fighters {
  --menu-accent: var(--cyan);
}

.topbar.menu-open .menu-panel .menu-links a,
.topbar.menu-open .menu-panel .menu-links span,
.topbar.menu-open .menu-socials a {
  opacity: 1;
  transform: translateY(0);
}

.topbar.menu-open .menu-links a:nth-child(1) { transition-delay: 170ms; }
.topbar.menu-open .menu-links a:nth-child(2) { transition-delay: 230ms; }
.topbar.menu-open .menu-links a:nth-child(3) { transition-delay: 290ms; }
.topbar.menu-open .menu-links a:nth-child(4) { transition-delay: 350ms; }
.topbar.menu-open .menu-links span:nth-child(1) { transition-delay: 170ms; }
.topbar.menu-open .menu-links span:nth-child(2) { transition-delay: 230ms; }
.topbar.menu-open .menu-links span:nth-child(3) { transition-delay: 290ms; }
.topbar.menu-open .menu-links span:nth-child(4) { transition-delay: 350ms; }

.topbar.menu-open .menu-button {
  color: var(--white);
}

.topbar.menu-open .menu-button span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.topbar.menu-open .menu-button span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.topbar.menu-open .menu-button span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.menu-socials {
  display: flex;
  gap: 26px;
}

.menu-socials a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  color: #050505;
  background: var(--white);
  font-size: 24px;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 360ms cubic-bezier(.2,.9,.16,1);
}

.topbar.menu-open .menu-socials a:nth-child(1) { transition-delay: 410ms; }
.topbar.menu-open .menu-socials a:nth-child(2) { transition-delay: 450ms; }
.topbar.menu-open .menu-socials a:nth-child(3) { transition-delay: 490ms; }
.topbar.menu-open .menu-socials a:nth-child(4) { transition-delay: 530ms; }

.menu-panel .menu-links a:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.17);
}

@media (max-height: 720px) {
  .menu-panel {
    gap: 34px;
    padding-block: 78px 48px;
  }

  .menu-panel .menu-links a {
    min-height: 78px;
  }
}

.hero {
  position: relative;
  aspect-ratio: 1200 / 1750;
  min-height: 0;
  isolation: isolate;
}

.hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: center top;
  filter: saturate(1.04) contrast(1.05);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.04) 48%, rgba(0,0,0,0.18) 67%, rgba(0,0,0,0.8) 88%, #050505),
    radial-gradient(circle at 52% 43%, transparent 0 34%, rgba(0,0,0,0.22) 68%);
  content: "";
}

.hero-copy {
  position: absolute;
  inset: 0;
  display: block;
  padding: 0 24px;
  text-align: center;
}

.kicker {
  margin: 0 0 8px;
  font-size: clamp(22px, 6vw, 38px);
  font-weight: 900;
  font-style: italic;
  text-shadow: 3px 3px 0 #000;
  transform: rotate(-4deg);
}

.hero-logo-slot {
  width: min(70%, 390px);
  margin-bottom: 18px;
  filter: drop-shadow(0 8px 5px rgba(0,0,0,0.72));
}

.hero-logo-slot img {
  position: static;
  inset: auto;
  z-index: auto;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  filter: none;
}

h1 {
  margin: 0;
  color: var(--pink);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(76px, 19vw, 138px);
  line-height: 0.78;
  text-shadow:
    5px 5px 0 #050505,
    -4px 4px 0 var(--yellow),
    0 0 22px rgba(255, 23, 109, 0.36);
}

.event-name {
  display: inline-block;
  margin: 14px 0 0;
  padding: 2px 12px;
  color: #001117;
  background: var(--cyan);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(22px, 5vw, 34px);
  line-height: 1;
  transform: rotate(-2deg);
}

.event-logo {
  position: absolute;
  top: 83%;
  left: 50%;
  width: 90%;
  filter: drop-shadow(0 10px 7px rgba(0,0,0,0.74));
  transform: translate(-50%, -50%);
}

.event-logo img {
  display: block;
  width: 100%;
  height: auto;
  animation: logo-shiver 740ms steps(2, end) infinite;
  transform-origin: center;
}

@keyframes logo-shiver {
  0% { transform: translate(0, 0) rotate(0deg); }
  12% { transform: translate(1px, -1px) rotate(-0.12deg); }
  24% { transform: translate(-1px, 1px) rotate(0.1deg); }
  36% { transform: translate(2px, 0) rotate(-0.08deg); }
  48% { transform: translate(-2px, -1px) rotate(0.12deg); }
  60% { transform: translate(1px, 1px) rotate(0deg); }
  72% { transform: translate(-1px, 0) rotate(-0.1deg); }
  84% { transform: translate(0, 1px) rotate(0.08deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

.event-date {
  position: absolute;
  top: 95.5%;
  left: 50%;
  width: calc(100% - 48px);
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(26px, 6vw, 40px);
  line-height: 0.9;
  text-shadow: 3px 3px 0 #000;
  transform: translateX(-50%);
}

.event-venue {
  margin: 8px 0 20px;
  font-size: 15px;
  font-weight: 900;
}

.hero-actions {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  gap: 12px;
}

.ticket-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-action-section {
  position: relative;
  z-index: 2;
  padding: 18px 24px 24px;
  background: #050505;
}

.button {
  --brush-image: url("assets/ui/brush-pink.png?v=1");
  position: relative;
  isolation: isolate;
  border: 0;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 11px 16px 13px;
  color: #050505;
  font: inherit;
  font-weight: 900;
  background: transparent;
  cursor: pointer;
}

.button::before {
  position: absolute;
  inset: -7px -9px;
  z-index: -1;
  background: var(--brush-image) center / 100% 100% no-repeat;
  content: "";
  filter: drop-shadow(0 4px 0 rgba(0, 0, 0, 0.22));
}

.button:disabled {
  cursor: default;
  opacity: 1;
}

.button-pink {
  --brush-image: url("assets/ui/brush-pink.png?v=1");
}

.button-yellow {
  --brush-image: url("assets/ui/brush-yellow.png?v=1");
}

.button-gray {
  --brush-image: url("assets/ui/brush-gray.png?v=1");
  color: #202020;
}

.button.is-disabled {
  pointer-events: none;
  cursor: not-allowed;
  filter: grayscale(0.65);
  opacity: 0.55;
}

.content-section {
  position: relative;
  z-index: 1;
  padding: 22px 24px;
}

.page-main {
  padding-top: 78px;
}

.video-section {
  padding-top: 8px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,255,255,0.22);
  background: #080808;
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.retirement-section {
  padding-top: 8px;
}

.retirement-card {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: clamp(330px, 46vw, 390px);
  grid-template-columns: minmax(0, 60%) minmax(0, 40%);
  gap: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-image: linear-gradient(110deg, var(--cyan), var(--pink) 72%) 1;
  padding: clamp(18px, 3.4vw, 28px);
  background:
    linear-gradient(100deg, rgba(0, 0, 0, 0.98) 0 56%, rgba(0, 0, 0, 0.78) 56% 58%, rgba(255, 23, 109, 0.2) 58% 59%, rgba(0, 0, 0, 0.36) 59%),
    radial-gradient(circle at 76% 36%, rgba(255, 23, 109, 0.34), transparent 30%),
    url("assets/background-sides-bg.jpg?v=1") center / cover no-repeat,
    #050505;
  box-shadow:
    inset 0 0 0 1px rgba(0, 201, 242, 0.55),
    0 12px 30px rgba(0,0,0,0.45);
}

.retirement-card::before {
  content: none;
}

.retirement-card::after {
  position: absolute;
  inset: 0 0 0 46%;
  z-index: 0;
  background:
    radial-gradient(circle at 60% 28%, rgba(255, 23, 109, 0.34), transparent 22%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.08) 46%, rgba(0, 0, 0, 0.66));
  content: "";
}

.retirement-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding-right: clamp(26px, 4.5vw, 40px);
}

.retirement-date {
  margin: 0 0 18px;
  border-bottom: 1px solid rgba(0, 201, 242, 0.8);
  padding-bottom: 10px;
  color: var(--cyan);
  font-family: inherit;
  font-size: clamp(18px, 3.5vw, 23px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.retirement-date span {
  font: inherit;
  font-size: 0.74em;
}

.retirement-card h2 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(22px, 3.6vw, 27px);
  font-weight: 900;
  line-height: 1.16;
  text-shadow:
    4px 4px 0 #050505,
    0 0 18px rgba(255,255,255,0.18);
}

.retirement-card h2::first-line {
  color: var(--white);
}

.retirement-card blockquote {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 100%;
  margin: 0 0 20px;
  padding: 13px 28px 13px 34px;
  clip-path: none;
  color: #050505;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(242,242,235,0.96)),
    #f6f3eb;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(11px, 2.1vw, 13px);
  font-weight: 900;
  line-height: 1.65;
  box-shadow: 0 2px 0 var(--pink);
}

.retirement-card blockquote::before,
.retirement-card blockquote::after {
  position: absolute;
  color: var(--pink);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 30px;
  line-height: 1;
}

.retirement-card blockquote::before {
  top: 10px;
  left: 14px;
  content: "\"";
}

.retirement-card blockquote::after {
  right: 14px;
  bottom: 2px;
  content: "\"";
}

.retirement-button {
  position: relative;
  display: inline-flex;
  min-width: min(100%, 300px);
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 62px 0 44px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.18), transparent 50%),
    var(--pink);
  font-size: clamp(16px, 3vw, 18px);
  font-weight: 900;
  box-shadow:
    0 0 18px rgba(255, 23, 109, 0.45),
    inset 0 0 0 1px rgba(255,255,255,0.15);
  clip-path: polygon(0 0, 96% 0, 100% 18%, 100% 100%, 4% 100%, 0 82%);
}

.retirement-button::after {
  position: absolute;
  right: 26px;
  content: "›";
  font-size: 30px;
  line-height: 1;
}

.retirement-card img {
  position: absolute;
  top: 0;
  right: -7%;
  bottom: 0;
  z-index: 1;
  width: 46%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: 42% top;
  filter: none;
  mix-blend-mode: normal;
}

.section-title {
  --brush-image: url("assets/ui/brush-pink.png?v=1");
  position: relative;
  z-index: 0;
  isolation: isolate;
  margin: 0 0 14px;
  padding: 10px 20px 14px;
  color: #050505;
  font-size: clamp(24px, 6vw, 36px);
  font-weight: 900;
  line-height: 1;
  background: transparent;
  text-shadow: none;
}

.news-page-section .section-title {
  display: inline-block;
}

.section-title::before {
  position: absolute;
  inset: -10px -18px -12px -12px;
  z-index: -1;
  background: var(--brush-image) center / 100% 100% no-repeat;
  content: "";
}

.section-title::after {
  content: none;
}

.section-title.pink {
  --brush-image: url("assets/ui/brush-pink.png?v=1");
}

.section-title.yellow {
  --brush-image: url("assets/ui/brush-yellow.png?v=1");
}

.section-title.cyan {
  --brush-image: url("assets/ui/brush-cyan.png?v=1");
}

.news-list {
  border-top: 1px solid var(--line);
}

.news-empty {
  margin: 0;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.news-item {
  position: relative;
  display: grid;
  min-height: 86px;
  grid-template-columns: 126px 1fr 18px;
  gap: 14px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 9px 0;
}

.news-item img {
  grid-column: 1;
  grid-row: 1 / 3;
  width: 126px;
  height: 66px;
  object-fit: cover;
  object-position: center 18%;
}

.news-meta {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  display: block;
  min-width: 0;
  margin-bottom: 4px;
  color: var(--muted);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 16px;
}

.news-title {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  display: -webkit-box;
  min-width: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  overflow-wrap: anywhere;
}

.arrow {
  grid-column: 3;
  grid-row: 1 / 3;
  align-self: center;
  color: var(--white);
  font-size: 32px;
  line-height: 1;
}

.text-link {
  display: block;
  margin-top: 12px;
  text-align: right;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}

.text-link::after {
  margin-left: 8px;
  content: "›";
}

.news-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.news-pagination a {
  display: grid;
  min-width: 38px;
  min-height: 38px;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--white);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 18px;
  line-height: 1;
}

.news-pagination a.active {
  border-color: var(--pink);
  background: var(--pink);
  color: #050505;
}

.standings-list {
  display: grid;
  gap: 14px;
}

.standings-block h3 {
  margin: 0 0 8px;
  padding: 8px 12px;
  color: #050505;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 24px;
  line-height: 1;
  text-align: center;
}

.standings-block-a h3 {
  background: var(--pink);
}

.standings-block-b h3 {
  background: var(--cyan);
}

.standings-image-slot {
  display: grid;
  min-height: 260px;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.24);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.08), transparent 42%),
    #080808;
}

.standings-image-slot span {
  color: var(--muted);
  font-size: 18px;
  font-weight: 900;
}

.roster-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}

.roster-block {
  min-width: 0;
}

.roster-block h3 {
  margin: 0 0 8px;
  padding: 8px 10px;
  color: #050505;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 22px;
  line-height: 1;
  text-align: center;
}

.roster-block-a h3 {
  background: var(--pink);
}

.roster-block-b h3 {
  background: var(--cyan);
}

.fighter-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 20px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

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

.fighter-card {
  min-width: 0;
  border: 1px solid rgba(255,255,255,0.18);
  background: #0a0a0a;
}

.fighter-card-link {
  display: block;
}

.fighter-card-placeholder {
  background: #000;
}

.roster-block-a .fighter-card {
  border-color: var(--pink);
}

.roster-block-b .fighter-card {
  border-color: var(--cyan);
}

.fighter-card img,
.fighter-image-placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1.08;
}

.fighter-card img {
  object-fit: cover;
}

.fighter-card:nth-child(1) img { object-position: 18% 19%; }
.fighter-card:nth-child(2) img { object-position: 43% 18%; }
.fighter-card:nth-child(3) img { object-position: 62% 18%; }
.fighter-card:nth-child(4) img { object-position: 82% 19%; }

.fighter-card-placeholder img {
  visibility: hidden;
  filter: none;
}

.fighter-image-placeholder {
  background: #000;
}

.fighter-card h3,
.fighter-card h4,
.fighter-card p {
  margin: 0;
  padding: 0 8px;
}

.fighter-card h4 {
  padding-top: 8px;
  font-size: 12px;
  line-height: 1.25;
}

.fighter-card p {
  padding-bottom: 9px;
  color: var(--muted);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 12px;
}

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

.ticket-card {
  min-width: 0;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 13px 10px 14px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), transparent),
    #080808;
  text-align: center;
}

.ticket-card-main {
  min-width: 0;
}

.ticket-world-card {
  grid-column: span 2;
  display: grid;
  min-width: 0;
  min-height: 260px;
  align-content: center;
  justify-items: center;
  gap: 4px;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 18px;
  background:
    radial-gradient(circle at 86% 18%, rgba(243, 237, 0, 0.18), transparent 18%),
    linear-gradient(145deg, rgba(255,255,255,0.08), transparent),
    #080808;
  text-align: center;
}

.world-kicker {
  margin: 0;
  color: var(--white);
  font-size: 18px;
  font-weight: 900;
}

.world-logo {
  width: 100%;
}

.world-logo img {
  width: min(100%, 420px);
  height: auto;
  margin: 0 auto;
}

.world-copy {
  margin: 0 0 8px;
  color: var(--white);
  background: transparent;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  text-shadow: 3px 3px 0 rgba(0,0,0,0.55);
}

.world-button {
  width: min(100%, 420px);
  color: #050505;
  font-size: 24px;
}

.world-button::after {
  margin-left: 12px;
  content: "▶";
}

.ticket-card-opening .ticket-date {
  white-space: nowrap;
}

.ticket-card-opening .ticket-date span {
  color: var(--yellow);
}

.ticket-card-opening .ticket-time {
  white-space: nowrap;
}

.ticket-date {
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(32px, 7.8vw, 48px);
  line-height: 0.9;
}

.ticket-date span,
.ticket-time,
.ticket-area {
  color: var(--yellow);
  font-size: 16px;
}

.ticket-area {
  display: inline-block;
  margin: 4px 0 0;
  padding: 1px 9px 2px;
  color: #050505;
  background: var(--cyan);
  font-weight: 900;
  line-height: 1.2;
}

.ticket-time {
  margin: 4px 0 8px;
  font-family: inherit;
  font-weight: 900;
  letter-spacing: 0;
}

.ticket-card h3 {
  display: grid;
  min-height: 44px;
  align-items: center;
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.28;
}

.ticket-actions {
  display: grid;
  gap: 8px;
}

.ticket-card .button {
  width: 100%;
  min-height: 40px;
  padding-inline: 8px;
  font-size: 12px;
}

.ticket-card .button::before {
  inset: -5px -6px;
}

.site-footer {
  padding: 26px 24px 96px;
  color: var(--muted);
  text-align: center;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 24px;
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin: 0 0 10px;
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
}

.footer-links a {
  opacity: 0.82;
}

.site-footer p {
  margin: 0;
  font-size: 12px;
}

.bottom-nav {
  position: fixed;
  right: 50%;
  bottom: 0;
  z-index: 10;
  display: grid;
  width: min(100%, 640px);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  transform: translateX(50%);
  background: var(--yellow);
  color: #050505;
  box-shadow: 0 -6px 20px rgba(0,0,0,0.45);
}

.bottom-nav a,
.bottom-nav span {
  display: grid;
  min-width: 0;
  min-height: 62px;
  place-items: center;
  align-content: center;
  gap: 2px;
  font-size: 11px;
  font-weight: 900;
}

.bottom-nav .is-disabled {
  cursor: not-allowed;
  filter: grayscale(1);
  opacity: 0.45;
}

.bottom-nav small {
  font-size: 9px;
  line-height: 1;
}

.bottom-nav i {
  font-size: 20px;
  line-height: 1;
  color: #050505;
}

.bottom-nav a.active {
  color: var(--pink);
}

.bottom-nav .ticket-nav {
  grid-column: span 2;
  min-height: 62px;
  background: var(--pink);
  color: var(--white);
}

.bottom-nav .ticket-nav.active {
  color: var(--white);
}

.bottom-nav .ticket-nav i {
  color: var(--white);
}

@media (max-width: 640px) {
  body {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.44)),
      url("assets/background-sides-bg.jpg?v=1") center top / cover fixed no-repeat,
      #050505;
  }

  body::before,
  body::after {
    opacity: 0;
  }

  .site-shell {
    width: 100%;
    max-width: none;
    margin: 0;
    box-shadow: none;
  }

  .topbar {
    padding: 14px 16px;
  }

  .menu-button {
    top: 14px;
    right: 16px;
  }

  .brand-logo {
    width: min(54vw, 220px);
  }

  .hero {
    min-height: 0;
  }

  .hero-copy {
    padding-inline: 16px;
  }

  .hero > img {
    object-fit: fill;
    background: #050505;
  }

  .event-logo {
    width: 90%;
    top: 83%;
    transform: translate(-50%, -50%);
  }

  .event-date {
    top: 95.5%;
    width: calc(100% - 32px);
  }

  .content-section {
    padding-inline: 16px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-action-section {
    padding-inline: 16px;
  }

  .retirement-card {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
  }

  .retirement-card::before {
    display: none;
  }

  .retirement-card::after {
    inset: 0;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.88) 48%),
      radial-gradient(circle at 82% 16%, rgba(255, 23, 109, 0.28), transparent 26%);
  }

  .retirement-card img {
    position: static;
    grid-row: 1;
    width: 100%;
    height: auto;
    margin: 0;
    aspect-ratio: 16 / 10;
    transform: none;
  }

  .retirement-copy {
    z-index: 2;
    grid-row: 2;
    padding-right: 0;
  }

  .retirement-date {
    margin-bottom: 12px;
    font-size: 22px;
  }

  .retirement-card h2 {
    margin-bottom: 12px;
    font-size: 25px;
    line-height: 1.2;
  }

  .retirement-card blockquote {
    width: 100%;
    max-width: 100%;
    margin-bottom: 18px;
    padding: 16px 28px 16px 34px;
    font-size: 15px;
  }

  .retirement-button {
    width: 100%;
    min-height: 56px;
    font-size: 22px;
  }

  .news-item {
    grid-template-columns: 98px minmax(0, 1fr) 20px;
    gap: 10px;
  }

  .news-item img {
    width: 98px;
    height: 58px;
  }

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

  .ticket-world-card {
    grid-column: auto;
    min-height: 0;
    padding: 14px 10px;
    gap: 4px;
  }

  .world-logo img {
    width: min(100%, 230px);
  }

  .world-button {
    min-height: 40px;
    font-size: 16px;
  }

  .roster-groups {
    grid-template-columns: 1fr;
  }

  .fighter-card h4 {
    font-size: 11px;
  }

  .bottom-nav {
    right: auto;
    left: 0;
    width: 100%;
    transform: none;
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: 0;
  }

  .hero-copy {
    padding-inline: 16px;
  }

  .hero > img {
    object-fit: fill;
    background: #050505;
  }

  .event-logo {
    width: 90%;
    top: 83%;
    transform: translate(-50%, -50%);
  }

  .event-date {
    top: 95.5%;
    width: calc(100% - 32px);
  }
}

@media (min-width: 900px) {
  .site-shell {
    margin-top: 0;
  }
}
