:root {
  --navy: #07114c;
  --blue: #1025bd;
  --cyan: #23d5f3;
  --lime: #b8f500;
  --ink: #07133f;
  --muted: #60708f;
  --pale: #f3f7fc;
  --white: #fff;
  --shadow: 0 18px 45px rgba(12, 30, 91, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--pale);
  font-family:
    Inter,
    Segoe UI,
    Arial,
    sans-serif;
  line-height: 1.6;
}
.contact-fab {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.contact-fab-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.96);
  transform-origin: bottom center;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}
.contact-fab:hover .contact-fab-menu,
.contact-fab:focus-within .contact-fab-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.contact-fab-action {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  color: #07135f;
  background: #fff;
  box-shadow: 0 8px 20px rgba(7, 19, 95, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-fab-action:hover,
.contact-fab-action:focus-visible {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 24px rgba(7, 19, 95, 0.4);
}
.contact-fab-action.whatsapp {
  color: #063b1d;
  background: #25d366;
}
.contact-fab-action svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.phone-fab {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 58px;
  height: 58px;
  padding: 0 17px;
  overflow: hidden;
  border: 1px solid rgba(232, 255, 114, 0.95);
  border-radius: 999px;
  color: #07135f;
  background: var(--arena-lime, #c5f900);
  font: inherit;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(7, 19, 95, 0.35), 0 0 22px rgba(197, 249, 0, 0.45);
  transition: gap 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}
.phone-fab:hover,
.phone-fab:focus-visible {
  gap: 11px;
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(7, 19, 95, 0.42), 0 0 34px rgba(197, 249, 0, 0.72);
}
.phone-fab.is-copied {
  background: #8ff5a8;
}
.phone-fab:focus-visible {
  outline: 3px solid var(--arena-lime, #c5f900);
  outline-offset: 4px;
}
.phone-fab-label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  opacity: 0;
  transform: translateX(8px);
  transition: max-width 0.24s ease, opacity 0.18s ease, transform 0.24s ease;
}
.phone-fab:hover .phone-fab-label,
.phone-fab:focus-visible .phone-fab-label {
  max-width: 150px;
  opacity: 1;
  transform: translateX(0);
}
.phone-fab-icon {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: #fff;
  padding: 10px;
}
.skip-link:focus {
  top: 16px;
}
.site-header {
  width: 100%;
  max-width: 100vw;
  height: 72px;
  padding: 0 max(22px, 7vw);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: sticky;
  top: 0;
  z-index: 50;
  background: #202950;
  color: #fff;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.85rem;
}
.event-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 4px 10px 5px;
  border-left: 3px solid var(--lime);
  color: #fff;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transform: skewX(-6deg);
  text-shadow: 2px 2px 0 #07113e;
}
.event-wordmark span {
  color: var(--lime);
  font-size: 0.78em;
}
.brand img {
  width: 52px;
  height: 42px;
  object-fit: contain;
  background: #fff;
}
.site-header nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 26px;
  font-size: 0.78rem;
  font-weight: 800;
}
.site-header nav a:hover {
  color: var(--lime);
}
.language-toggle {
  display: inline-flex;
  flex: 0 0 auto;
  margin-left: 16px;
  margin-right: 0;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: #eef3f8;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}
.language-toggle button {
  min-width: 38px;
  height: 32px;
  padding: 0 8px;
  border: 0;
  border-radius: 7px;
  color: #64718a;
  background: transparent;
  font-size: 0.72rem;
  font-weight: 950;
  cursor: pointer;
}
.language-toggle button.active {
  color: #fff;
  background: var(--blue);
  box-shadow: 0 4px 12px rgba(18, 53, 215, 0.32);
}
.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--ink) !important;
  box-shadow: 0 0 25px rgba(184, 245, 0, 0.25);
}
.menu-button {
  display: none;
  background: var(--lime);
  color: var(--ink);
  border: 0;
  padding: 10px 14px;
  font-weight: 900;
}
.hero {
  min-height: 850px;
  padding: 90px max(24px, 9vw);
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  gap: 7vw;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(
    circle at 15% 30%,
    #084d9c 0,
    #071989 32%,
    #1022bb 68%,
    #0738da 100%
  );
  color: #fff;
}
.grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 52px 52px;
}
.hero-copy,
.hero-poster {
  min-width: 0;
  position: relative;
  z-index: 1;
}
.hero-logo {
  width: 210px;
  height: 110px;
  object-fit: contain;
  background: #fff;
  margin-bottom: 45px;
}
.eyebrow {
  margin: 0 0 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.73rem;
  font-weight: 950;
  color: var(--cyan);
}
h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
}
h1,
h2 {
  font-size: clamp(3rem, 5.7vw, 6rem);
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: -0.045em;
}
h1 em {
  display: block;
  color: var(--lime);
  font-style: normal;
}
.hero-intro {
  max-width: 680px;
  color: #d6e3ff;
  font-size: 1.03rem;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 27px 0;
}
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.primary {
  background: var(--lime);
  color: var(--ink);
}
.outline {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.event-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.event-facts div {
  padding: 15px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.event-facts span {
  display: block;
  text-transform: uppercase;
  font-size: 0.63rem;
  font-weight: 900;
  color: #b8c8ff;
}
.event-facts strong {
  display: block;
  font-size: 0.8rem;
  line-height: 1.35;
}
.hero-poster {
  width: min(100%, 560px);
  min-height: 610px;
  justify-self: center;
  display: grid;
  place-items: center;
  isolation: isolate;
  cursor: zoom-in;
}
.hero-poster:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 8px;
}
.poster-card {
  grid-area: 1 / 1;
  width: min(78%, 390px);
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.17);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}
.poster-card img {
  width: 100%;
  max-height: 570px;
  object-fit: contain;
  border-radius: 17px;
}
.poster-card figcaption {
  padding: 9px 8px 5px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}
.poster-feature {
  z-index: 3;
  transform: translate(-4%, -2%) rotate(-2deg);
}
.poster-entry {
  z-index: 2;
  transform: translate(24%, 4%) rotate(5deg) scale(0.91);
  opacity: 0.76;
}
.poster-discord {
  z-index: 1;
  transform: translate(-28%, 5%) rotate(-7deg) scale(0.86);
  opacity: 0.62;
}
.poster-lightbox {
  width: min(1180px, calc(100vw - 48px));
  max-width: none;
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(32, 224, 255, 0.5);
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(145deg, rgba(7, 19, 95, 0.98), rgba(15, 20, 96, 0.98));
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.65), 0 0 40px rgba(32, 224, 255, 0.18);
}
.poster-lightbox::backdrop {
  background: rgba(2, 5, 30, 0.88);
  backdrop-filter: blur(9px);
}
.poster-lightbox-shell {
  position: relative;
  padding: 58px 64px 38px;
}
.poster-lightbox-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--lime) rgba(255, 255, 255, 0.12);
}
.poster-lightbox .poster-lightbox-card {
  position: relative;
  flex: 0 0 min(72vw, 440px);
  width: auto;
  transform: none;
  translate: none;
  opacity: 1;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  animation: none;
}
.poster-lightbox-card img {
  max-height: 72vh;
}
.poster-lightbox-close,
.poster-lightbox-nav {
  position: absolute;
  z-index: 5;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(7, 19, 95, 0.88);
  cursor: pointer;
}
.poster-lightbox-close {
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.6rem;
}
.poster-lightbox-nav {
  top: 50%;
  width: 42px;
  height: 62px;
  border-radius: 12px;
  font-size: 2rem;
  transform: translateY(-50%);
}
.poster-lightbox-prev { left: 10px; }
.poster-lightbox-next { right: 10px; }
.poster-lightbox-open { overflow: hidden; }
@media (max-width: 768px) {
  .hero-poster { cursor: auto; }
  .poster-lightbox { display: none; }
}
.poster-zoom-trigger {
  cursor: zoom-in;
}
.poster-zoom-trigger:focus-visible {
  outline: 3px solid var(--arena-lime, var(--lime));
  outline-offset: 6px;
}
.poster-zoom-dialog {
  width: min(900px, calc(100vw - 32px));
  max-width: none;
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(32, 224, 255, 0.62);
  border-radius: 0;
  color: #fff;
  background: linear-gradient(145deg, rgba(7, 19, 95, 0.98), rgba(15, 20, 96, 0.98));
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.65), 0 0 40px rgba(32, 224, 255, 0.18);
}
.poster-zoom-dialog::backdrop {
  background: rgba(2, 5, 30, 0.88);
  backdrop-filter: blur(9px);
}
.poster-zoom-shell {
  position: relative;
  display: grid;
  min-height: min(80vh, 780px);
  padding: 52px 24px 24px;
  place-items: center;
}
.poster-zoom-image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 108px);
  object-fit: contain;
}
.poster-zoom-close {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 1;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(32, 224, 255, 0.62);
  border-radius: 0;
  color: #fff;
  background: rgba(7, 19, 95, 0.9);
  cursor: pointer;
  font-size: 1.55rem;
  line-height: 1;
}
.poster-zoom-close:hover,
.poster-zoom-close:focus-visible {
  color: var(--arena-lime, var(--lime));
  border-color: var(--arena-lime, var(--lime));
}
.poster-zoom-open {
  overflow: hidden;
}
.download-band {
  padding: 55px max(24px, 17vw);
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 25px;
  align-items: center;
  background: var(--navy);
}
.game-visual,
.download-card {
  min-width: 0;
  border-radius: 22px;
  background: #293372;
  padding: 16px;
}
.game-visual {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: start;
}
.game-visual img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 680px;
  object-fit: contain;
  border-radius: 14px;
}
.download-card {
  padding: 34px;
  color: #fff;
  align-self: center;
}
.download-card h2 {
  font-size: clamp(2.5rem, 4vw, 4.6rem);
}
.download-card > p:not(.mini-icon) {
  color: #c9d3f5;
}
.mini-icon {
  font-size: 2rem;
  margin: 0;
  color: var(--cyan);
}
.entry-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.qr-placeholder,
.large-qr {
  background: #fff;
  color: var(--ink);
  border-radius: 12px;
  padding: 11px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.entry-actions .qr-placeholder {
  min-height: 142px;
  flex-direction: row;
  justify-content: center;
  gap: 22px;
  padding: 20px;
  text-align: left;
  color: #fff;
  background: linear-gradient(135deg, #101f8f, #493092);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.qr-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.qr-copy small {
  color: var(--lime);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.qr-copy strong {
  margin: 4px 0 7px;
  color: #fff;
  font-size: 1.15rem;
}
.qr-copy em {
  color: #dbe3ff;
  font-size: 0.74rem;
  font-style: normal;
}
.qr-placeholder > span:not(.qr-copy),
.large-qr > span {
  display: grid;
  place-items: center;
  width: 70px;
  aspect-ratio: 1;
  border: 5px dashed var(--ink);
  font-size: 1.2rem;
  font-weight: 950;
}
.qr-placeholder strong {
  font-size: 0.68rem;
}
.qr-placeholder small {
  color: #78839a;
}
.download-options {
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  gap: 10px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}
.download-options > p {
  grid-column: 1 / -1;
  margin: 0 0 4px;
  color: #fff;
  font-weight: 900;
  text-align: center;
}
.download-options > a:not(.product-page-link) {
  display: flex;
  justify-content: center;
  width: 100%;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.download-options > a:not(.product-page-link):hover {
  transform: translateY(-2px);
  opacity: 0.88;
}
.download-options img {
  width: 100%;
  height: 52px;
  object-fit: contain;
}
.download-options img.app-store-badge {
  width: 80%;
  height: 40px;
}
.product-page-link {
  grid-column: 1 / -1;
  margin-top: 2px;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 850;
}
.product-page-link:hover {
  text-decoration: underline;
}
.app-download-card > p:not(.eyebrow) {
  max-width: 330px;
  color: #c9d3f5;
}
.download-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}
.download-store-link {
  display: flex;
  justify-content: center;
  min-width: 0;
  transition: transform 220ms ease, filter 220ms ease;
}
.download-store-link:hover,
.download-store-link:focus-visible {
  transform: translateY(-3px) scale(1.03);
  filter: drop-shadow(0 8px 14px rgba(32, 224, 255, 0.24));
}
.download-store-link img {
  width: 100%;
  max-width: 155px;
  height: 60px;
  object-fit: contain;
}
.download-store-link img.app-store-badge {
  height: 46px;
}
.download-store-link:first-child img {
  transform: scale(1.14);
}
.legacy-registration-action {
  display: none;
}
.section {
  padding: 105px max(24px, 17vw);
}
.section h2 {
  max-width: 850px;
  margin-bottom: 38px;
}
.about {
  background: #f8fafc;
}
.section-intro {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 65px;
}
.section-intro > div > p:not(.eyebrow) {
  color: var(--muted);
}
.skill-list {
  display: grid;
  gap: 16px;
}
.skill-list article,
.category-grid article,
.format-grid article {
  padding: 24px;
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.skill-list b {
  color: var(--blue);
}
.skill-list h3 {
  margin: 7px 0;
}
.skill-list p,
.category-grid p,
.format-grid p {
  margin-bottom: 0;
  color: var(--muted);
}
.pale {
  background: linear-gradient(135deg, #eff8ff, #f5f6fb);
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.category-poster-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}
.category-summary-grid {
  margin-top: 30px;
}
.category-poster-card {
  position: relative;
  min-width: 0;
  margin: 0;
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(18, 53, 215, 0.14);
  border-radius: 18px;
  background: #fff;
  clip-path: var(--arena-cut);
  box-shadow: 0 16px 38px rgba(7, 31, 114, 0.09);
}
.category-poster-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--arena-blue), var(--arena-cyan), transparent);
  pointer-events: none;
}
.category-poster-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1414 / 2000;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 260ms ease, filter 260ms ease;
}
.category-poster-card:hover img,
.category-poster-card:focus-within img {
  transform: scale(1.015);
  filter: drop-shadow(0 12px 20px rgba(7, 31, 114, 0.2));
}
.how-to-join {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 78px);
  align-items: start;
  color: #fff;
  background:
    radial-gradient(circle at 12% 20%, rgba(32, 224, 255, 0.2), transparent 22rem),
    linear-gradient(120deg, #07135f, #1235d7 60%, #5428a6);
}
.how-to-join h2 {
  max-width: 720px;
  color: #fff;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  letter-spacing: 0.005em;
  line-height: 1.08;
  text-shadow: 3px 4px 0 rgba(4, 12, 67, 0.4);
  text-transform: uppercase;
}
.how-to-join .eyebrow {
  color: var(--arena-cyan, var(--cyan));
  font-size: 0.82rem;
}
.how-to-join-intro {
  max-width: 680px;
  margin: 0 0 30px;
  color: #d6e3ff;
  font-size: 1rem;
  line-height: 1.55;
}
.how-to-join-steps {
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}
.how-to-join-steps li {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 17px 19px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(32, 224, 255, 0.34);
  border-left: 4px solid var(--arena-cyan, var(--cyan));
  border-radius: 0;
  clip-path: var(--arena-cut, polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px));
  background: linear-gradient(145deg, rgba(32, 224, 255, 0.13), rgba(7, 19, 95, 0.86));
  box-shadow: 0 16px 38px rgba(3, 10, 61, 0.28);
}
.how-to-join-steps li > span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 0;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
  color: var(--arena-lime, var(--lime));
  background: linear-gradient(135deg, var(--arena-blue, var(--blue)), var(--arena-violet, #5428a6));
  font-size: 0.95rem;
  font-weight: 950;
}
.how-to-join-steps p {
  margin: 0;
  color: #f1f5ff;
  font-size: 1rem;
  line-height: 1.5;
}
.how-to-join-steps li::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--arena-blue, var(--blue)), var(--arena-cyan, var(--cyan)), transparent);
}
.how-to-join-note {
  max-width: 720px;
  margin: 22px 0 26px;
  padding: 14px 16px;
  border: 1px solid rgba(32, 224, 255, 0.45);
  border-left: 4px solid var(--arena-lime, var(--lime));
  border-radius: 0;
  clip-path: var(--arena-cut, polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px));
  color: var(--arena-lime, var(--lime));
  background: linear-gradient(120deg, var(--arena-navy, var(--navy)), var(--arena-blue, var(--blue)), var(--arena-violet, #5428a6));
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1.45;
}
.how-to-join-poster {
  position: sticky;
  top: 104px;
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 14px;
  border: 1px solid rgba(32, 224, 255, 0.48);
  border-radius: 0;
  clip-path: var(--arena-cut, polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px));
  background: linear-gradient(145deg, rgba(32, 224, 255, 0.2), rgba(84, 40, 166, 0.24));
  box-shadow: 18px 18px 0 rgba(18, 53, 215, 0.22), 0 28px 55px rgba(3, 10, 61, 0.42);
}
.how-to-join-poster img {
  width: 100%;
  height: auto;
  max-height: 820px;
  object-fit: contain;
  border-radius: 9px;
}
.how-to-join .button {
  min-height: 54px;
  padding-inline: 26px;
  font-size: 0.84rem;
}
.challenge-code-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 720px;
  margin: 22px 0 0;
  padding: 18px 20px;
  border: 2px solid var(--arena-lime, var(--lime));
  border-left-width: 6px;
  clip-path: var(--arena-cut, polygon(18px 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%, 0 18px));
  background:
    radial-gradient(circle at 80% 20%, rgba(197, 249, 0, 0.2), transparent 30%),
    linear-gradient(120deg, rgba(7, 19, 95, 0.94), rgba(18, 53, 215, 0.88));
  box-shadow: 0 0 0 5px rgba(197, 249, 0, 0.08), 0 16px 32px rgba(3, 10, 61, 0.32);
}
.challenge-code-copy .eyebrow {
  margin-bottom: 4px;
  color: var(--arena-lime, var(--lime));
}
.challenge-code-copy h3 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1;
}
.challenge-code-copy > p:not(.eyebrow) {
  margin: 8px 0 0;
  color: #d6e3ff;
  font-size: 0.86rem;
}
.challenge-code-button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--arena-lime, var(--lime));
  clip-path: var(--arena-cut, polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px));
  color: #07135f;
  background: var(--arena-lime, var(--lime));
  font: inherit;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.challenge-code-button:hover,
.challenge-code-button:focus-visible {
  transform: translateY(-2px);
  background: #d9ff2f;
  box-shadow: 0 8px 18px rgba(197, 249, 0, 0.28);
}
.challenge-code-button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}
@media (prefers-reduced-motion: reduce) {
  .challenge-code-button {
    transition: none;
  }
}
@media (max-width: 620px) {
  .challenge-code-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
}
@media (min-width: 1051px) {
  .how-to-join-copy {
    grid-column: 2;
    grid-row: 1;
  }
  .how-to-join-poster {
    grid-column: 1;
    grid-row: 1;
  }
  .how-to-join-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .how-to-join-steps li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
    padding: 13px 14px;
  }
  .how-to-join-steps li > span {
    width: 42px;
    height: 42px;
  }
  .how-to-join-steps p {
    font-size: 0.96rem;
    line-height: 1.42;
  }
}
.category-grid article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: start;
  gap: 20px;
}
.category-number {
  margin: 0;
}
.category-grid h3 {
  min-height: 0;
  margin-top: 0;
}
.category-copy {
  min-width: 0;
}
.category-grid i {
  width: 48px;
  height: 48px;
  display: block;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 0 18px currentColor;
}
.green {
  background: #2ac44e;
  color: #2ac44e;
}
.yellow {
  background: #ffef35;
  color: #ffef35;
}
.blue {
  background: #3947e8;
  color: #3947e8;
}
.format {
  padding-top: 35px;
}
.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.format-grid b {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
}
.format-grid h3 {
  margin-top: 13px;
}
.format-note {
  padding: 13px;
  text-align: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(90deg, #071ac3, #61309b);
  font-weight: 900;
}
.schedule {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 55px;
  align-items: center;
  background: #eef8ff;
}
.schedule-poster img {
  max-height: 650px;
  margin: auto;
  border: 10px solid #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.schedule ol {
  position: relative;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 16px;
}
.schedule ol::before {
  content: "";
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: 30px;
  width: 2px;
  background: linear-gradient(var(--cyan), var(--blue), #6732a0);
}
.schedule li {
  position: relative;
  min-height: 128px;
  padding: 24px 24px 24px 82px;
  border: 1px solid #dbe4f4;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.schedule li::before {
  content: attr(data-step);
  position: absolute;
  top: 24px;
  left: 12px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 6px solid #eef8ff;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 950;
  box-sizing: content-box;
}
.schedule li::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--cyan);
}
.schedule li strong,
.schedule li span,
.schedule li small {
  display: block;
}
.schedule li strong {
  color: var(--blue);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.schedule li span {
  margin: 5px 0 8px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 850;
}
.schedule li small {
  color: var(--muted);
  line-height: 1.5;
}
.schedule li.highlight,
.schedule li.final-stage {
  color: #fff;
  border: 0;
  background: linear-gradient(130deg, #0b25bd, #2c2494);
}
.schedule li.highlight::after,
.schedule li.final-stage::after {
  background: var(--lime);
}
.schedule li.highlight::before,
.schedule li.final-stage::before {
  border-color: #1725aa;
  background: var(--lime);
  color: var(--ink);
}
.schedule li.highlight strong,
.schedule li.final-stage strong {
  color: var(--lime);
}
.schedule li.highlight span,
.schedule li.final-stage span {
  color: #fff;
}
.schedule li.highlight small,
.schedule li.final-stage small {
  color: #d6ddff;
}
.schedule li.final-stage {
  background: linear-gradient(130deg, #1725b6, #60329b);
}
.benefits {
  background: #f8fafc;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.benefit-grid article {
  min-height: 180px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 30px;
  border: 1px solid #dce4f2;
  border-radius: 22px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 18px 42px rgba(12, 30, 91, 0.08);
}
.benefit-grid article > span {
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: linear-gradient(145deg, var(--blue), #4f2d9a);
  color: var(--lime);
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(16, 37, 189, 0.22);
}
.benefit-grid h3 {
  margin: 3px 0 10px;
  font-size: 1.3rem;
}
.benefit-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 500;
}
.venue {
  padding: 88px max(24px, 10vw);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  color: #fff;
  background: linear-gradient(120deg, #071372, #0926c5, #4e2d98);
}
.venue h2 {
  margin: 12px 0 28px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 0.94;
}
.venue h2 span {
  color: #7cefff;
}
.venue-intro {
  max-width: 600px;
  margin: 24px 0;
  color: #c9d4ff;
  font-size: 1.03rem;
}
.venue-location {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-left: 3px solid #7cefff;
  background: rgba(255, 255, 255, 0.08);
}
.venue-pin {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  color: #07135f;
  background: #7cefff;
  font-size: 1.65rem;
  font-weight: 900;
}
.venue-location small,
.venue-location strong,
.venue-location div > span {
  display: block;
}
.venue-location small,
.venue-meta small {
  color: #8df4ff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.venue-location strong {
  margin: 3px 0;
  font-size: 1.22rem;
}
.venue-location div > span {
  color: #c9d4ff;
}
.venue-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 26px;
}
.venue-meta > span {
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(4, 16, 80, 0.25);
}
.venue-meta strong {
  display: block;
  margin-top: 5px;
  font-size: 0.88rem;
}
.venue-map-button {
  gap: 12px;
}
.venue-mark {
  padding: clamp(24px, 3vw, 38px);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.13);
}
.venue-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.venue-card-label {
  display: block;
  margin: 0;
  color: #8df4ff;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.venue-live {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
}
.venue-live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4d78;
  box-shadow: 0 0 14px #ff4d78;
}
.venue-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 20px;
}
.venue-facts div {
  padding: 14px 8px;
  border: 1px solid rgba(141, 244, 255, 0.25);
  background: rgba(4, 16, 80, 0.42);
  text-align: center;
}
.venue-facts strong,
.venue-facts span {
  display: block;
}
.venue-facts strong {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
}
.venue-facts span {
  margin-top: 6px;
  color: #c9d4ff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.venue-flow {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding: 0;
  list-style: none;
}
.venue-flow li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.055);
}
.venue-flow li > span {
  color: #8df4ff;
  font-size: 0.72rem;
  font-weight: 950;
}
.venue-flow strong,
.venue-flow small {
  display: block;
}
.venue-flow strong {
  font-size: 0.86rem;
}
.venue-flow small {
  margin-top: 2px;
  color: #aebdf5;
  font-size: 0.7rem;
}
.venue-brand-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.venue-brand-row img {
  width: 100%;
  height: 70px;
  margin: 0;
  padding: 0;
  object-fit: contain;
  background: transparent;
}
.faq {
  background: #f4f7fb;
}
.faq .accordion {
  max-width: 850px;
  margin: auto;
}
.faq h2,
.faq > .eyebrow {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
.accordion details {
  margin: 10px 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 25px rgba(20, 34, 80, 0.07);
}
.accordion summary {
  cursor: pointer;
  padding: 17px 20px;
  font-weight: 900;
}
.accordion details p {
  padding: 0 20px 20px;
  color: var(--muted);
}
.sponsors {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 290px);
  align-items: center;
  gap: clamp(36px, 7vw, 100px);
  background-color: #f4f7fc;
  background-image: linear-gradient(
      rgba(18, 53, 215, 0.035) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(18, 53, 215, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
}
.sponsors .center {
  max-width: 680px;
  margin: 0;
  text-align: left;
}
.sponsors .center h2 {
  margin-right: 0;
  margin-left: 0;
}
.center .sponsor-instruction {
  margin-top: 12px;
  color: var(--arena-cyan);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.025em;
}
.sponsor-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 290px));
  justify-content: center;
  gap: 18px;
}
.sponsor-grid::before {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% + 20px);
  width: clamp(24px, 4vw, 58px);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--arena-cyan));
  box-shadow: 0 0 12px rgba(32, 224, 255, 0.7);
}
.sponsor-card {
  height: 175px;
  padding: 22px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(7, 19, 95, 0.62);
  border-left: 4px solid var(--arena-navy);
  border-radius: 0;
  clip-path: polygon(
    18px 0,
    calc(100% - 30px) 0,
    100% 30px,
    100% calc(100% - 18px),
    calc(100% - 18px) 100%,
    24px 100%,
    0 calc(100% - 24px),
    0 18px
  );
  background-image: radial-gradient(
      circle at 100% 0,
      rgba(255, 255, 255, 0.42),
      transparent 38%
    ),
    repeating-linear-gradient(
      120deg,
      transparent 0 18px,
      rgba(7, 19, 95, 0.08) 18px 19px
    ),
    linear-gradient(145deg, #d9ff2f 0%, #c5f900 38%, #20e0ff 100%);
  box-shadow: 9px 9px 0 rgba(7, 19, 95, 0.24),
    14px 14px 0 rgba(84, 40, 166, 0.1),
    0 14px 32px rgba(20, 34, 80, 0.2);
  transition: transform 180ms ease, box-shadow 180ms ease,
    border-color 180ms ease;
}
.sponsor-card:hover,
.sponsor-card:focus-visible {
  transform: translateY(-6px) scale(1.015);
  border-color: var(--arena-navy);
  box-shadow: 11px 11px 0 rgba(18, 53, 215, 0.14),
    0 18px 38px rgba(20, 34, 80, 0.16),
    0 0 30px rgba(197, 249, 0, 0.38);
}
.sponsor-card:focus-visible {
  outline: 3px solid rgba(28, 83, 255, 0.25);
  outline-offset: 3px;
}
.sponsor-card img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 112%;
  max-width: none;
  height: auto;
  flex: 0 0 auto;
  filter: drop-shadow(0 5px 8px rgba(7, 19, 95, 0.22));
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, filter 220ms ease;
}
.sponsor-badge,
.sponsor-link-cue {
  position: absolute;
  z-index: 3;
  color: var(--arena-navy);
  font-size: 0.62rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sponsor-badge {
  top: 0;
  left: 18px;
  padding: 6px 13px 6px 16px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 9px) 100%, 0 100%);
  color: #fff;
  background: var(--arena-navy);
  box-shadow: 0 0 18px rgba(7, 19, 95, 0.28);
}
.sponsor-link-cue {
  right: 18px;
  bottom: 10px;
  color: var(--arena-navy);
  transition: color 180ms ease, transform 180ms ease;
}
.sponsor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    110deg,
    transparent 30%,
    rgba(32, 224, 255, 0.18) 48%,
    rgba(18, 53, 215, 0.1) 52%,
    transparent 70%
  );
  transform: translateX(-120%);
}
.sponsor-card::after {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(7, 19, 95, 0.34);
  border-top-color: rgba(255, 255, 255, 0.9);
  border-bottom-color: var(--arena-violet);
  clip-path: var(--arena-cut);
  animation: sponsor-frame-pulse 2.8s ease-in-out infinite;
}
.sponsor-card:hover::before,
.sponsor-card:focus-visible::before {
  animation: sponsor-scan 850ms ease-out;
}
.sponsor-card:hover img,
.sponsor-card:focus-visible img {
  transform: translate(-50%, -50%) scale(1.035);
  filter: drop-shadow(0 7px 10px rgba(7, 19, 95, 0.22));
}
.sponsor-card:hover .sponsor-link-cue,
.sponsor-card:focus-visible .sponsor-link-cue {
  color: var(--arena-violet);
  transform: translate(2px, -2px);
}
@keyframes sponsor-scan {
  to {
    transform: translateX(120%);
  }
}
@keyframes sponsor-frame-pulse {
  50% {
    opacity: 0.5;
    box-shadow: inset 0 0 18px rgba(32, 224, 255, 0.14);
  }
}
@media (prefers-reduced-motion: reduce) {
  .sponsor-card,
  .sponsor-card img {
    transition: none;
  }
  .sponsor-card:hover::before,
  .sponsor-card:focus-visible::before {
    animation: none;
  }
  .sponsor-card::after {
    animation: none;
  }
}
@media (max-width: 800px) {
  .sponsors {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .sponsors .center {
    margin: 0 auto;
    text-align: center;
  }
  .sponsors .center h2 {
    margin-right: auto;
    margin-left: auto;
  }
  .sponsor-grid::before {
    display: none;
  }
}
.powered-by {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 15% 25%, rgba(0, 213, 255, 0.2), transparent 30%),
    radial-gradient(circle at 85% 70%, rgba(98, 48, 180, 0.3), transparent 32%),
    linear-gradient(135deg, #071446, var(--navy) 55%, #15105e);
}
.powered-by::before {
  content: "08 // POWERED BY";
}
.powered-by .center {
  position: relative;
  z-index: 1;
  margin-bottom: 32px;
}
.powered-logo-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 18px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  background:
    repeating-linear-gradient(120deg, transparent 0 30px, rgba(32, 224, 255, 0.045) 30px 32px),
    rgba(3, 10, 54, 0.78);
  box-shadow: 0 0 0 1px rgba(32, 224, 255, 0.08), 0 28px 65px rgba(0, 0, 0, 0.35);
  clip-path: polygon(18px 0, calc(100% - 18px) 0, 100% 18px, 100% calc(100% - 18px), calc(100% - 18px) 100%, 18px 100%, 0 calc(100% - 18px), 0 18px);
  backdrop-filter: blur(12px);
}
.powered-logo-row figure {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-width: 0;
  margin: 0;
  padding: 18px 10px;
  border: 1px solid rgba(214, 177, 78, 0.68);
  border-top: 3px solid #d6b14e;
  border-radius: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 42%),
    linear-gradient(145deg, #eef3f8 0%, #d7e1ec 58%, #bdcadb 100%);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.5), 0 0 18px rgba(7, 24, 91, 0.22);
  clip-path: polygon(12px 0, 100% 0, 100% calc(100% - 12px), calc(100% - 12px) 100%, 0 100%, 0 12px);
  transition: transform 0.32s ease, filter 0.32s ease, box-shadow 0.32s ease;
}
.powered-logo-row figure::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -45%;
  z-index: -1;
  width: 30%;
  background: rgba(255, 255, 255, 0.72);
  transform: rotate(18deg);
  animation: powered-card-sweep 4.8s ease-in-out infinite;
}
.powered-logo-row figure:hover {
  z-index: 2;
  transform: translateY(-9px) scale(1.035);
  filter: saturate(1.05) brightness(1.04);
  box-shadow: 0 0 0 2px #d6b14e, 0 0 28px rgba(214, 177, 78, 0.3), 0 20px 35px rgba(0, 0, 0, 0.3);
}
.powered-logo-row img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100px;
  padding: 10px;
  object-fit: contain;
  transition: filter 0.3s ease;
  animation: powered-logo-pulse 4s ease-in-out infinite;
}
.discord-community {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(35px, 6vw, 80px);
  padding-block: clamp(48px, 5vw, 72px);
}
.discord-community::before {
  content: "07 // COMMUNITY";
}
.discord-poster {
  position: relative;
  width: min(100%, 340px);
  margin-inline: auto;
  overflow: hidden;
  border: 10px solid #fff;
  border-radius: 22px;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.3);
}
.discord-poster img {
  display: block;
  width: 100%;
}
.discord-poster .poster-scanner {
  right: 0;
  left: 0;
  width: 100%;
}
.discord-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.discord-description {
  max-width: 560px;
  margin: 14px 0 0;
  color: #c5d2f5;
  line-height: 1.65;
}
.discord-button {
  margin-top: 20px;
}
.community-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.community-actions .discord-button {
  margin-top: 0;
}
.powered-logo-row figure:nth-child(2) img { animation-delay: 0.35s; }
.powered-logo-row figure:nth-child(3) img { animation-delay: 0.7s; }
.powered-logo-row figure:nth-child(4) img { animation-delay: 1.05s; }
.powered-logo-row figure:nth-child(5) img { animation-delay: 1.4s; }
@keyframes powered-logo-pulse {
  0%, 100% { filter: drop-shadow(0 0 0 rgba(10, 35, 111, 0)); }
  50% { filter: drop-shadow(0 7px 10px rgba(10, 35, 111, 0.24)); }
}
@keyframes powered-card-sweep {
  0%, 58% { left: -45%; opacity: 0; }
  68% { opacity: 0.5; }
  86%, 100% { left: 125%; opacity: 0; }
}
.strategic {
  background: #fff;
}
.center {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 45px;
}
.center h2 {
  margin: 0 auto 20px;
}
.center > p:last-child {
  color: var(--muted);
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  max-width: 1200px;
  margin-inline: auto;
}
.partner-grid article {
  height: 155px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 1px solid #dfe5f0;
  border-radius: 16px;
  background: #fff;
}
.partner-grid img {
  max-width: 180px;
  max-height: 96px;
  object-fit: contain;
  margin-bottom: 8px;
}
.partner-grid strong {
  font-size: 1.8rem;
  color: var(--blue);
}
.partner-grid span {
  font-size: 0.75rem;
  color: var(--muted);
}
.partner-link {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.invest-card {
  margin-top: 40px;
  padding: 35px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  border-radius: 22px;
  background: var(--navy);
  color: #fff;
}
.invest-card h3 {
  font-size: 2rem;
}
.invest-card p:not(.eyebrow) {
  color: #cbd4f1;
}
.register {
  padding: 70px max(24px, 17vw);
  display: grid;
  grid-template-columns: 1fr 230px;
  column-gap: 70px;
  row-gap: 24px;
  align-items: center;
  color: #fff;
  background: linear-gradient(120deg, #06116e, #0925c4, #4f2c98);
}
.register h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}
.register > div > p:not(.eyebrow) {
  color: #d6dcff;
}
.register-help-card {
  grid-column: 1 / -1;
  position: relative;
  width: 100%;
  margin-top: 0;
}
.register-help-card p a {
  color: var(--lime);
  font-weight: 800;
}
.register-help-email {
  flex: 0 0 auto;
  color: var(--ink) !important;
  white-space: nowrap;
}
.large-qr {
  min-height: 230px;
  justify-content: center;
}
.large-qr > span {
  width: 115px;
}
.large-qr small {
  color: var(--muted);
}
footer {
  padding: 42px max(24px, 17vw);
  background: #050b3a;
  color: #c1c8e2;
}
.footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 70px;
  align-items: end;
}
.footer-logos {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}
.footer-logos img {
  width: 80px;
  height: 54px;
  object-fit: contain;
  background: #fff;
}
.footer-logos strong {
  font-size: 1.15rem;
}
.footer-main p {
  font-size: 0.8rem;
}
.footer-details {
  align-self: stretch;
}
.footer-link-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}
.footer-link-columns > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-link-columns h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer-link-columns a {
  color: #aeb9dc;
  font-size: 0.78rem;
}
.footer-link-columns a:hover {
  color: var(--lime);
}
.footer-bar {
  margin-top: 30px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-bar > span {
  color: #7f8db7;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.footer-socials {
  display: flex;
  gap: 8px;
}
.footer-socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.72rem;
  font-weight: 900;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}
.footer-socials svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}
.footer-socials a:hover {
  transform: translateY(-3px);
  border-color: var(--lime);
  background: rgba(184, 245, 0, 0.12);
}
@media (max-width: 1050px) {
  .site-header nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 22px;
    background: #202950;
    flex-direction: column;
    align-items: stretch;
  }
  .site-header nav.open {
    display: flex;
  }
  .menu-button {
    display: block;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-poster {
    width: min(100%, 520px);
  }
  .event-facts {
    grid-template-columns: 1fr;
  }
  .download-band,
  .section-intro,
  .schedule,
  .venue,
  .how-to-join {
    grid-template-columns: 1fr;
  }
  .how-to-join-poster {
    position: static;
  }
  .venue-mark {
    width: min(100%, 720px);
  }
  .category-grid,
  .format-grid {
    grid-template-columns: 1fr 1fr;
  }
  .category-poster-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .benefit-grid,
  .partner-grid {
    grid-template-columns: 1fr 1fr;
  }
  .register {
    grid-template-columns: 1fr;
  }
  .large-qr {
    width: 230px;
  }
  .invest-card {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-main {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .site-header {
    height: 64px;
    padding: 0 18px;
    gap: 12px;
  }
  .menu-button {
    position: static;
    margin-left: auto;
    order: 2;
  }
  .language-toggle {
    position: static;
    order: 3;
    margin: 0;
    padding: 3px;
  }
  .language-toggle button {
    min-width: 34px;
    height: 30px;
  }
  .site-header nav {
    top: 64px;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }
  .hero {
    width: 100%;
    max-width: 100vw;
    grid-template-columns: minmax(0, 1fr);
    min-height: auto;
    padding: 48px 20px 58px;
    gap: 38px;
  }
  .hero-copy {
    width: 100%;
    max-width: calc(100vw - 40px);
    overflow: hidden;
  }
  .hero-copy > * {
    max-width: 100%;
  }
  .hero-logo {
    width: 150px;
    margin: 0 auto 28px;
  }
  .hero .eyebrow,
  .hero h1,
  .hero-intro {
    text-align: center;
  }
  .hero h1 {
    font-size: clamp(2.65rem, 11vw, 3.55rem);
  }
  .mobile-line {
    display: block;
  }
  .hero-intro {
    font-size: 0.96rem;
    overflow-wrap: anywhere;
  }
  .actions {
    display: grid;
  }
  .actions .button {
    width: 100%;
  }
  .event-facts {
    grid-template-columns: 1fr;
  }
  .hero-poster {
    width: calc(100vw - 40px);
    min-height: 0;
    display: flex;
    justify-content: flex-start;
    gap: 14px;
    padding: 4px 2px 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--lime) rgba(255, 255, 255, 0.15);
  }
  .poster-card {
    flex: 0 0 min(78vw, 330px);
    width: auto;
    padding: 6px;
    scroll-snap-align: center;
  }
  .poster-card img {
    max-height: min(64vh, 490px);
  }
  .poster-feature,
  .poster-entry,
  .poster-discord {
    z-index: auto;
    transform: none;
    opacity: 1;
  }
  .download-band,
  .section,
  .venue,
  .register {
    padding: 64px 20px;
  }
  .download-band {
    grid-template-columns: minmax(0, 1fr);
    gap: 22px;
  }
  .game-visual,
  .download-card {
    padding: 10px;
    border-radius: 18px;
  }
  .game-visual {
    max-height: 560px;
  }
  .game-visual img {
    max-height: 530px;
  }
  .download-card {
    padding: 28px 20px;
  }
  .entry-actions {
    grid-template-columns: 1fr;
  }
  .qr-placeholder {
    min-height: 120px;
    flex-direction: row;
    justify-content: center;
    gap: 18px;
    text-align: left;
  }
  .entry-actions .qr-from-poster {
    flex: 0 0 84px;
    width: 84px;
  }
  .download-options {
    grid-template-columns: 1fr;
  }
  .download-options > p,
  .product-page-link {
    grid-column: 1;
  }
  .download-options img {
    width: min(100%, 220px);
  }
  .section h2,
  .venue h2,
  .register h2 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }
  .how-to-join h2 {
    font-size: clamp(2rem, 9vw, 3.1rem);
  }
  .category-grid,
  .format-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .category-poster-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    padding: 4px 2px 18px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 2px;
    scroll-behavior: smooth;
    overscroll-behavior-inline: contain;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--cyan) rgba(255, 255, 255, 0.12);
  }
  .category-poster-card {
    flex: 0 0 min(78vw, 320px);
    width: auto;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }
  .benefit-grid article {
    min-height: 0;
    padding: 24px 20px;
    gap: 18px;
  }
  .schedule {
    gap: 35px;
  }
  .schedule-poster img {
    width: min(100%, 390px);
    max-height: 560px;
    object-fit: contain;
  }
  .venue {
    gap: 38px;
  }
  .venue h2 {
    overflow-wrap: anywhere;
  }
  .venue-mark {
    padding: 24px 18px;
  }
  .venue-meta {
    grid-template-columns: 1fr;
  }
  .venue-brand-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .venue-brand-row img {
    height: 54px;
  }
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .powered-logo-row { padding: 16px; }
  .partner-grid article {
    height: 130px;
    padding: 13px;
  }
  .partner-grid img {
    max-width: 90px;
    max-height: 58px;
  }
  .register {
    gap: 30px;
  }
  .large-qr {
    width: 100%;
    max-width: 250px;
    justify-self: center;
    margin-inline: auto;
  }
  .footer-logos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 86px));
    align-items: center;
  }
  .footer-logos img {
    width: 100%;
    height: 58px;
  }
}
@media (max-width: 620px) {
  .download-links {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .download-store-link:first-child img {
    transform: scale(1.03);
  }
  .site-header {
    padding: 0 18px;
  }
  .event-wordmark {
    font-size: 0.92rem;
    padding-inline: 7px;
  }
  .hero {
    min-height: auto;
    padding: 65px 20px;
  }
  .hero-logo {
    width: 150px;
    height: 85px;
    margin-bottom: 30px;
  }
  h1,
  h2 {
    font-size: clamp(2.6rem, 13vw, 4.2rem);
  }
  .actions .button {
    width: 100%;
  }
  .download-band,
  .section,
  .venue,
  .register {
    padding: 65px 20px;
  }
  .download-band {
    grid-template-columns: 1fr;
  }
  .download-card {
    padding: 25px 18px;
  }
  .qr-placeholder {
    min-height: 0;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .entry-actions .qr-from-poster {
    flex-basis: 118px;
    width: 118px;
  }
  .qr-copy {
    align-items: center;
  }
  .category-grid,
  .format-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .partner-grid {
    grid-template-columns: 1fr 1fr;
  }
  .partner-grid article {
    height: 128px;
  }
  .invest-card {
    padding: 28px 22px;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-bar {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  footer {
    padding: 40px 20px;
  }
  .hero-poster {
    transform: none;
  }
  .how-to-join-steps li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    padding: 15px;
  }
  .how-to-join-steps li > span {
    width: 44px;
    height: 44px;
  }
  .how-to-join-steps p {
    font-size: 1rem;
  }
  .register {
    gap: 35px;
  }
  .large-qr {
    width: 100%;
    max-width: 230px;
  }
}

@media (max-width: 768px) {
  .powered-logo-row,
  .partner-grid {
    display: flex;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 14px;
    scroll-behavior: smooth;
    overscroll-behavior-inline: contain;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: var(--cyan) rgba(255, 255, 255, 0.12);
  }
  .powered-logo-row {
    gap: 12px;
    padding: 14px;
    clip-path: none;
  }
  .powered-logo-row figure {
    flex: 0 0 180px;
    padding: 15px 10px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
  .powered-logo-row img {
    height: 92px;
    padding: 7px;
  }
  .partner-grid {
    gap: 14px;
    padding: 4px 4px 18px;
  }
  .partner-grid article {
    flex: 0 0 min(78vw, 290px);
    height: 165px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }
}

/* Expanded sponsor showcase */
.sponsors { display: block; }
.sponsors .center { max-width: 850px; margin: 0 auto 42px; text-align: center; }
.sponsors .center h2 { margin-right: auto; margin-left: auto; }
.sponsor-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.sponsor-grid::before { display: none; }
.sponsor-card,
.sponsor-placeholder {
  min-height: 235px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 38px 40px 48px;
  border: 1px solid rgba(32, 224, 255, 0.38);
  border-radius: 0;
  clip-path: none;
  background: linear-gradient(rgba(32,224,255,.045) 1px,transparent 1px), linear-gradient(90deg,rgba(32,224,255,.045) 1px,transparent 1px), radial-gradient(circle at 80% 20%,rgba(84,40,166,.35),transparent 45%), #07135f;
  background-size: 28px 28px, 28px 28px, auto, auto;
  box-shadow: 10px 10px 0 rgba(32,224,255,.08), 0 18px 45px rgba(3,11,67,.25);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.sponsor-card:hover,
.sponsor-card:focus-visible {
  transform: translateY(-7px);
  border-color: var(--arena-lime);
  box-shadow: 12px 12px 0 rgba(197,249,0,.13), 0 22px 50px rgba(3,11,67,.3), 0 0 28px rgba(32,224,255,.15);
}
.sponsor-card::before,
.sponsor-card::after { display: none; }
.sponsor-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 13px rgba(32,224,255,.28));
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, filter 220ms ease;
}
.sponsor-logo-gamex { width: 110%; max-width: none; }
.sponsor-logo-mensa { width: min(78%, 360px); max-height: 165px; }
.sponsor-card img.sponsor-logo-kstar { width: min(70%, 340px); max-height: 120px; }
.sponsor-card img.sponsor-logo-thorbaq { width: min(105%, 560px); max-width: none; }
.sponsor-index {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 3;
  color: var(--arena-cyan);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .15em;
}
.sponsor-name {
  position: absolute;
  right: 20px;
  bottom: 14px;
  z-index: 3;
  color: #fff;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.sponsor-name b { margin-left: 4px; color: var(--arena-lime); }
.sponsor-card:hover .sponsor-logo,
.sponsor-card:focus-visible .sponsor-logo {
  transform: translate(-50%, -50%) scale(1.04);
  filter: drop-shadow(0 0 20px rgba(32,224,255,.5));
}
.sponsor-placeholder {
  border-style: dashed;
  background: rgba(7,19,95,.38);
  color: #cbd4f1;
  box-shadow: none;
  text-align: center;
}
.placeholder-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  border: 1px solid var(--arena-cyan);
  color: var(--arena-lime);
  font-size: 2rem;
  box-shadow: 0 0 18px rgba(32,224,255,.15);
}
.sponsor-placeholder strong { color: #fff; font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; }
.sponsor-placeholder small { margin-top: 6px; color: #9eb0db; }

/* High-contrast sponsor surfaces against the navy arena section */
.sponsor-card {
  border: 2px solid #07135f;
  background:
    linear-gradient(rgba(7,19,95,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,19,95,.07) 1px, transparent 1px),
    radial-gradient(circle at 85% 12%, rgba(255,255,255,.55), transparent 35%),
    linear-gradient(125deg, #c5f900 0%, #8ff5a8 48%, #20e0ff 100%);
  background-size: 28px 28px, 28px 28px, auto, auto;
  box-shadow: 10px 10px 0 rgba(32,224,255,.22), 16px 16px 0 rgba(7,19,95,.28), 0 22px 48px rgba(3,11,67,.3);
}
.sponsor-card:hover,
.sponsor-card:focus-visible {
  border-color: #fff;
  box-shadow: 12px 12px 0 rgba(197,249,0,.34), 18px 18px 0 rgba(7,19,95,.32), 0 0 34px rgba(32,224,255,.36);
}
.sponsor-index,
.sponsor-name {
  color: #07135f;
}
.sponsor-name b {
  color: #5428a6;
}
.sponsor-logo {
  filter: drop-shadow(0 6px 9px rgba(7,19,95,.2));
}
.sponsor-card:hover .sponsor-logo,
.sponsor-card:focus-visible .sponsor-logo {
  filter: drop-shadow(0 8px 12px rgba(7,19,95,.3));
}
.sponsor-placeholder {
  border: 2px dashed rgba(32,224,255,.58);
  background: rgba(32,224,255,.07);
  box-shadow: inset 0 0 32px rgba(32,224,255,.04);
}
@media (max-width: 800px) {
  .sponsor-grid { grid-template-columns: 1fr; }
  .sponsor-card,
  .sponsor-placeholder { min-height: 210px; }
}
@media (max-width: 620px) {
  .contact-fab {
    right: 16px;
    bottom: 18px;
  }
  .phone-fab-label {
    font-size: 0.7rem;
  }
}

/* Sponsored prize showcase */
.sponsored-prize {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 8% 8%, rgba(32, 224, 255, 0.24), transparent 28%),
    radial-gradient(circle at 92% 78%, rgba(197, 249, 0, 0.12), transparent 28%),
    linear-gradient(135deg, #071446 0%, #07135f 52%, #15105e 100%);
}
.sponsored-prize-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 48px;
}
.sponsored-prize .eyebrow {
  color: var(--arena-cyan, #20e0ff);
}
.sponsored-prize h2 {
  max-width: 720px;
  color: #fff;
}
.sponsored-prize-intro {
  max-width: 650px;
  margin: 20px 0 0;
  color: #cbd4f1;
  font-size: 1.02rem;
  line-height: 1.75;
}
.prize-pool-stamp {
  min-width: 190px;
  padding: 20px 24px 18px;
  border: 1px solid rgba(197, 249, 0, 0.76);
  border-radius: 2px;
  background: rgba(7, 19, 95, 0.5);
  box-shadow: 8px 8px 0 rgba(32, 224, 255, 0.12), 0 0 28px rgba(197, 249, 0, 0.08);
  text-align: right;
}
.prize-pool-stamp span,
.prize-pool-stamp small {
  display: block;
  color: #9eb0db;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.prize-pool-stamp strong {
  display: block;
  margin: 5px 0 2px;
  color: var(--arena-lime, #c5f900);
  font-size: clamp(1.8rem, 3vw, 2.75rem);
  font-weight: 950;
  letter-spacing: -0.04em;
  line-height: 1;
}
.prize-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.prize-card {
  display: flex;
  min-width: 0;
  height: 485px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(32, 224, 255, 0.36);
  background: rgba(5, 13, 65, 0.72);
  box-shadow: 9px 9px 0 rgba(32, 224, 255, 0.08), 0 20px 44px rgba(3, 11, 67, 0.26);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}
.prize-card:hover {
  transform: translateY(-7px);
  border-color: var(--arena-lime, #c5f900);
  box-shadow: 12px 12px 0 rgba(197, 249, 0, 0.13), 0 25px 52px rgba(3, 11, 67, 0.34);
}
.prize-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 18px 12px;
  border-bottom: 1px solid rgba(32, 224, 255, 0.18);
}
.prize-rank {
  color: var(--arena-lime, #c5f900);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}
.prize-place {
  color: #9eb0db;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.prize-visual {
  position: relative;
  display: grid;
  height: 224px;
  min-height: 224px;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(rgba(32, 224, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 224, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(32, 224, 255, 0.15), transparent 58%),
    #09164f;
  background-size: 24px 24px, 24px 24px, auto, auto;
}
.prize-visual::after {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  clip-path: polygon(14px 0, calc(100% - 14px) 0, 100% 14px, 100% calc(100% - 14px), calc(100% - 14px) 100%, 14px 100%, 0 calc(100% - 14px), 0 14px);
}
.prize-glow {
  position: absolute;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(32, 224, 255, 0.2);
  filter: blur(28px);
}
.prize-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 86%;
  max-width: 86%;
  height: 175px;
  object-fit: contain;
  filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.35));
  transition: transform 220ms ease;
}
.prize-card:hover .prize-visual img {
  transform: scale(1.04);
}
.prize-visual-kstar img {
  width: 86%;
  max-width: 86%;
}
.prize-visual-thorbaq img {
  width: 86%;
  max-width: 86%;
}
.prize-visual-dambola img {
  width: 86%;
  max-width: 86%;
}
.prize-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px 22px 22px;
}
.prize-sponsor {
  margin: 0 0 9px;
  color: var(--arena-cyan, #20e0ff);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.prize-sponsor strong {
  color: #fff;
}
.prize-card h3 {
  color: #fff;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.08;
}
.prize-card-body > p:not(.prize-sponsor) {
  margin: 10px 0 18px;
  color: #aebbdc;
  font-size: 0.9rem;
  line-height: 1.55;
}
.prize-sponsor-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  margin-top: auto;
  color: var(--arena-lime, #c5f900);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.prize-sponsor-link span {
  font-size: 1rem;
  transition: transform 180ms ease;
}
.prize-sponsor-link:hover span,
.prize-sponsor-link:focus-visible span {
  transform: translate(2px, -2px);
}
.prize-sponsor-link:focus-visible {
  outline: 2px solid var(--arena-lime, #c5f900);
  outline-offset: 5px;
}
.prize-note {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 28px auto 0;
  color: #8191bb;
  font-size: 0.76rem;
}
@media (prefers-reduced-motion: reduce) {
  .prize-card,
  .prize-visual img,
  .prize-sponsor-link span {
    transition: none;
  }
}
@media (max-width: 980px) {
  .sponsored-prize-heading,
  .prize-grid,
  .prize-note {
    max-width: 760px;
  }
  .prize-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 800px) {
  .sponsored-prize-heading {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 32px;
    text-align: center;
  }
  .sponsored-prize-intro {
    margin-right: auto;
    margin-left: auto;
  }
  .prize-pool-stamp {
    justify-self: center;
    text-align: center;
  }
  .prize-grid {
    grid-template-columns: 1fr;
  }
  .prize-card {
    height: auto;
    min-height: 0;
  }
}
