


@font-face {
  font-family: "Tektur";
  src: url("../fonts/tektur-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Tektur";
  src: url("../fonts/tektur-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Tektur";
  src: url("../fonts/tektur-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: "Tektur";
  src: url("../fonts/tektur-800.woff2") format("woff2");
  font-weight: 800;
  font-display: swap;
}
@font-face {
  font-family: "Chakra Petch";
  src: url("../fonts/chakra-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Chakra Petch";
  src: url("../fonts/chakra-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Chakra Petch";
  src: url("../fonts/chakra-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Chakra Petch";
  src: url("../fonts/chakra-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}


:root {
  --bg: hsl(270 33% 5%);
  --bg-2: hsl(268 30% 8%);
  --panel: hsl(266 32% 11%);
  --panel-2: hsl(265 30% 14%);
  --line: hsl(265 30% 22%);

  --cyan: hsl(184 100% 56%);
  --cyan-soft: hsl(184 90% 70%);
  --magenta: hsl(322 100% 62%);
  --magenta-soft: hsl(322 100% 74%);
  --lime: hsl(82 95% 60%);
  --amber: hsl(43 100% 60%);

  --ink: hsl(280 35% 96%);
  --muted: hsl(268 18% 72%);
  --faint: hsl(268 14% 56%);

  --glow-cyan: 0 0 12px hsl(184 100% 56% / .55), 0 0 32px hsl(184 100% 56% / .25);
  --glow-mag: 0 0 12px hsl(322 100% 62% / .55), 0 0 32px hsl(322 100% 62% / .25);

  --shell: 1280px;
  --pad: clamp(1.1rem, 4vw, 2.6rem);
  --radius: 14px;

  --display: "Tektur", "Segoe UI", system-ui, sans-serif;
  --body: "Chakra Petch", "Segoe UI", system-ui, sans-serif;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--body);
  background-color: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1rem;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
  padding: 0;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}
:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}


body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(hsl(184 100% 56% / .045) 1px, transparent 1px),
    linear-gradient(90deg, hsl(322 100% 62% / .04) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 80%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 2px,
    hsl(270 33% 2% / .35) 3px,
    transparent 4px
  );
  opacity: .5;
  mix-blend-mode: overlay;
}


.up-shell {
  width: min(100% - 2 * var(--pad), var(--shell));
  margin-inline: auto;
}
.up-wide {
  width: min(100% - 2 * var(--pad), 1480px);
  margin-inline: auto;
}
h1,
h2,
h3,
h4 {
  font-family: var(--display);
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
p {
  text-wrap: pretty;
}
.up-tag {
  display: inline-flex;
  align-items: center;
  gap: .5ch;
  font-family: var(--display);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}
.up-tag::before {
  content: "[";
  color: var(--magenta);
}
.up-tag::after {
  content: "]";
  color: var(--magenta);
}
.up-section {
  position: relative;
  z-index: 1;
  padding-block: clamp(3.5rem, 8vw, 7rem);
}
.up-section__head {
  max-width: 60ch;
  margin-bottom: clamp(1.8rem, 4vw, 3rem);
}
.up-section__head h2 {
  font-size: clamp(1.9rem, 5.4vw, 3.4rem);
  font-weight: 800;
  margin-top: .7rem;
}
.up-section__head p {
  color: var(--muted);
  margin-top: 1rem;
  font-size: 1.05rem;
  max-width: 56ch;
}
.up-em {
  color: var(--magenta);
  text-shadow: var(--glow-mag);
}
.up-em-c {
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}


.up-btn {
  display: inline-flex;
  align-items: center;
  gap: .6ch;
  font-family: var(--display);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .85em 1.5em;
  border-radius: 10px;
  border: 2px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.up-btn--primary {
  background: var(--cyan);
  color: hsl(270 40% 6%);
  box-shadow: var(--glow-cyan);
}
.up-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 18px hsl(184 100% 56% / .8), 0 0 48px hsl(184 100% 56% / .4);
}
.up-btn--ghost {
  border-color: var(--magenta);
  color: var(--magenta-soft);
  background: hsl(322 100% 62% / .06);
}
.up-btn--ghost:hover {
  background: var(--magenta);
  color: hsl(270 40% 6%);
  box-shadow: var(--glow-mag);
  transform: translateY(-2px);
}
.up-btn--block {
  width: 100%;
  justify-content: center;
}


.up-head {
  position: sticky;
  top: 0;
  z-index: 50;
  background: hsl(270 33% 5% / .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.up-head__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 70px;
}
.up-brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: .02em;
}
.up-brand svg {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 0 6px hsl(184 100% 56% / .7));
}
.up-brand b {
  color: var(--cyan);
}
.up-brand i {
  color: var(--magenta);
  font-style: normal;
}
.up-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.up-nav a {
  font-family: var(--display);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .02em;
  color: var(--muted);
  position: relative;
  padding: .3em 0;
  transition: color .18s ease;
}
.up-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--cyan);
  box-shadow: var(--glow-cyan);
  transition: width .22s ease;
}
.up-nav a:hover,
.up-nav a[aria-current="page"] {
  color: var(--ink);
}
.up-nav a:hover::after,
.up-nav a[aria-current="page"]::after {
  width: 100%;
}
.up-head .up-btn {
  padding: .6em 1.1em;
  font-size: .85rem;
}


.up-burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 2px solid var(--line);
  border-radius: 10px;
  position: relative;
  align-items: center;
  justify-content: center;
}
.up-burger span,
.up-burger span::before,
.up-burger span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--cyan);
  box-shadow: var(--glow-cyan);
  transition: transform .25s ease, opacity .2s ease;
}
.up-burger span::before {
  position: absolute;
  transform: translateY(-6px);
}
.up-burger span::after {
  position: absolute;
  transform: translateY(6px);
}


.up-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background:
    radial-gradient(circle at 30% 20%, hsl(322 100% 30% / .25), transparent 55%),
    radial-gradient(circle at 75% 80%, hsl(184 100% 30% / .22), transparent 55%),
    hsl(270 38% 4% / .98);
  backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  padding: var(--pad);
  opacity: 0;
  visibility: hidden;
  transform: scale(1.04);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
}
.up-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.up-overlay__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.up-close {
  width: 46px;
  height: 46px;
  border: 2px solid var(--magenta);
  border-radius: 10px;
  color: var(--magenta);
  font-size: 1.5rem;
  display: grid;
  place-items: center;
}
.up-overlay nav {
  margin: auto 0;
  display: flex;
  flex-direction: column;
  gap: clamp(.3rem, 2vw, 1rem);
}
.up-overlay nav a {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(1.7rem, 9vw, 3rem);
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: .15em 0;
  transition: color .2s ease, transform .2s ease;
}
.up-overlay nav a span {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .2em;
  color: var(--magenta);
}
.up-overlay nav a:hover {
  color: var(--cyan);
  transform: translateX(10px);
}
.up-overlay__foot {
  color: var(--muted);
  font-size: .9rem;
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}
.up-overlay__foot a {
  color: var(--cyan);
}


.up-hero {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.up-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.up-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, hsl(270 33% 5% / .55) 0%, hsl(270 33% 5% / .82) 60%, hsl(270 33% 5%) 100%),
    linear-gradient(95deg, hsl(270 40% 4% / .9) 8%, transparent 70%);
}
.up-hero__inner {
  padding-block: clamp(3rem, 9vw, 6.5rem) clamp(2.5rem, 6vw, 4rem);
}
.up-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: .7ch;
  font-family: var(--display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid hsl(184 100% 56% / .4);
  border-radius: 100px;
  padding: .5em 1.1em;
  background: hsl(184 100% 56% / .06);
  box-shadow: inset 0 0 18px hsl(184 100% 56% / .12);
}
.up-hero h1 {
  font-size: clamp(2.6rem, 8.5vw, 6rem);
  font-weight: 800;
  margin: 1.1rem 0;
  max-width: 16ch;
}
.up-hero__lead {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: var(--muted);
  max-width: 52ch;
  margin-bottom: 1.8rem;
}
.up-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-bottom: 2.4rem;
}
.up-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1rem, 4vw, 2.6rem);
}
.up-stat {
  border-left: 2px solid var(--magenta);
  padding-left: .9rem;
}
.up-stat b {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  color: var(--ink);
  line-height: 1;
}
.up-stat span {
  font-size: .82rem;
  letter-spacing: .06em;
  color: var(--faint);
  text-transform: uppercase;
}


.up-rail-wrap {
  position: relative;
  z-index: 1;
}
.up-rail {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  padding: .4rem .2rem 1.4rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--magenta) transparent;
}
.up-rail::-webkit-scrollbar {
  height: 8px;
}
.up-rail::-webkit-scrollbar-thumb {
  background: var(--magenta);
  border-radius: 100px;
}
.up-rail::-webkit-scrollbar-track {
  background: hsl(265 30% 14%);
  border-radius: 100px;
}
.up-railhint {
  display: inline-flex;
  align-items: center;
  gap: .5ch;
  color: var(--faint);
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}


.up-card {
  scroll-snap-align: start;
  flex: 0 0 clamp(220px, 70vw, 280px);
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  transition: border-color .2s ease, box-shadow .25s ease, transform .2s ease;
  position: relative;
}
.up-card:hover {
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-4px);
}
.up-card__top {
  display: flex;
  gap: .85rem;
  align-items: center;
}
.up-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  border: 1px solid var(--line);
  flex: 0 0 auto;
  background: var(--bg-2);
}
.up-card__name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.06rem;
  line-height: 1.1;
}
.up-card__seller {
  font-size: .78rem;
  color: var(--faint);
  margin-top: .25rem;
}
.up-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.up-chip {
  font-size: .72rem;
  letter-spacing: .04em;
  padding: .3em .7em;
  border-radius: 100px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: hsl(265 30% 14% / .7);
}
.up-chip--star {
  color: var(--amber);
  border-color: hsl(43 100% 60% / .4);
}
.up-chip--mode {
  color: var(--cyan);
  border-color: hsl(184 100% 56% / .4);
}
.up-card__desc {
  font-size: .9rem;
  color: var(--muted);
  flex: 1;
}
.up-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .6rem;
  margin-top: auto;
}
.up-card__link {
  font-family: var(--display);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: hsl(270 40% 6%);
  background: var(--magenta);
  padding: .55em 1em;
  border-radius: 8px;
  box-shadow: var(--glow-mag);
  transition: transform .15s ease;
}
.up-card__link:hover {
  transform: translateY(-2px);
}
.up-card__rank {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--faint);
}


.up-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.2rem;
}
.up-grid .up-card {
  flex: initial;
}


.up-marquee {
  position: relative;
  z-index: 1;
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, hsl(322 100% 62% / .08), hsl(184 100% 56% / .08));
  overflow: hidden;
  padding-block: .9rem;
}
.up-marquee__track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  animation: up-scroll 28s linear infinite;
}
.up-marquee:hover .up-marquee__track {
  animation-play-state: paused;
}
.up-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.up-marquee__item::before {
  content: "◆";
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
}
@keyframes up-scroll {
  to {
    transform: translateX(-50%);
  }
}


.up-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  counter-reset: mission;
}
.up-step {
  position: relative;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 2.4rem 1.4rem 1.4rem;
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  overflow: hidden;
}
.up-step::before {
  counter-increment: mission;
  content: "0" counter(mission);
  position: absolute;
  top: .6rem;
  right: 1rem;
  font-family: var(--display);
  font-weight: 800;
  font-size: 3.4rem;
  color: transparent;
  -webkit-text-stroke: 1.5px hsl(322 100% 62% / .55);
  line-height: 1;
}
.up-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .55rem;
  color: var(--cyan);
}
.up-step p {
  color: var(--muted);
  font-size: .95rem;
}
.up-step__num {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--cyan);
  border-radius: 10px;
  color: var(--cyan);
  font-family: var(--display);
  font-weight: 800;
  box-shadow: var(--glow-cyan);
  margin-bottom: 1rem;
}


.up-board {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel);
}
.up-board__row {
  display: grid;
  grid-template-columns: 56px 1fr 110px 90px 130px;
  align-items: center;
  gap: 1rem;
  padding: .9rem 1.1rem;
  border-bottom: 1px solid var(--line);
}
.up-board__row:last-child {
  border-bottom: 0;
}
.up-board__row--head {
  background: hsl(265 30% 14%);
  font-family: var(--display);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--faint);
}
.up-board__row:not(.up-board__row--head):hover {
  background: hsl(184 100% 56% / .05);
}
.up-board__rank {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--magenta);
  text-shadow: var(--glow-mag);
  text-align: center;
}
.up-board__game {
  display: flex;
  align-items: center;
  gap: .8rem;
  min-width: 0;
}
.up-board__game img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  flex: 0 0 auto;
}
.up-board__game b {
  font-family: var(--display);
  font-weight: 700;
  font-size: .98rem;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.up-board__game span {
  font-size: .76rem;
  color: var(--faint);
}
.up-board__score {
  font-family: var(--display);
  font-weight: 700;
  color: var(--cyan);
}
.up-board__rating {
  color: var(--amber);
  font-weight: 600;
  font-size: .92rem;
}
.up-board__label {
  display: none;
}
.up-bar {
  height: 7px;
  border-radius: 100px;
  background: hsl(265 30% 18%);
  overflow: hidden;
}
.up-bar i {
  display: block;
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
}


.up-reviews {
  columns: 3 280px;
  column-gap: 1.2rem;
}
.up-rev {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
  transition: border-color .2s ease;
}
.up-rev:hover {
  border-color: var(--magenta);
}
.up-rev__stars {
  color: var(--amber);
  letter-spacing: .12em;
  font-size: .95rem;
  margin-bottom: .6rem;
}
.up-rev__text {
  color: var(--ink);
  font-size: .97rem;
  margin-bottom: 1rem;
}
.up-rev__who {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.up-rev__ava {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 800;
  color: hsl(270 40% 6%);
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  flex: 0 0 auto;
}
.up-rev__who b {
  font-family: var(--display);
  font-size: .92rem;
  display: block;
}
.up-rev__who span {
  font-size: .76rem;
  color: var(--faint);
}


.up-compat__scroll {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  overflow-x: auto;
  background: var(--panel);
  scrollbar-width: thin;
  scrollbar-color: var(--magenta) transparent;
}
.up-compat__scroll::-webkit-scrollbar {
  height: 8px;
}
.up-compat__scroll::-webkit-scrollbar-thumb {
  background: var(--magenta);
  border-radius: 100px;
}
.up-compat__scroll::-webkit-scrollbar-track {
  background: hsl(265 30% 14%);
  border-radius: 100px;
}
.up-compat__table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: .92rem;
}
.up-compat__table th,
.up-compat__table td {
  text-align: left;
  padding: .85rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
  white-space: nowrap;
  color: var(--muted);
  font-weight: 400;
}
.up-compat__table thead th {
  position: sticky;
  top: 0;
  background: hsl(265 30% 14%);
  font-family: var(--display);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  text-shadow: var(--glow-cyan);
  border-bottom: 2px solid var(--line);
}
.up-compat__table tbody tr:last-child th,
.up-compat__table tbody tr:last-child td {
  border-bottom: 0;
}
.up-compat__table tbody tr:hover td,
.up-compat__table tbody tr:hover .up-compat__game {
  background: hsl(184 100% 56% / .05);
}
.up-compat__game {
  display: flex;
  align-items: center;
  gap: .7rem;
}
.up-compat__game img {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  border: 1px solid var(--line);
  flex: 0 0 auto;
}
.up-compat__game span {
  display: flex;
  flex-direction: column;
  font-family: var(--display);
  font-weight: 700;
  font-size: .92rem;
  color: var(--ink);
}
.up-compat__game small {
  font-family: var(--body);
  font-weight: 400;
  font-size: .72rem;
  color: var(--faint);
}
.up-flag {
  display: inline-block;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: .25em .7em;
  border-radius: 100px;
  border: 1px solid var(--line);
  color: var(--faint);
  background: hsl(265 30% 14% / .7);
}
.up-flag--yes {
  color: var(--cyan);
  border-color: hsl(184 100% 56% / .45);
  background: hsl(184 100% 56% / .08);
}
.up-flag--hot {
  color: var(--amber);
  border-color: hsl(43 100% 60% / .45);
  background: hsl(43 100% 60% / .08);
}
.up-compat__note {
  color: var(--faint);
  font-size: .85rem;
  margin-top: 1rem;
  max-width: 88ch;
}
.up-compat__note strong {
  color: var(--muted);
}


.up-tourneys {
  display: grid;
  gap: 1rem;
}
.up-match {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 1.8rem);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  background: linear-gradient(160deg, var(--panel-2), var(--panel));
  transition: border-color .2s ease, box-shadow .25s ease, transform .2s ease;
}
.up-match:hover {
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
  transform: translateY(-3px);
}
.up-match__date {
  flex: 0 0 auto;
  width: 86px;
  text-align: center;
  border: 2px solid var(--magenta);
  border-radius: 12px;
  padding: .6rem .3rem;
  background: hsl(322 100% 62% / .06);
  box-shadow: inset 0 0 16px hsl(322 100% 62% / .15);
}
.up-match__date b {
  display: block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.9rem;
  line-height: 1;
  color: var(--ink);
}
.up-match__date span {
  display: block;
  font-family: var(--display);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .18em;
  color: var(--magenta);
  margin-top: .25rem;
}
.up-match__date i {
  display: block;
  font-style: normal;
  font-size: .7rem;
  color: var(--faint);
}
.up-match__info {
  min-width: 0;
}
.up-match__info h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: .35rem;
}
.up-match__info p {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: .7rem;
}
.up-match__chips {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}
.up-match__status {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .5rem;
  text-align: right;
}
.up-pill {
  font-family: var(--display);
  font-weight: 700;
  font-size: .74rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4em .9em;
  border-radius: 100px;
  border: 1px solid var(--line);
  white-space: nowrap;
}
.up-pill--open {
  color: var(--cyan);
  border-color: hsl(184 100% 56% / .5);
  background: hsl(184 100% 56% / .08);
  box-shadow: inset 0 0 14px hsl(184 100% 56% / .14);
}
.up-pill--hot {
  color: var(--amber);
  border-color: hsl(43 100% 60% / .5);
  background: hsl(43 100% 60% / .08);
}
.up-pill--soon {
  color: var(--magenta-soft);
  border-color: hsl(322 100% 62% / .5);
  background: hsl(322 100% 62% / .08);
}
.up-count {
  font-size: .76rem;
  letter-spacing: .04em;
  color: var(--faint);
  white-space: nowrap;
}


.up-clube {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.up-clube__media {
  position: relative;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--glow-mag);
}
.up-clube__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.up-clube__media figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 1rem 1.2rem;
  background: linear-gradient(transparent, hsl(270 40% 4% / .95));
  font-size: .85rem;
  color: var(--muted);
}
.up-clube h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 800;
  margin: .6rem 0 1rem;
}
.up-clube p {
  color: var(--muted);
  margin-bottom: 1rem;
}
.up-feats {
  display: grid;
  gap: .8rem;
  margin: 1.4rem 0;
}
.up-feat {
  display: flex;
  gap: .8rem;
  align-items: flex-start;
}
.up-feat span {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
  font-weight: 800;
  box-shadow: inset 0 0 12px hsl(184 100% 56% / .25);
}
.up-feat b {
  font-family: var(--display);
}


.up-ctastrip {
  position: relative;
  z-index: 1;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  border: 2px solid var(--magenta);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  background:
    radial-gradient(circle at 80% 20%, hsl(322 100% 40% / .18), transparent 60%),
    linear-gradient(160deg, var(--panel-2), var(--panel));
  box-shadow: var(--glow-mag);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}
.up-ctastrip h3 {
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 800;
}
.up-ctastrip p {
  color: var(--muted);
  margin-top: .4rem;
}


.up-foot {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding-block: clamp(2.5rem, 6vw, 4rem) 1.5rem;
}
.up-foot__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}
.up-foot__brand p {
  color: var(--muted);
  margin: 1rem 0;
  max-width: 34ch;
  font-size: .95rem;
}
.up-foot h4 {
  font-family: var(--display);
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.up-foot ul {
  display: grid;
  gap: .6rem;
}
.up-foot a {
  color: var(--muted);
  font-size: .94rem;
  transition: color .18s ease;
}
.up-foot a:hover {
  color: var(--cyan);
}
.up-foot__nap {
  font-style: normal;
  color: var(--muted);
  font-size: .94rem;
  display: grid;
  gap: .55rem;
}
.up-foot__nap b {
  color: var(--ink);
}
.up-foot__bottom {
  margin-top: 2.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: space-between;
  color: var(--faint);
  font-size: .85rem;
}
.up-foot__bottom a {
  color: var(--faint);
}
.up-foot__disclaim {
  max-width: 70ch;
}


.up-cookie {
  position: fixed;
  left: 50%;
  bottom: 1.2rem;
  transform: translateX(-50%) translateY(140%);
  z-index: 80;
  width: min(100% - 2rem, 760px);
  border: 2px solid var(--cyan);
  border-radius: var(--radius);
  background: hsl(270 38% 7% / .97);
  backdrop-filter: blur(10px);
  box-shadow: var(--glow-cyan);
  padding: 1.2rem 1.3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  transition: transform .4s cubic-bezier(.2, .9, .3, 1);
}
.up-cookie.is-shown {
  transform: translateX(-50%) translateY(0);
}
.up-cookie p {
  flex: 1 1 280px;
  font-size: .9rem;
  color: var(--muted);
}
.up-cookie p a {
  color: var(--cyan);
  text-decoration: underline;
}
.up-cookie__btns {
  display: flex;
  gap: .6rem;
}
.up-cookie .up-btn {
  padding: .55em 1.1em;
  font-size: .82rem;
}


.up-pagehero {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--line);
  padding-block: clamp(2.5rem, 7vw, 4.5rem);
  background:
    radial-gradient(circle at 15% 0%, hsl(184 100% 30% / .18), transparent 55%),
    radial-gradient(circle at 90% 120%, hsl(322 100% 35% / .18), transparent 55%),
    var(--bg-2);
}
.up-pagehero h1 {
  font-size: clamp(2.2rem, 6.5vw, 4rem);
  font-weight: 800;
  margin-top: .6rem;
}
.up-pagehero p {
  color: var(--muted);
  margin-top: .9rem;
  max-width: 56ch;
}
.up-crumbs {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--faint);
}
.up-crumbs a {
  color: var(--cyan);
}
.up-prose {
  max-width: 820px;
}
.up-prose h2 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--cyan);
  margin: 2.4rem 0 .9rem;
}
.up-prose h3 {
  font-family: var(--display);
  font-size: 1.2rem;
  margin: 1.6rem 0 .6rem;
  color: var(--magenta-soft);
}
.up-prose p,
.up-prose li {
  color: var(--muted);
  margin-bottom: .9rem;
}
.up-prose ul {
  list-style: none;
  display: grid;
  gap: .5rem;
  margin-bottom: 1rem;
}
.up-prose ul li {
  position: relative;
  padding-left: 1.4rem;
}
.up-prose ul li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--cyan);
}
.up-prose strong {
  color: var(--ink);
}
.up-prose a {
  color: var(--cyan);
  text-decoration: underline;
}
.up-prose__meta {
  display: inline-block;
  font-size: .82rem;
  color: var(--faint);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: .35em 1em;
  margin-bottom: 1.5rem;
}


.up-contact {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.5rem, 4vw, 2.6rem);
  align-items: start;
}
.up-form {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 4vw, 2.2rem);
  background: linear-gradient(165deg, var(--panel-2), var(--panel));
}
.up-field {
  margin-bottom: 1.1rem;
}
.up-field label {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: .45rem;
}
.up-field input,
.up-field select,
.up-field textarea {
  width: 100%;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--bg);
  border: 2px solid var(--line);
  border-radius: 10px;
  padding: .8em .9em;
  transition: border-color .18s ease, box-shadow .2s ease;
}
.up-field input:focus,
.up-field select:focus,
.up-field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: var(--glow-cyan);
}
.up-field textarea {
  min-height: 130px;
  resize: vertical;
}
.up-check {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.up-check input {
  width: 20px;
  height: 20px;
  margin-top: .15rem;
  accent-color: var(--magenta);
  flex: 0 0 auto;
}
.up-check a {
  color: var(--cyan);
  text-decoration: underline;
}
.up-aside {
  display: grid;
  gap: 1.1rem;
}
.up-info {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  background: var(--panel);
}
.up-info h3 {
  font-family: var(--display);
  font-size: 1.05rem;
  color: var(--cyan);
  margin-bottom: .8rem;
}
.up-info p,
.up-info address {
  font-style: normal;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
}
.up-info a {
  color: var(--ink);
}
.up-info a:hover {
  color: var(--cyan);
}
.up-hours {
  display: grid;
  gap: .4rem;
}
.up-hours div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed var(--line);
  padding-bottom: .35rem;
  font-size: .9rem;
  color: var(--muted);
}
.up-hours b {
  color: var(--ink);
}


.up-404 {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-block: clamp(4rem, 12vw, 8rem);
}
.up-404 .big {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(5rem, 22vw, 12rem);
  line-height: .9;
  color: transparent;
  -webkit-text-stroke: 2px var(--cyan);
  text-shadow: var(--glow-cyan);
}
.up-404 h1 {
  font-size: clamp(1.6rem, 5vw, 2.6rem);
  margin: 1rem 0;
}
.up-404 p {
  color: var(--muted);
  max-width: 44ch;
  margin: 0 auto 1.8rem;
}

.up-skip {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 200;
  background: var(--cyan);
  color: hsl(270 40% 6%);
  padding: .7em 1.2em;
  font-family: var(--display);
  font-weight: 700;
  border-radius: 0 0 8px 0;
}
.up-skip:focus {
  left: 0;
}

body.up-lock {
  overflow: hidden;
}



@media (max-width: 1160px) {
  .up-nav {
    gap: 1.05rem;
  }
  .up-nav a {
    font-size: .85rem;
  }
  .up-head .up-head__cta {
    padding: .55em .9em;
  }
}

@media (max-width: 1024px) {
  .up-foot__grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 2rem;
  }
  .up-foot__brand {
    grid-column: 1 / -1;
  }
  .up-reviews {
    columns: 2 260px;
  }
}

@media (max-width: 880px) {
  .up-nav {
    display: none;
  }
  .up-head .up-head__cta {
    display: none;
  }
  .up-burger {
    display: inline-flex;
  }
  .up-clube,
  .up-contact {
    grid-template-columns: 1fr;
  }
  .up-clube__media {
    order: -1;
    min-height: 240px;
  }
  .up-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .up-reviews {
    columns: 1;
  }
  .up-board {
    border: 0;
    background: none;
  }
  .up-board__row--head {
    display: none;
  }
  .up-board__row {
    grid-template-columns: 48px 1fr;
    grid-template-areas:
      "rank game"
      "score score"
      "rating rating";
    border: 2px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: .9rem;
    background: var(--panel);
    row-gap: .6rem;
  }
  .up-board__rank {
    grid-area: rank;
  }
  .up-board__game {
    grid-area: game;
  }
  .up-board__scorecell {
    grid-area: score;
  }
  .up-board__rating {
    grid-area: rating;
  }
  .up-board__label {
    display: inline;
    color: var(--faint);
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-right: .5rem;
  }
}

@media (max-width: 620px) {
  .up-match {
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "date info"
      "status status";
  }
  .up-match__date {
    grid-area: date;
  }
  .up-match__info {
    grid-area: info;
  }
  .up-match__status {
    grid-area: status;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    border-top: 1px dashed var(--line);
    padding-top: .7rem;
  }
}

@media (max-width: 560px) {
  .up-hero__cta .up-btn {
    width: 100%;
    justify-content: center;
  }
  .up-ctastrip {
    flex-direction: column;
    align-items: flex-start;
  }
  .up-cookie {
    flex-direction: column;
    align-items: stretch;
  }
  .up-cookie__btns .up-btn {
    flex: 1;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
