/* =========================
   BASE
========================= */

:root {
  --bg: #050713;
  --panel: rgba(8, 10, 24, .78);
  --panel-strong: rgba(255, 255, 255, .09);
  --line: rgba(255, 255, 255, .18);
  --text: #f8fafc;
  --muted: rgba(248, 250, 252, .68);
  --fusion: #80ff38;
  --green: #19f29a;
  --purple: #a536ff;
  --cyan: #39d7ff;
}

@font-face {
  font-family: 'Hey November';
  src: url('assets/fonts/HeyNovember.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Sora', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 12%, rgba(128, 255, 56, .18), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(165, 54, 255, .34), transparent 30%),
    radial-gradient(circle at 50% 105%, rgba(57, 215, 255, .16), transparent 38%),
    linear-gradient(145deg, #03040d 0%, #070916 50%, #04030c 100%);
  overflow-x: hidden;
}

/* =========================
   BACKGROUND
========================= */

.bg-noise,
.confetti {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.bg-noise {
  opacity: .13;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 260 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

.confetti {
  opacity: .45;
  background:
    radial-gradient(circle at 24% 12%, #80ff38 0 3px, transparent 4px),
    radial-gradient(circle at 33% 8%, #a536ff 0 3px, transparent 4px),
    radial-gradient(circle at 72% 9%, #39d7ff 0 2px, transparent 3px),
    radial-gradient(circle at 83% 15%, #80ff38 0 2px, transparent 3px),
    linear-gradient(80deg, transparent 0 45%, rgba(128, 255, 56, .4) 45% 46%, transparent 46% 100%),
    linear-gradient(130deg, transparent 0 66%, rgba(165, 54, 255, .45) 66% 67%, transparent 67% 100%);
  mix-blend-mode: screen;
}

.arena-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: .35;
  pointer-events: none;
}

.arena-green {
  background: #80ff38;
  left: -120px;
  top: 24%;
}

.arena-purple {
  background: #a536ff;
  right: -120px;
  top: 14%;
}

/* =========================
   LAYOUT
========================= */

.app-shell {
  width: min(1480px, calc(100% - 56px));
  margin: 0 auto;
  padding: 30px 0 42px;
  position: relative;
  z-index: 2;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

/* =========================
   TOPBAR
========================= */

.event-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(5, 12, 20, .75);
  border: 1px solid rgba(128, 255, 56, .35);
  border-radius: 18px;
  width: fit-content;
}

.event-copy {
  display: flex;
  flex-direction: column;
}

.event-copy strong {
  line-height: 1.1;
}

.event-copy small {
  margin-top: 4px;
}

.event-chip strong {
  display: block;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 1.05rem;
}

.event-chip small {
  color: var(--muted);
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .8;
}

.live-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 18px;
  background: #19f29a;
  min-width: 140px;
  justify-content: center;
  box-shadow: 0 0 24px rgba(25, 242, 154, .35);
}

.live-box strong {
  color: #04140d;
  font-size: .95rem;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0a7d4c;
  box-shadow: 0 0 10px rgba(10, 125, 76, .8);
  animation: pulseLive 1.2s ease-in-out infinite;
}

@keyframes pulseLive {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: .55;
  }
}

/* =========================
   HERO
========================= */

.hero {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 0 20px;
  position: relative;
}

.logo-word {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: .72;
  transform: translateX(18px);
}

.logo-word span,
.logo-word strong {
  font-family: 'Hey November', sans-serif !important;
  text-transform: uppercase;
  display: block;
  margin: 0;
  padding: 0;
  position: static;
}

.logo-word span {
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  color: #ffffff;
  margin-bottom: -10px;
  text-shadow:
    0 0 18px rgba(255, 255, 255, .35),
    0 0 42px rgba(255, 255, 255, .18);
  z-index: 2;
}

.logo-word strong {
  font-size: clamp(6.7rem, 13vw, 11.2rem);
  color: #ff6b00;
  letter-spacing: .04em;
  text-shadow: none;
}

.table-title {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: clamp(.95rem, 1.45vw, 1.25rem);
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 255, 255, .25);
}

.table-title i {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  background: #80ff38;
  box-shadow: 0 0 24px rgba(128, 255, 56, .9);
}

/* =========================
   SUMMARY
========================= */

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 24px 0;
}

.summary-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px 26px;
  min-height: 126px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .04));
  box-shadow:
    0 22px 70px rgba(0, 0, 0, .32),
    inset 0 1px 0 rgba(255, 255, 255, .13);
}

.summary-card span {
  color: var(--muted);
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
}

.summary-card strong {
  display: block;
  font-size: clamp(2.3rem, 4.6vw, 4rem);
  line-height: .9;
  letter-spacing: -.05em;
}

.summary-card small {
  color: var(--muted);
  font-weight: 800;
}

.leader-card {
  background: linear-gradient(135deg, rgba(128, 255, 56, .20), rgba(255, 255, 255, .05));
}

.purple-card {
  background: linear-gradient(135deg, rgba(165, 54, 255, .22), rgba(255, 255, 255, .05));
}

/* =========================
   PANELS
========================= */

.glass-card,
.section-panel,
.ranking-stage {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(255, 255, 255, .045));
  box-shadow:
    0 24px 85px rgba(0, 0, 0, .38),
    inset 0 1px 0 rgba(255, 255, 255, .12);
  backdrop-filter: blur(18px);
  border-radius: 28px;
}

.section-title span,
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .09em;
  color: #28ff9d;
  font-weight: 900;
  font-size: .82rem;
}

.section-title h2 {
  margin: 6px 0 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -.055em;
  line-height: .95;
}

.centered {
  text-align: center;
}

/* =========================
   RANKING
========================= */

.ranking-stage {
  padding: 24px;
  margin-bottom: 22px;
}

.ranking-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 24px;
  align-items: stretch;
}

.rank-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 430px;
  padding: 22px;
  border-radius: 24px;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 16%, color-mix(in srgb, var(--team-color) 42%, transparent), transparent 36%),
    radial-gradient(circle at 50% 100%, color-mix(in srgb, var(--team-color) 28%, transparent), transparent 42%),
    linear-gradient(180deg, color-mix(in srgb, var(--team-color) 22%, #050713), #050713 72%);
  border: 2px solid color-mix(in srgb, var(--team-color) 75%, white 10%);
  box-shadow:
    0 0 34px color-mix(in srgb, var(--team-color) 45%, transparent),
    inset 0 0 42px color-mix(in srgb, var(--team-color) 18%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, .18);
}

.rank-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .05), transparent 38%, rgba(255, 255, 255, .07));
  pointer-events: none;
}

.position-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  background: rgba(0, 0, 0, .42);
  border: 2px solid var(--team-color);
  color: var(--team-color);
  box-shadow: 0 0 24px color-mix(in srgb, var(--team-color) 55%, transparent);
  z-index: 10;
}

.rank-1 .position-badge {
  color: #ffbe3b;
  border-color: #ffbe3b;
  box-shadow:
    0 0 10px #ffbe3b,
    0 0 25px rgba(255, 190, 59, .5);
}

.rank-2 .position-badge {
  color: #e7e7e7;
  border-color: #e7e7e7;
  box-shadow:
    0 0 10px #e7e7e7,
    0 0 25px rgba(231, 231, 231, .4);
}

.rank-3 .position-badge {
  background: #cd7f32;
  color: #111;
  border-color: #e0a15f;
  box-shadow: 0 0 18px rgba(205, 127, 50, .55);
}

.rank-4 .position-badge {
  color: #4dff9a;
  border-color: #4dff9a;
  box-shadow:
    0 0 10px #4dff9a,
    0 0 25px rgba(77, 255, 154, .4);
}

.team-mark {
  display: none;
}

.rank-card h3 {
  font-family: 'Hey November', sans-serif;
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: .9;
  text-transform: none;
  text-align: center;
  font-weight: normal;
  margin: 55px 0 15px;
  color: var(--team-color);
}

.rank-card:nth-child(2) h3 {
  font-size: 3.2rem;
}

.rank-card:nth-child(3) h3 {
  font-size: 3rem;
}

.team-label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 230px;
  height: 42px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-weight: 900;
  background: var(--team-color);
  color: #07110d;
  box-shadow: 0 0 24px color-mix(in srgb, var(--team-color) 60%, transparent);
}

.rank-card p {
  margin: 30px 0 10px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
  font-weight: 800;
}

.rank-card strong {
  display: block;
  min-height: 82px;
  font-size: clamp(3.2rem, 4.5vw, 4.8rem);
  line-height: .9;
  letter-spacing: -.06em;
  color: color-mix(in srgb, var(--team-color) 80%, white);
  text-shadow: 0 0 28px color-mix(in srgb, var(--team-color) 45%, transparent);
}

.rank-card strong small {
  font-size: 1.3rem;
  margin-left: 6px;
  text-transform: uppercase;
}

.last-score {
  margin-top: 18px;
  min-height: 46px;
  border: 1px solid color-mix(in srgb, var(--team-color) 55%, white 8%);
  border-radius: 999px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, .32);
}

.last-score span {
  color: color-mix(in srgb, var(--team-color) 85%, white);
  font-weight: 900;
  font-size: 1.08rem;
  white-space: nowrap;
}

.last-score small {
  color: rgba(255, 255, 255, .78);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* =========================
   COLORES POR EQUIPO
========================= */

.rank-card.the-black-boys {
  background:
    radial-gradient(circle at 50% 20%, rgba(0, 0, 0, .25), transparent 45%),
    linear-gradient(180deg, #080808, #020202);
}

.rank-card.the-black-boys h3 {
  color: #ffffff;
}

.rank-card.the-black-boys .team-label {
  background: #000000;
  color: #ffffff;
}

.rank-card.the-black-boys strong,
.rank-card.the-black-boys .last-score small,
.rank-card.the-black-boys .last-score span {
  color: #ffffff;
}

.rank-card.quitamanchas {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, .95), transparent 42%),
    linear-gradient(180deg, #ffffff 0%, #f4f4f4 58%, #dedede 100%);
  border-color: #ffffff;
  color: #050505;
  box-shadow:
    0 0 34px rgba(255, 255, 255, .45),
    inset 0 1px 0 rgba(255, 255, 255, .9);
}

.rank-card.quitamanchas h3 {
  color: #050505;
  text-shadow: none;
}

.rank-card.quitamanchas .team-label {
  background: #ffffff;
  color: #050505;
  border: 1px solid rgba(0, 0, 0, .18);
  box-shadow: 0 0 22px rgba(255, 255, 255, .65);
}

.rank-card.quitamanchas p {
  color: rgba(0, 0, 0, .72);
}

.rank-card.quitamanchas strong,
.rank-card.quitamanchas strong small {
  color: #050505;
  text-shadow: none;
}

.rank-card.quitamanchas .last-score {
  background: rgba(0, 0, 0, .04);
  border: 1px solid rgba(0, 0, 0, .22);
}

.rank-card.quitamanchas .last-score span {
  color: #0f7a2f;
}

.rank-card.quitamanchas .last-score small {
  color: rgba(0, 0, 0, .72);
}

.rank-card.la-septima-banda {
  background:
    radial-gradient(circle at 50% 20%, rgba(168, 85, 247, .45), transparent 45%),
    linear-gradient(180deg, #52218c, #2a104a);
}

.rank-card.la-septima-banda h3 {
  color: #ffffff;
}

.rank-card.la-septima-banda p {
  color: rgba(255, 255, 255, .85);
}

.rank-card.la-septima-banda strong {
  color: #a970ff;
}

.rank-card.la-septima-banda .last-score small {
  color: #d8c2ff;
}

.rank-card.los-elegidos {
  background:
    radial-gradient(circle at 50% 20%, rgba(34, 197, 94, .45), transparent 45%),
    linear-gradient(180deg, #0f4d2b, #082515);
}

.rank-card.los-elegidos h3 {
  color: #22c55e;
}

/* =========================
   TEAMS PANEL
========================= */

.teams-panel {
  padding: 24px;
  margin-bottom: 22px;
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.team-card {
  padding: 20px;
  min-height: 250px;
  position: relative;
  overflow: hidden;
}

.team-card::after {
  content: '';
  position: absolute;
  right: -52px;
  top: -70px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--team-color);
  filter: blur(4px);
  opacity: .23;
}

.team-card-top {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
}

.team-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--team-color);
  box-shadow: 0 0 24px var(--team-color);
}

.team-card h3 {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: -.04em;
  position: relative;
  z-index: 1;
}

.members-count {
  margin: 12px 0 0;
  color: var(--muted);
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.members-list {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  position: relative;
  z-index: 1;
}

.members-list span {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .16);
  font-size: .78rem;
  font-weight: 800;
}

/* =========================
   MOVEMENTS + CHAMPION
========================= */

.two-columns {
  display: grid;
  grid-template-columns: 1.25fr .95fr;
  gap: 22px;
  align-items: stretch;
}

.moves-panel {
  padding: 24px;
}

.moves-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.move-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(0, 0, 0, .30);
  border: 1px solid rgba(255, 255, 255, .13);
}

.move-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .42);
  border: 1px solid rgba(128, 255, 56, .35);
}

.move-copy strong {
  display: block;
  font-size: 1.05rem;
}

.move-copy span {
  color: var(--muted);
  font-weight: 800;
}

.move-points {
  color: #24ff9d;
  font-size: 1.35rem;
  font-weight: 900;
}

.champion-card {
  padding: 34px 36px;
  min-height: 100%;
}

.trophy {
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 22px rgba(255, 221, 102, .34));
}

.champion-card .eyebrow {
  display: block;
  margin-bottom: 2px;
}

.champion-card h3 {
  margin: 0 0 24px;
  font-size: clamp(2.05rem, 3.4vw, 3.2rem);
  line-height: .9;
  letter-spacing: -.055em;
}

.odds-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 12px;
}

.odds-team {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.odds-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.05rem;
}

.odds-header strong {
  font-size: 1.15rem;
}

.odds-bar {
  height: 11px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, .16);
}

.odds-fill {
  height: 100%;
  border-radius: 999px;
  transition: width .65s ease;
  box-shadow: 0 0 20px currentColor;
}

.empty-state {
  color: var(--muted);
  font-weight: 800;
}

/* =========================
   PRIZE CARD
========================= */

.prize-card {
  margin-top: 30px;
  padding: 30px 32px 34px;
  border-radius: 26px;
  border: 1px solid rgba(255,106,0,.45);
  background:
    radial-gradient(circle at 25% 45%, rgba(255,180,45,.28), transparent 34%),
    linear-gradient(135deg, rgba(255,106,0,.13), rgba(0,0,0,.22));
  box-shadow:
    0 0 42px rgba(255,106,0,.16),
    inset 0 1px 0 rgba(255,255,255,.12);
  text-align: center;
}

.prize-cup-img {
  width: min(220px, 62%);
  height: auto;
  display: block;
  margin: 0 auto 18px;
  filter:
    drop-shadow(0 0 24px rgba(255,190,60,.75))
    drop-shadow(0 0 60px rgba(255,106,0,.28));
}

.prize-content span {
  display: block;
  margin-top: 2px;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}

.prize-content h3 {
  margin: 6px auto 26px;
  font-family: 'Hey November', sans-serif;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: .82;
  color: #ff6a00;
  letter-spacing: .04em;
  text-align: center;
  text-shadow:
    0 0 14px rgba(255,106,0,.45),
    0 0 30px rgba(255,106,0,.22);
}

.prize-items {
  display: grid;
  gap: 12px;
  width: min(460px, 100%);
  margin: 0 auto;
}

.prize-item {
  width: 100%;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;
  line-height: 1.25;
  font-weight: 800;

  background: rgba(0,0,0,.26);
  border: 1px solid rgba(255,106,0,.28);
  color: rgba(255,255,255,.92);
}

.prize-card > strong {
  display: block;
  margin-top: 24px;
  font-size: 1rem;
  text-align: center;
}

/* =========================
   FOOTER
========================= */

.footer-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 26px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer-line strong {
  color: white;
  font-size: 1.8rem;
}

.footer-line span {
  color: #b95cff;
  font-weight: 900;
}

.footer-logo-only {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.footer-logo-only img,
.footer-line img {
  width: 220px;
  height: auto;
  opacity: .9;
}

/* =========================
   TABLET
========================= */

@media (max-width: 1180px) {
  .ranking-cards,
  .teams-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-columns {
    grid-template-columns: 1fr;
  }

  .hero {
    margin-top: 20px;
  }
}

/* =========================
   MOBILE
========================= */

@media (max-width: 760px) {
  .app-shell {
    width: min(100% - 24px, 1480px);
    padding-top: 18px;
  }

  .topbar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .event-chip,
  .live-box {
    width: 100%;
    min-width: 0;
  }

  .live-box {
    padding: 12px 18px;
  }

  .hero {
    min-height: 240px;
    padding: 30px 0 10px;
  }

  .logo-word {
    transform: none;
    margin-top: -45px;
  }

  .logo-word span {
    font-size: clamp(2.2rem, 12vw, 4rem);
    margin-bottom: -8px;
  }

  .logo-word strong {
    font-size: clamp(5rem, 23vw, 8rem);
    letter-spacing: .02em;
  }

  .table-title {
    font-size: .82rem;
    letter-spacing: .12em;
    gap: 14px;
    margin-bottom: 8px;
  }

  .summary-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 0;
  }

  .summary-card {
    padding: 22px 26px;
  }

  .ranking-stage {
    padding: 18px;
  }

  .ranking-cards,
  .teams-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .rank-card {
    min-height: 420px;
    padding: 24px 18px;
  }

  .rank-card h3 {
    font-size: clamp(2.4rem, 12vw, 4.2rem);
    margin: 58px 0 18px;
  }

  .rank-card:nth-child(2) h3,
  .rank-card:nth-child(3) h3 {
    font-size: clamp(2.4rem, 12vw, 4.2rem);
  }

  .team-label {
    width: min(260px, 82%);
  }

  .rank-card strong {
    font-size: clamp(4rem, 18vw, 6rem);
  }

  .last-score {
    font-size: .85rem;
  }

  .two-columns {
    grid-template-columns: 1fr;
  }

  .move-item {
    grid-template-columns: 1fr auto;
  }

  .move-icon {
    display: none;
  }

  .champion-card {
    padding: 28px 24px;
  }

  .prize-card {
    padding: 28px 22px;
  }

  .prize-cup-img {
    width: min(220px, 75%);
  }

  .footer-line {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    margin: 42px 0 80px !important;
    text-align: center !important;
  }

  .footer-line img,
  .footer-logo-only img {
    display: block !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 190px !important;
  }
}