/* Page foundation */
.competition-page {
  --competition-background: #0c081e;
  --competition-white: #f5f3f0;
  --competition-muted: rgba(245, 243, 240, 0.65);
  --competition-width: 1100px;
  --competition-detail-width: 1000px;
  --event-accent: #d7d9df;
  --event-accent-rgb: 215, 217, 223;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--competition-white);
  background: var(--competition-background);
  cursor: default;
}
.competition-page a,
.competition-page button {
  cursor: pointer;
}
.competition-page a:focus-visible,
.competition-page button:focus-visible {
  outline: 2px solid var(--event-accent);
  outline-offset: 5px;
}
.competition-content {
  min-height: 100vh;
}
/* Loading and error states */
.competition-loading,
.competition-error {
  min-height: calc(100svh - 72px);
  display: grid;
  place-content: center;
  text-align: center;
  background: var(--competition-background);
}
.competition-loading {
  gap: 20px;
}
.competition-loading[hidden],
.competition-error[hidden] {
  display: none;
}
.competition-loading span {
  width: 42px;
  height: 42px;
  margin-inline: auto;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--event-accent);
  border-radius: 50%;
  animation: competitionLoader 0.9s linear infinite;
}
.competition-loading p,
.competition-error > p {
  color: var(--competition-muted);
  font-size: 0.7rem;
  letter-spacing: 6px;
}
.competition-error {
  padding: 40px 20px;
}
.competition-error h1 {
  margin: 24px 0 35px;
  font-size: clamp(2.5rem, 7vw, 5rem);
}
.competition-error a {
  width: fit-content;
  margin-inline: auto;
  padding: 15px 28px;
  border: 1px solid var(--event-accent);
  border-radius: 999px;
  color: var(--event-accent);
  letter-spacing: 3px;
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
}
/* Shared act structure */
.competition-context,
.competition-act,
.competition-chapter-navigation {
  position: relative;
  color: var(--competition-white);
  background: var(--competition-background);
}
.competition-context,
.competition-act {
  padding: 20px 0;
}
.competition-context::before,
.competition-act::before,
.competition-chapter-navigation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(90%, var(--competition-width));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.085),
    transparent
  );
}
.competition-context-container,
.competition-act-container,
.competition-progression-container,
.competition-chapter-navigation-container {
  width: min(90%, var(--competition-width));
  margin-inline: auto;
}
.competition-context-heading,
.competition-act-header,
.competition-progression-copy {
  width: 100%;
  max-width: none;
  text-align: center;
}
.competition-context-heading,
.competition-act-header {
  margin-bottom: 17px;
}
.competition-section-label,
.competition-act-header > p,
.competition-progression-copy > p {
  margin: 0 0 5px;
  color: var(--event-accent);
  font-size: 0.75rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 5px;
  text-align: center;
}
.competition-context-heading h2,
.competition-act-header h2,
.competition-progression-copy h2 {
  max-width: 1000px;
  margin: 0 auto;
  color: var(--competition-white);
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -1px;
  text-align: center;
}
.competition-context-heading h2 span,
.competition-act-header h2 span,
.competition-progression-copy h2 span {
  display: inline;
  margin-left: 10px;
  color: var(--event-accent);
}
/* Act 01: hero */
.competition-hero {
  position: relative;
  width: 100%;
  height: clamp(650px, 72svh, 780px);
  min-height: 650px;
  max-height: 780px;
  overflow: hidden;
  isolation: isolate;
  background: var(--competition-background);
}
.competition-hero-container {
  position: relative;
  z-index: 2;
  width: min(90%, var(--competition-width));
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  margin-inline: auto;
  padding: 34px 0 28px;
}
.competition-hero-media {
  position: absolute;
  top: 12px;
  bottom: 0;
  left: 50%;
  z-index: -4;
  width: min(96%, 1200px);
  overflow: hidden;
  transform: translateX(-50%) scale(1);
  transform-origin: center;
  -webkit-mask-image: radial-gradient(
    ellipse 50% 55% at center,
    black 46%,
    rgba(0, 0, 0, 0.9) 67%,
    rgba(0, 0, 0, 0.45) 80%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 50% 55% at center,
    black 46%,
    rgba(0, 0, 0, 0.9) 67%,
    rgba(0, 0, 0, 0.45) 80%,
    transparent 100%
  );
  transition: transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.competition-hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(0.7) contrast(1.06) brightness(0.64);
  transition: filter 0.7s ease;
}
.competition-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.78;
  background:
    linear-gradient(
      180deg,
      var(--competition-background) 0%,
      rgba(7, 4, 17, 0.58) 13%,
      transparent 38%,
      transparent 67%,
      var(--competition-background) 100%
    ),
    radial-gradient(
      ellipse at center,
      transparent 38%,
      rgba(7, 4, 17, 0.18) 60%,
      var(--competition-background) 100%
    );
  pointer-events: none;
  transition: opacity 0.7s ease;
}
.competition-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -3;
  opacity: 0.62;
  background: radial-gradient(
    ellipse at center,
    rgba(var(--event-accent-rgb), 0.035),
    transparent 42%,
    var(--competition-background) 90%
  );
  pointer-events: none;
  transition: opacity 0.7s ease;
}
.competition-hero-grid {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.15;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 90px 90px;
  mask-image: radial-gradient(ellipse at center, black, transparent 78%);
  pointer-events: none;
}
.competition-hero-navigation {
  position: relative;
  z-index: 6;
  display: flex;
  align-items: center;
}
.competition-back-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  color: var(--competition-muted);
  font-size: clamp(0.62rem, 0.7vw, 0.75rem);
  line-height: 1.5;
  letter-spacing: 5px;
  transition:
    color 0.35s ease,
    transform 0.35s ease;
}
.competition-back-link i {
  color: var(--event-accent);
  transition:
    filter 0.35s ease,
    transform 0.35s ease;
}
.competition-hero-content {
  position: relative;
  z-index: 6;
  width: min(100%, var(--competition-width));
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: center;
  justify-self: center;
  padding: 50px 0 20px;
  text-align: center;
}
.competition-chapter {
  margin: 0 0 20px;
  color: var(--event-accent);
  font-size: clamp(0.62rem, 0.7vw, 0.75rem);
  line-height: 1.5;
  letter-spacing: 5px;
}
.competition-hero-title {
  width: 100%;
  max-width: var(--competition-width);
  margin: 0 auto;
  color: var(--competition-white);
  font-size: clamp(3.8rem, 5.8vw, 6rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -2px;
  white-space: nowrap;
  text-shadow:
    0 4px 18px rgba(0, 0, 0, 0.9),
    0 0 18px rgba(var(--event-accent-rgb), 0.16),
    0 0 45px rgba(var(--event-accent-rgb), 0.08);
  transition:
    color 0.6s ease,
    text-shadow 0.6s ease,
    transform 0.7s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.competition-hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 22px 0 0;
  color: var(--competition-white);
  font-size: clamp(0.68rem, 0.85vw, 0.86rem);
  line-height: 1.5;
  letter-spacing: 6px;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.9);
}
.competition-meta-dot {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--competition-white);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.7);
}
.competition-hero-result {
  width: fit-content;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 25px auto 0;
  padding: 10px 25px 10px 10px;
  border: 1px solid rgba(var(--event-accent-rgb), 0.4);
  border-radius: 999px;
  background: rgba(7, 4, 17, 0.76);
  box-shadow:
    0 0 18px rgba(var(--event-accent-rgb), 0.1),
    0 18px 45px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(16px);
  transition:
    border-color 0.6s ease,
    background-color 0.6s ease,
    box-shadow 0.6s ease,
    transform 0.6s ease;
}
.competition-result-medal {
  width: 52px;
  height: 52px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--competition-background);
  font-size: 1.5rem;
  background: var(--event-accent);
  box-shadow:
    0 0 15px rgba(var(--event-accent-rgb), 0.38),
    0 0 32px rgba(var(--event-accent-rgb), 0.16);
  transition:
    box-shadow 0.6s ease,
    transform 0.6s ease;
}
.competition-hero-result > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  text-align: left;
}
.competition-hero-result small {
  color: var(--competition-muted);
  font-size: 0.55rem;
  line-height: 1.4;
  letter-spacing: 4px;
}
.competition-hero-result strong {
  color: var(--competition-white);
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  line-height: 1.3;
  letter-spacing: 2px;
  text-shadow: 0 0 12px rgba(var(--event-accent-rgb), 0.12);
}
.competition-hero-title,
.competition-hero-meta,
.competition-hero-result,
.competition-record-result strong,
.competition-match-fact strong,
.competition-progression-link strong {
  text-transform: uppercase;
}
/* Act 02: context */
.competition-context-story {
  width: min(90%, 780px);
  margin-inline: auto;
  text-align: center;
}
.competition-context-story p {
  margin: 0;
  color: rgba(245, 243, 240, 0.8);
  font-size: clamp(0.9rem, 1.1vw, 1.02rem);
  font-weight: 200;
  line-height: 1.5;
  letter-spacing: 1px;
}
/* Act 03: official record */
.competition-record-summary {
  display: grid;
  grid-template-columns: minmax(230px, 0.7fr) minmax(0, 1.8fr);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.competition-record-result {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.competition-record-result span,
.competition-record-facts dt {
  color: var(--competition-muted);
  font-size: 0.8rem;
  line-height: 1.5;
  letter-spacing: 3px;
}
.competition-record-result strong {
  max-width: 230px;
  color: var(--event-accent);
  font-size: clamp(1.45rem, 2.3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.08;
}
.competition-record-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
}
.competition-record-facts > div {
  min-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.075);
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  text-align: center;
}
.competition-record-facts > div:nth-last-child(-n + 3) {
  border-bottom: 0;
}
.competition-record-facts dd {
  margin: 0;
  color: var(--competition-white);
  font-size: clamp(0.9rem, 1.2vw, 1.12rem);
  line-height: 1.3;
  letter-spacing: 1px;
}
/* Act 04: match tape */
.competition-match-list {
  width: min(100%, var(--competition-detail-width));
  margin-inline: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.competition-match {
  min-height: 74px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.085);
  transition: background-color 0.35s ease;
}
.competition-match.is-open {
  background: rgba(255, 255, 255, 0.018);
}
.competition-match-summary {
  width: 100%;
  min-height: 74px;
  display: grid;
  grid-template-columns: 60px 1.5fr 0.7fr 0.7fr 90px 24px;
  align-items: center;
  gap: 22px;
  padding: 16px 10px;
  border: 0;
  color: var(--competition-white);
  text-align: left;
  background: transparent;
}
.competition-match-number {
  color: var(--event-accent);
  font-size: 0.7rem;
  letter-spacing: 3px;
}
.competition-match-round {
  font-size: clamp(0.9rem, 1.15vw, 1.05rem);
  letter-spacing: 3px;
}
.competition-match-outcome,
.competition-match-method,
.competition-match-duration {
  font-size: 0.72rem;
  letter-spacing: 2px;
}
.competition-match-outcome {
  color: var(--event-accent);
}
.competition-match-method,
.competition-match-duration {
  color: var(--competition-muted);
}
.competition-match-summary i {
  color: var(--event-accent);
  transition: transform 0.35s ease;
}
.competition-match.is-open .competition-match-summary i {
  transform: rotate(45deg);
}
.competition-match-details[hidden] {
  display: none;
}
.competition-match-details {
  padding: 20px;
}
.competition-match-breakdown {
  display: grid;
  grid-template-columns: minmax(150px, 0.8fr) minmax(340px, 1.6fr) minmax(
      150px,
      0.8fr
    );
  align-items: stretch;
  gap: 18px;
}
.competition-match-fact {
  min-height: 155px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  text-align: center;
  background: rgba(255, 255, 255, 0.018);
}
.competition-match-fact span {
  color: var(--competition-muted);
  font-size: 0.6rem;
  letter-spacing: 2px;
}
.competition-match-fact strong {
  color: var(--competition-white);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 1px;
}
.competition-scoreboard {
  min-height: 155px;
  overflow: hidden;
  border: 1px solid rgba(var(--event-accent-rgb), 0.24);
  border-radius: 10px;
  color: var(--competition-white);
  background: linear-gradient(
    135deg,
    rgba(var(--event-accent-rgb), 0.045),
    rgba(255, 255, 255, 0.012)
  );
  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
}
.competition-scoreboard-top {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.025);
}
.competition-scoreboard-top span {
  color: var(--competition-muted);
  font-size: 0.6rem;
  letter-spacing: 3px;
}
.competition-scoreboard-top strong {
  color: var(--event-accent);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-shadow: 0 0 14px rgba(var(--event-accent-rgb), 0.25);
}
.competition-scoreboard-labels,
.competition-scoreboard-row {
  display: grid;
  grid-template-columns: minmax(80px, 1.4fr) repeat(3, 38px) minmax(70px, 1fr);
  align-items: center;
  text-align: center;
}
.competition-scoreboard-labels {
  min-height: 28px;
  color: var(--competition-muted);
  font-size: 0.7rem;
  letter-spacing: 2px;
}
.competition-scoreboard-row {
  min-height: 41px;
  border-top: 1px solid rgba(255, 255, 255, 0.065);
}
.competition-scoreboard-row > strong {
  padding-left: 18px;
  color: var(--competition-white);
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-align: left;
}
.competition-scoreboard-row > span {
  color: var(--competition-white);
  font-size: 0.8rem;
  font-weight: 500;
}
.competition-scoreboard-penalties {
  min-height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.competition-shido-card {
  display: inline-grid;
  place-items: center;
  border-radius: 2px;
}
.competition-shido-card--yellow {
  width: 11px;
  height: 19px;
  border: 1px solid rgba(255, 218, 55, 0.75);
  background: #dfb822;
  box-shadow: 0 0 8px rgba(223, 184, 34, 0.28);
}
.competition-shido-card--red {
  width: 27px;
  height: 19px;
  border: 1px solid rgba(255, 85, 85, 0.75);
  color: #fff;
  font-size: 0.43rem;
  font-weight: 700;
  letter-spacing: 1px;
  background: #b92530;
  box-shadow: 0 0 9px rgba(185, 37, 48, 0.32);
}
.competition-score-empty {
  color: var(--competition-muted);
  font-size: 0.7rem;
}
.competition-match-quote {
  width: min(90%, 760px);
  margin: 24px auto 0;
  padding: 18px 22px 0;
  border-top: 1px solid rgba(var(--event-accent-rgb), 0.25);
  text-align: center;
}
.competition-match-quote span {
  display: block;
  margin-bottom: 8px;
  color: var(--event-accent);
  font-size: 0.7rem;
  letter-spacing: 3px;
}
.competition-match-quote p {
  max-width: 380px;
  margin: 0 auto;
  color: rgba(245, 243, 240, 0.8);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.4;
}
/* Act 05: lessons */
.competition-lessons-list {
  width: min(100%, var(--competition-detail-width));
  display: grid;
  margin-inline: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.competition-lessons-list[data-count="1"] {
  grid-template-columns: minmax(0, 620px);
  justify-content: center;
}
.competition-lessons-list[data-count="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.competition-lessons-list[data-count="3"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.competition-lesson {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 35px clamp(25px, 3vw, 45px);
  text-align: center;
}
.competition-lesson + .competition-lesson::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 0;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(var(--event-accent-rgb), 0.25),
    transparent
  );
}
.competition-lesson h3 {
  margin: 0;
  color: var(--competition-white);
  font-size: clamp(1.2rem, 1.7vw, 1.55rem);
  font-weight: 200;
  line-height: 1.2;
  letter-spacing: 3px;
  transition:
    color 0.35s ease,
    text-shadow 0.35s ease,
    transform 0.35s ease;
}
.competition-lesson p {
  max-width: 300px;
  margin: 0;
  color: rgba(245, 243, 240, 0.62);
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0.3px;
  transition: color 0.35s ease;
}
/* Act 06: shift */
.competition-change-list {
  width: min(100%, var(--competition-detail-width));
  margin-inline: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.competition-change {
  min-height: 180px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 80px minmax(0, 1fr);
  align-items: stretch;
}
.competition-change-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 35px clamp(25px, 4vw, 55px);
  text-align: center;
}
.competition-change-side small {
  color: var(--competition-muted);
  font-size: 0.7rem;
  line-height: 1.5;
  letter-spacing: 4px;
}
.competition-change-side p {
  max-width: 380px;
  margin: 0;
  color: rgba(245, 243, 240, 0.68);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  transition:
    color 0.35s ease,
    transform 0.35s ease;
}
.competition-change-after small {
  color: var(--event-accent);
}
.competition-change-arrow {
  position: relative;
  display: grid;
  place-items: center;
  color: var(--event-accent);
  font-size: 1rem;
}
.competition-change-arrow::before,
.competition-change-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 48px;
  transform: translateX(-50%);
  background: linear-gradient(
    180deg,
    transparent,
    rgba(var(--event-accent-rgb), 0.25)
  );
}
.competition-change-arrow::before {
  top: 0;
}
.competition-change-arrow::after {
  bottom: 0;
  transform: translateX(-50%) rotate(180deg);
}
.competition-change-arrow i {
  transition:
    transform 0.4s ease,
    filter 0.4s ease;
}
/* Act 07: progression */
.competition-progression-copy > div {
  width: min(90%, 720px);
  margin: 10px auto 0;
  color: rgba(245, 243, 240, 0.68);
  font-size: 0.9rem;
  line-height: 1.7;
  text-align: center;
}
.competition-progression-navigation {
  width: min(100%, var(--competition-detail-width));
  display: grid;
  gap: 18px;
  margin: 34px auto 0;
}
.competition-progression-navigation[data-count="1"] {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
}
.competition-progression-navigation[data-count="2"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.competition-progression-link {
  position: relative;
  min-height: 165px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 55px;
  overflow: hidden;
  border-top: 1px solid rgba(var(--event-accent-rgb), 0.42);
  border-bottom: 1px solid rgba(var(--event-accent-rgb), 0.22);
  color: var(--competition-white);
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(var(--event-accent-rgb), 0.035),
    rgba(255, 255, 255, 0.01)
  );
  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.4s ease;
}
.competition-progression-link::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(
    circle at center,
    rgba(var(--event-accent-rgb), 0.09),
    transparent 68%
  );
  transition: opacity 0.4s ease;
}
.competition-progression-link > * {
  position: relative;
  z-index: 2;
}
.competition-progression-direction {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: var(--event-accent);
  font-size: 0.5rem;
  line-height: 1.5;
  letter-spacing: 4px;
}
.competition-progression-direction i {
  transition: transform 0.4s ease;
}
.competition-progression-link small {
  color: var(--competition-muted);
  font-size: 0.52rem;
  line-height: 1.5;
  letter-spacing: 4px;
}
.competition-progression-link strong {
  color: var(--competition-white);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 1px;
}
.competition-progression-result {
  color: var(--event-accent);
  font-size: 0.58rem;
  line-height: 1.5;
  letter-spacing: 3px;
}
/* Return navigation */
.competition-chapter-navigation {
  padding: 16px 0 23px;
}
.competition-chapter-navigation-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.competition-return-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--competition-muted);
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-align: center;
  transition:
    color 0.35s ease,
    transform 0.35s ease;
}
.competition-return-link svg {
  color: var(--event-accent);
  font-size: 1.5rem;
  filter: drop-shadow(0 0 9px rgba(var(--event-accent-rgb), 0.38));
  transition:
    filter 0.35s ease,
    transform 0.35s ease;
}
/* Reveal state */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s ease,
    transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@keyframes competitionLoader {
  to {
    transform: rotate(360deg);
  }
}
/* Hero hover remains available in desktop and responsive preview modes. */
.competition-hero:hover .competition-hero-media {
  transform: translateX(-50%) scale(1.045);
}
.competition-hero:hover .competition-hero-media::after {
  opacity: 0.28;
}
.competition-hero:hover .competition-hero-overlay {
  opacity: 0.25;
}
.competition-hero:hover .competition-hero-media img {
  filter: saturate(0.92) contrast(1.08) brightness(0.82);
}
.competition-hero:hover .competition-hero-title {
  color: var(--event-accent);
  text-shadow:
    0 5px 20px rgba(0, 0, 0, 0.82),
    0 0 18px rgba(var(--event-accent-rgb), 0.42),
    0 0 48px rgba(var(--event-accent-rgb), 0.25),
    0 0 85px rgba(var(--event-accent-rgb), 0.12);
  transform: scale(1.012);
}
.competition-hero:hover .competition-hero-result {
  border-color: rgba(var(--event-accent-rgb), 0.78);
  background: rgba(7, 4, 17, 0.84);
  box-shadow:
    0 0 24px rgba(var(--event-accent-rgb), 0.24),
    0 0 55px rgba(var(--event-accent-rgb), 0.11),
    0 22px 50px rgba(0, 0, 0, 0.38);
  transform: translateY(-3px);
}
.competition-hero:hover .competition-result-medal {
  box-shadow:
    0 0 18px rgba(var(--event-accent-rgb), 0.62),
    0 0 42px rgba(var(--event-accent-rgb), 0.28);
  transform: scale(1.07);
}
.competition-page--upcoming {
  --upcoming-surface: rgba(15, 11, 29, 0.82);
  --upcoming-border: rgba(var(--event-accent-rgb), 0.34);
  --upcoming-glow: rgba(var(--event-accent-rgb), 0.16);
}
.competition-upcoming-hero {
  position: relative;
  width: 100%;
  height: 550px;
  min-height: 550px;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(var(--event-accent-rgb), 0.2);
  background:
    radial-gradient(
      circle at 50% 48%,
      rgba(var(--event-accent-rgb), 0.15),
      transparent 29%
    ),
    radial-gradient(
      circle at 50% 50%,
      rgba(var(--event-accent-rgb), 0.04),
      transparent 58%
    ),
    linear-gradient(
      180deg,
      rgba(12, 8, 30, 0.86),
      var(--competition-background)
    );
}
.competition-upcoming-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      transparent 49.9%,
      rgba(var(--event-accent-rgb), 0.09) 50%,
      transparent 50.1%
    ),
    linear-gradient(
      transparent 49.9%,
      rgba(var(--event-accent-rgb), 0.06) 50%,
      transparent 50.1%
    );
  background-size: 120px 120px;
  opacity: 0.28;
  mask-image: radial-gradient(circle at center, black, transparent 72%);
}
.competition-upcoming-background {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.competition-upcoming-background span {
  position: absolute;
  border: 1px solid rgba(var(--event-accent-rgb), 0.12);
  border-radius: 50%;
  box-shadow:
    0 0 45px rgba(var(--event-accent-rgb), 0.025),
    inset 0 0 45px rgba(var(--event-accent-rgb), 0.02);
  animation: competition-upcoming-pulse 7s ease-in-out infinite;
}
.competition-upcoming-background span:nth-child(1) {
  width: 380px;
  height: 380px;
}
.competition-upcoming-background span:nth-child(2) {
  width: 650px;
  height: 650px;
  animation-delay: -2.3s;
}
.competition-upcoming-background span:nth-child(3) {
  width: 930px;
  height: 930px;
  animation-delay: -4.6s;
}
.competition-upcoming-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.competition-upcoming-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.55) contrast(1.08) brightness(0.35);
  opacity: 0.55;
}
.competition-upcoming-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at center,
      transparent 20%,
      rgba(12, 8, 30, 0.68) 70%
    ),
    linear-gradient(180deg, rgba(12, 8, 30, 0.4), var(--competition-background));
}
.competition-upcoming-hero-container {
  position: relative;
  z-index: 4;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  padding-top: 18px;
  padding-bottom: 18px;
}
.competition-upcoming-hero-content {
  width: min(100%, 1050px);
  align-self: center;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.competition-upcoming-chapter {
  margin-bottom: 18px;
  color: var(--competition-muted);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 7px;
}
.competition-upcoming-status {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding: 10px 20px;
  border: 1px solid rgba(var(--event-accent-rgb), 0.48);
  border-radius: 999px;
  color: var(--event-accent);
  font-size: 0.72rem;
  font-weight: 300;
  letter-spacing: 5px;
  background: rgba(var(--event-accent-rgb), 0.055);
  box-shadow:
    0 0 24px rgba(var(--event-accent-rgb), 0.06),
    inset 0 0 18px rgba(var(--event-accent-rgb), 0.025);
}
.competition-upcoming-status i {
  font-size: 0.43rem;
  filter: drop-shadow(0 0 7px var(--event-accent));
  animation: competition-upcoming-status-pulse 1.8s ease-in-out infinite;
}
.competition-upcoming-hero-content h1 {
  max-width: 1100px;
  margin: 0;
  color: var(--event-accent);
  font-size: clamp(3.9rem, 2.5vw, 7rem);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -1px;
  text-shadow:
    0 5px 30px rgba(0, 0, 0, 0.75),
    0 0 30px rgba(var(--event-accent-rgb), 0.16),
    0 0 80px rgba(var(--event-accent-rgb), 0.06);
}
.competition-upcoming-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  color: var(--competition-white);
  font-size: 0.9rem;
  font-weight: 200;
  letter-spacing: 5px;
}
.competition-upcoming-meta > span:nth-child(2) {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--event-accent);
  box-shadow: 0 0 10px rgba(var(--event-accent-rgb), 0.8);
}
.competition-upcoming-countdown {
  position: relative;
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 42px;
  padding: 25px 28px 42px;
  overflow: hidden;
  border: 1px solid rgba(var(--event-accent-rgb), 0.48);
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(var(--event-accent-rgb), 0.09),
    rgba(12, 8, 30, 0.78) 40%,
    rgba(var(--event-accent-rgb), 0.035)
  );
  box-shadow:
    0 0 45px rgba(var(--event-accent-rgb), 0.09),
    0 28px 65px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}
.competition-upcoming-countdown::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 72%;
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    var(--event-accent),
    transparent
  );
  box-shadow: 0 0 16px rgba(var(--event-accent-rgb), 0.75);
}
.competition-upcoming-countdown > div {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.competition-upcoming-countdown > div:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 12%;
  right: 0;
  width: 1px;
  height: 76%;
  background: linear-gradient(
    transparent,
    rgba(var(--event-accent-rgb), 0.28),
    transparent
  );
}
.competition-upcoming-countdown strong {
  color: var(--event-accent);
  font-size: clamp(2.5rem, 4.3vw, 4.2rem);
  font-weight: 500;
  line-height: 1;
  text-shadow: 0 0 24px rgba(var(--event-accent-rgb), 0.22);
}
.competition-upcoming-countdown div span {
  color: var(--competition-muted);
  font-size: 0.7rem;
  font-weight: 200;
  letter-spacing: 3px;
}
.competition-upcoming-countdown > p {
  position: absolute;
  bottom: 12px;
  left: 50%;
  color: rgba(var(--event-accent-rgb), 0.76);
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  font-weight: 300;
  transform: translateX(-50%);
  white-space: nowrap;
}
.competition-upcoming-section {
  position: relative;
  width: 100%;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.055);
  background: var(--competition-background);
}
.competition-upcoming-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(90%, var(--competition-width));
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(
    90deg,
    transparent,
    rgba(var(--event-accent-rgb), 0.24),
    transparent
  );
}
.competition-upcoming-container {
  width: min(90%, var(--competition-width));
  margin-inline: auto;
}
.competition-upcoming-heading {
  max-width: 1000px;
  margin-inline: auto;
  text-align: center;
}
.competition-upcoming-heading > p {
  margin-bottom: 15px;
  color: var(--event-accent);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 7px;
}
.competition-upcoming-heading h2 {
  margin: 0;
  color: var(--competition-white);
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.5px;
}
.competition-upcoming-heading h2 span {
  color: var(--event-accent);
}
.competition-upcoming-story {
  max-width: 820px;
  margin: 32px auto 0;
  color: var(--competition-muted);
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.45px;
  text-align: center;
}
.competition-upcoming-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
  border-top: 1px solid rgba(var(--event-accent-rgb), 0.24);
  border-left: 1px solid rgba(var(--event-accent-rgb), 0.14);
}
.competition-upcoming-facts > div {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
  padding: 25px 30px;
  border-right: 1px solid rgba(var(--event-accent-rgb), 0.14);
  border-bottom: 1px solid rgba(var(--event-accent-rgb), 0.14);
  background: linear-gradient(
    135deg,
    rgba(var(--event-accent-rgb), 0.045),
    transparent 70%
  );
}
.competition-upcoming-facts dt {
  color: var(--competition-muted);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 2.4px;
}
.competition-upcoming-facts dd {
  color: var(--event-accent);
  font-size: clamp(1rem, 1.65vw, 1.35rem);
  line-height: 1.35;
  letter-spacing: 1.5px;
}
.competition-upcoming-preparation {
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(var(--event-accent-rgb), 0.045),
      transparent 42%
    ),
    var(--competition-background);
}
.competition-upcoming-objective-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 25px;
}
.competition-upcoming-objective {
  position: relative;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 42px 32px;
  overflow: hidden;
  border: 1px solid rgba(var(--event-accent-rgb), 0.21);
  border-radius: 20px;
  text-align: center;
  background: linear-gradient(
    145deg,
    rgba(var(--event-accent-rgb), 0.07),
    rgba(255, 255, 255, 0.012) 55%,
    transparent
  );
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition:
    border-color 0.4s ease,
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.competition-upcoming-objective::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at 50% 100%,
    rgba(var(--event-accent-rgb), 0.11),
    transparent 52%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}
.competition-upcoming-objective > span {
  position: absolute;
  top: 22px;
  left: 25px;
  color: rgba(var(--event-accent-rgb), 0.5);
  font-size: 0.55rem;
  letter-spacing: 3px;
}
.competition-upcoming-objective h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--event-accent);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 500;
  letter-spacing: 3px;
  text-shadow: 0 0 22px rgba(var(--event-accent-rgb), 0.1);
}
.competition-upcoming-objective p {
  position: relative;
  z-index: 2;
  margin: 20px 0 0;
  color: var(--competition-muted);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.3px;
}
.competition-upcoming-navigation {
  padding-bottom: 40px;
}
.competition-upcoming-objective:hover {
  border-color: rgba(var(--event-accent-rgb), 0.68);
  box-shadow:
    0 0 34px rgba(var(--event-accent-rgb), 0.09),
    0 28px 60px rgba(0, 0, 0, 0.32);
  transform: translateY(-7px);
}
.competition-upcoming-objective:hover::before {
  opacity: 1;
}
@keyframes competition-upcoming-pulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.025);
  }
}
@keyframes competition-upcoming-status-pulse {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}
/* Hover interactions */
.competition-back-link:hover {
  color: var(--competition-white);
  transform: translateX(-4px);
}
.competition-back-link:hover i {
  filter: drop-shadow(0 0 10px rgba(var(--event-accent-rgb), 0.7));
  transform: translateX(-3px);
}
.competition-error a:hover {
  color: var(--competition-background);
  background: var(--event-accent);
}
.competition-lesson:hover h3 {
  color: var(--event-accent);
  text-shadow: 0 0 22px rgba(var(--event-accent-rgb), 0.22);
  transform: translateY(-3px);
}
.competition-lesson:hover p {
  color: rgba(245, 243, 240, 0.82);
}
.competition-change:hover .competition-change-arrow i {
  filter: drop-shadow(0 0 8px rgba(var(--event-accent-rgb), 0.55));
  transform: translateX(6px);
}
.competition-change:hover .competition-change-before p {
  color: rgba(245, 243, 240, 0.48);
  transform: translateX(-3px);
}
.competition-change:hover .competition-change-after p {
  color: var(--competition-white);
  transform: translateX(3px);
}
.competition-progression-link:hover {
  border-color: rgba(var(--event-accent-rgb), 0.7);
  box-shadow:
    0 0 30px rgba(var(--event-accent-rgb), 0.08),
    0 20px 45px rgba(0, 0, 0, 0.22);
  transform: translateY(-5px);
}
.competition-progression-link:hover::before {
  opacity: 1;
}
.competition-progression-link--previous:hover
  .competition-progression-direction
  i {
  transform: translateX(-7px);
}
.competition-progression-link--next:hover .competition-progression-direction i {
  transform: translateX(7px);
}
.competition-return-link:hover {
  color: var(--competition-white);
  transform: translateY(-4px);
}
.competition-return-link:hover i {
  filter: drop-shadow(0 0 15px rgba(var(--event-accent-rgb), 0.7));
  transform: scale(1.1);
}
/* Responsive styles */
@media (max-width: 1100px) {
  .competition-hero-title {
    font-size: clamp(3.2rem, 6.4vw, 5.2rem);
  }
}
@media (max-width: 768px) {
  .competition-context,
  .competition-act {
    padding: 15px 0;
  }
  .competition-context-heading,
  .competition-act-header {
    margin-bottom: 24px;
  }
  .competition-section-label,
  .competition-act-header > p,
  .competition-progression-copy > p {
    margin-bottom: 10px;
    font-size: 0.64rem;
    letter-spacing: 3.5px;
  }
  .competition-context-heading h2,
  .competition-act-header h2,
  .competition-progression-copy h2 {
    font-size: clamp(1.54rem, 6.5vw, 2.2rem);
    line-height: 1.1;
  }

  .competition-hero {
    height: 650px;
    min-height: 650px;
    max-height: 650px;
  }
  .competition-hero-container {
    width: 90%;
    height: 650px;
    padding: 24px 0 22px;
  }
  .competition-hero-media {
    top: 52px;
    width: 108%;
    -webkit-mask-image: radial-gradient(
      ellipse 82% 76% at center,
      black 44%,
      rgba(0, 0, 0, 0.75) 65%,
      transparent 100%
    );
    mask-image: radial-gradient(
      ellipse 82% 76% at center,
      black 44%,
      rgba(0, 0, 0, 0.75) 65%,
      transparent 100%
    );
  }
  .competition-hero-media img {
    object-position: center 27%;
  }
  .competition-back-link {
    gap: 9px;
    font-size: 0.55rem;
    letter-spacing: 2.5px;
  }
  .competition-hero-content {
    width: 100%;
    align-self: end;
    padding: 85px 0 20px;
  }
  .competition-chapter {
    margin-bottom: 16px;
    font-size: 0.55rem;
    letter-spacing: 2.5px;
  }
  .competition-hero-title {
    font-size: clamp(2.5rem, 6.2vw, 4rem);
    line-height: 0.9;
    letter-spacing: -1px;
    white-space: normal;
  }
  .competition-hero-meta {
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 16px;
    font-size: 0.58rem;
    letter-spacing: 3px;
  }
  .competition-meta-dot {
    width: 5px;
    height: 5px;
  }
  .competition-hero-result {
    min-height: 62px;
    gap: 13px;
    margin-top: 24px;
    padding: 8px 17px 8px 8px;
  }
  .competition-result-medal {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }
  .competition-hero-result small {
    font-size: 0.48rem;
    letter-spacing: 2.5px;
  }
  .competition-hero-result strong {
    font-size: 0.82rem;
  }
  .competition-context-story {
    width: 92%;
  }
  .competition-context-story p {
    font-size: 0.9rem;
    line-height: 1.7;
  }
  .competition-record-summary {
    grid-template-columns: 1fr;
  }
  .competition-record-result {
    min-height: 115px;
    padding: 20px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .competition-record-result strong {
    max-width: none;
    font-size: 1.55rem;
  }
  .competition-record-facts {
    grid-template-columns: repeat(2, 1fr);
  }
  .competition-record-facts > div {
    border-left: 1px solid rgba(255, 255, 255, 0.075);
    min-height: 72px;
    padding: 12px 10px;
  }
  .competition-record-facts > div:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.075);
  }
  .competition-record-facts > div:nth-child(even) {
    border-right: 1px solid rgba(255, 255, 255, 0.075);
  }
  .competition-record-facts > div:nth-last-child(-n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.075);
    border-right: 1px solid rgba(255, 255, 255, 0.075);
  }
  .competition-record-facts > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
  .competition-match-summary {
    grid-template-columns: 32px minmax(0, 1fr) auto 24px;
    gap: 10px;
    min-height: 70px;
    padding: 14px 4px;
  }
  .competition-match-round {
    font-size: 0.82rem;
    letter-spacing: 1.8px;
  }
  .competition-match-outcome,
  .competition-match-method {
    display: none;
  }
  .competition-match-duration {
    grid-column: 3;
    grid-row: 1;
  }
  .competition-match-breakdown {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .competition-scoreboard {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .competition-match-fact {
    min-height: 95px;
    padding: 15px 10px;
  }
  .competition-lessons-list,
  .competition-lessons-list[data-count="1"],
  .competition-lessons-list[data-count="2"],
  .competition-lessons-list[data-count="3"] {
    grid-template-columns: 1fr;
  }
  .competition-lesson {
    min-height: 120px;
    gap: 14px;
    padding: 18px 10px;
  }
  .competition-lesson + .competition-lesson::before {
    top: 0;
    right: 12%;
    bottom: auto;
    left: 12%;
    width: auto;
    height: 1px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(var(--event-accent-rgb), 0.25),
      transparent
    );
  }
  .competition-lesson p {
    max-width: 300px;
  }
  .competition-change {
    grid-template-columns: 1fr;
  }
  .competition-change-side {
    min-height: 105px;
    padding: 7px 10px;
  }
  .competition-change-arrow {
    width: 100%;
    height: 55px;
  }
  .competition-change-arrow i {
    transform: rotate(90deg);
  }
  .competition-change-arrow::before,
  .competition-change-arrow::after {
    top: 50%;
    width: 34%;
    height: 1px;
    transform: none;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(var(--event-accent-rgb), 0.25)
    );
  }
  .competition-change-arrow::before {
    right: auto;
    left: 0;
  }
  .competition-change-arrow::after {
    right: 0;
    left: auto;
    transform: rotate(180deg);
  }
  .competition-change:hover .competition-change-arrow i {
    transform: rotate(90deg) translateX(5px);
  }
  .competition-change:hover .competition-change-before p,
  .competition-change:hover .competition-change-after p {
    transform: none;
  }
  .competition-progression-copy > div {
    max-width: 380px;
    margin-top: 20px;
    font-size: 0.86rem;
    line-height: 1.65;
  }
  .competition-progression-navigation,
  .competition-progression-navigation[data-count="1"],
  .competition-progression-navigation[data-count="2"] {
    grid-template-columns: 1fr;
  }
  .competition-progression-link {
    min-height: 145px;
    padding: 25px 30px;
  }
  .competition-progression-link strong {
    font-size: 1.2rem;
  }
  .competition-return-link i {
    font-size: 1.65rem;
  }
  .competition-upcoming-hero {
    min-height: 300px;
  }
  .competition-upcoming-hero-container {
    min-height: 200px;
    padding-top: 28px;
  }
  .competition-upcoming-background span:nth-child(1) {
    width: 280px;
    height: 280px;
  }
  .competition-upcoming-background span:nth-child(2) {
    width: 470px;
    height: 470px;
  }
  .competition-upcoming-background span:nth-child(3) {
    width: 680px;
    height: 680px;
  }
  .competition-upcoming-chapter {
    margin-top: 5px;
    font-size: 0.75rem;
    letter-spacing: 4px;
  }
  .competition-upcoming-status {
    margin-bottom: 20px;
    padding: 9px 16px;
    font-size: 0.65rem;
    letter-spacing: 3px;
  }
  .competition-upcoming-hero-content h1 {
    max-width: 95%;
    font-size: clamp(2rem, 7vw, 4rem);
    line-height: 0.92;
  }
  .competition-upcoming-meta {
    font-size: 0.7rem;
    letter-spacing: 2.5px;
  }
  .competition-upcoming-countdown {
    width: min(94%, 520px);
    gap: 24px 0;
    margin-top: 35px;
    padding: 15px 15px 30px;
  }
  .competition-upcoming-countdown strong {
    font-size: 2.8rem;
  }
  .competition-upcoming-countdown div span {
    letter-spacing: 2px;
  }
  .competition-upcoming-section {
    padding: 30px 0;
  }
  .competition-upcoming-heading > p {
    font-size: 0.6rem;
    letter-spacing: 4px;
  }
  .competition-upcoming-heading h2 {
    font-size: clamp(2.2rem, 9.5vw, 3rem);
  }
  .competition-upcoming-story {
    max-width: 92%;
    margin-top: 25px;
    font-size: 0.92rem;
    line-height: 1.8;
  }
  .competition-upcoming-facts {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 40px;
  }
  .competition-upcoming-facts > div {
    min-height: 105px;
    padding: 20px;
  }
  .competition-upcoming-objective-grid {
    grid-template-columns: 1fr;
    width: min(92%, 520px);
    margin: 40px auto 0;
  }
  .competition-upcoming-objective {
    min-height: 150px;
    padding: 20px 50px;
  }
}
@media (max-width: 650px) {
  #competitionShiftTitle span,
  #competitionPreparationTitle span,
  #competitionObjectivesTitle span {
    display: block;
  }
}
@media (max-width: 480px) {
  .competition-hero,
  .competition-hero-container {
    height: 610px;
    min-height: 610px;
    max-height: 610px;
  }
  .competition-hero-content {
    padding-top: 80px;
  }
  .competition-hero-title {
    font-size: clamp(1.75rem, 7vw, 3rem);
  }
  .competition-match-details {
    padding: 14px 4px 20px;
  }
  .competition-scoreboard-labels,
  .competition-scoreboard-row {
    grid-template-columns: minmax(68px, 1.3fr) repeat(3, 30px) minmax(62px, 1fr);
  }
  .competition-match-quote p {
    max-width: 90%;
  }
  .competition-scoreboard-row > strong {
    padding-left: 10px;
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }
  .competition-match-quote {
    width: 100%;
    padding-inline: 8px;
  }
  .competition-upcoming-hero {
    min-height: 400px;
  }
  .competition-upcoming-hero-container {
    min-height: 200px;
  }
  .competition-upcoming-hero-content h1 {
    font-size: clamp(2.7rem, 13vw, 3.7rem);
    line-height: 1.1;
  }
  .competition-upcoming-meta > span:nth-child(2) {
    width: 20px;
    height: 1px;
    border-radius: 0;
  }
  .competition-upcoming-countdown {
    margin-top: 28px;
    border-radius: 20px;
  }
  #competitionLessonsTitle {
    max-width: 200px;
  }
  #competitionMatchesTitle span {
    display: block;
  }
  .competition-upcoming-countdown strong {
    font-size: 1.9rem;
  }
  .competition-upcoming-countdown div span {
    font-size: 0.6rem;
  }
  .competition-upcoming-countdown > p {
    width: 100%;
    font-size: 0.6rem;
  }
  .competition-upcoming-facts {
    grid-template-columns: 1fr;
    max-width: 80%;
    margin: 15px auto;
  }
  .competition-upcoming-facts > div {
    min-height: 62px;
    text-align: center;
  }

  .competition-upcoming-objective {
    padding: 28px 20px;
  }
}
@media (max-width: 850px) and (max-height: 620px) {
  .competition-hero-content {
    translate: 0 -145px;
  }
  .competition-upcoming-hero-content {
    translate: 0 -120px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .competition-page *,
  .competition-page *::before,
  .competition-page *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
  .competition-upcoming-background span,
  .competition-upcoming-status i {
    animation: none;
  }
}
