:root {
  --app-width: 390px;
  --app-max-width: 430px;
  --text: #fff;
  --muted: rgba(255, 255, 255, .78);
  --soft: rgba(255, 255, 255, .62);
  --dark-glass: rgba(36, 30, 27, .56);
  --card-radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  --page-bg-fallback: #8f463f;
  --page-bg-top: var(--page-bg-fallback);
  --page-bg-bottom: var(--page-bg-fallback);
  min-height: 100%;
  background-color: var(--page-bg-top);
  background-image: linear-gradient(to bottom, var(--page-bg-top), var(--page-bg-bottom));
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  justify-content: center;
  color: var(--text);
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  background-color: var(--page-bg-bottom);
  background-image: linear-gradient(to bottom, var(--page-bg-top), var(--page-bg-bottom));
}

.fixed-photo-bg {
  position: fixed;
  inset: 0 auto 0 50%;
  z-index: 0;
  width: min(100vw, var(--app-max-width));
  transform: translateX(-50%);
  pointer-events: none;
  overflow: hidden;
  background: var(--page-bg-fallback);
}

html.page-qatar,
body.page-qatar {
  --page-bg-fallback: #0137a4;
  --page-bg-top: #0137a4;
  --page-bg-bottom: #0137a4;
}

html.page-brasil-2014,
body.page-brasil-2014,
html.page-brasil-1950,
body.page-brasil-1950 {
  --page-bg-fallback: #0080ad;
  --page-bg-top: #0080ad;
  --page-bg-bottom: #0080ad;
}

html.page-sudafrica-2010,
body.page-sudafrica-2010 {
  --page-bg-fallback: #a9390f;
  --page-bg-top: #a9390f;
  --page-bg-bottom: #a9390f;
}

html.page-corea-japon-2002,
body.page-corea-japon-2002 {
  --page-bg-fallback: #114576;
  --page-bg-top: #114576;
  --page-bg-bottom: #114576;
}

html.page-francia-1998,
body.page-francia-1998,
html.page-francia-1938,
body.page-francia-1938 {
  --page-bg-fallback: #811788;
  --page-bg-top: #811788;
  --page-bg-bottom: #811788;
}

html.page-estados-unidos-1994,
body.page-estados-unidos-1994 {
  --page-bg-fallback: #8f2606;
  --page-bg-top: #8f2606;
  --page-bg-bottom: #8f2606;
}

html.page-italia-1990,
body.page-italia-1990,
html.page-italia-1934,
body.page-italia-1934 {
  --page-bg-fallback: #00a98c;
  --page-bg-top: #00a98c;
  --page-bg-bottom: #00a98c;
}

html.page-mexico-1986,
body.page-mexico-1986,
html.page-mexico-1970,
body.page-mexico-1970 {
  --page-bg-fallback: #5b7144;
  --page-bg-top: #5b7144;
  --page-bg-bottom: #5b7144;
}

html.page-espana-1982,
body.page-espana-1982 {
  --page-bg-fallback: #821a1a;
  --page-bg-top: #821a1a;
  --page-bg-bottom: #821a1a;
}

html.page-argentina-1978,
body.page-argentina-1978 {
  --page-bg-fallback: #00226b;
  --page-bg-top: #00226b;
  --page-bg-bottom: #00226b;
}

html.page-inglaterra-1966,
body.page-inglaterra-1966 {
  --page-bg-fallback: #002a46;
  --page-bg-top: #002a46;
  --page-bg-bottom: #002a46;
}

html.page-chile-1962,
body.page-chile-1962 {
  --page-bg-fallback: #007193;
  --page-bg-top: #007193;
  --page-bg-bottom: #007193;
}

html.page-suecia-1958,
body.page-suecia-1958 {
  --page-bg-fallback: #435d85;
  --page-bg-top: #435d85;
  --page-bg-bottom: #435d85;
}

html.page-suiza-1954,
body.page-suiza-1954 {
  --page-bg-fallback: #39660f;
  --page-bg-top: #39660f;
  --page-bg-bottom: #39660f;
}

html.page-uruguay-1930,
body.page-uruguay-1930 {
  --page-bg-fallback: #5b477d;
  --page-bg-top: #5b477d;
  --page-bg-bottom: #5b477d;
}

html.page-players,
body.page-players {
  --page-bg-fallback: #0137a4;
  --page-bg-top: #0137a4;
  --page-bg-bottom: #0137a4;
}

html.page-equipos,
body.page-equipos {
  --page-bg-fallback: #0137a4;
  --page-bg-top: #0137a4;
  --page-bg-bottom: #0137a4;
}

html.page-goals,
body.page-goals {
  --page-bg-fallback: #0137a4;
  --page-bg-top: #0137a4;
  --page-bg-bottom: #0137a4;
}

html.page-bookings,
body.page-bookings {
  --page-bg-fallback: #0137a4;
  --page-bg-top: #0137a4;
  --page-bg-bottom: #0137a4;
}

@media (min-width: 431px) {
  body {
    background:
      linear-gradient(90deg, #080808, #1f1f1f 18%, #0d0d0d 50%, #202020 82%, #080808);
  }
}

html.page-worldcup-home,
body.page-worldcup-home {
  background-color: var(--page-bg-bottom) !important;
  background-image: linear-gradient(to bottom, var(--page-bg-top), var(--page-bg-bottom)) !important;
}

.fixed-photo-bg img {
  width: 100%;
  height: 100dvh;
  min-height: 100vh;
  display: block;
  object-fit: cover;
  object-position: center top;
}

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

.phone-shell {
  position: relative;
  z-index: 1;
  width: min(100vw, var(--app-max-width));
  min-height: 100vh;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 0 80px rgba(0, 0, 0, .55);
}

body.page-partidos {
  display: block;
}

body.page-partidos .phone-shell {
  margin: 0 auto;
  overflow: hidden;
}

body.page-qatar-champion {
  display: block;
  overflow: auto;
}

body.page-qatar-champion .phone-shell {
  margin: 0 auto;
  overflow: hidden;
}

body.page-qatar-champion .app-screen > .screen-tint {
  background: rgba(0, 0, 0, 0) !important;
}

.app-screen {
  position: relative;
  min-height: 100vh;
  padding: 55px 22px 105px;
  background: transparent;
}

.screen-tint {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.app-screen > :not(.screen-tint) {
  position: relative;
  z-index: 1;
}

.fixture-intro-reveal-ready .fixture-intro-reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 460ms cubic-bezier(.22, .8, .2, 1),
    transform 320ms cubic-bezier(.22, .8, .2, 1);
  will-change: opacity, transform;
}

.fixture-intro-reveal-ready .fixture-intro-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .fixture-intro-reveal-ready .fixture-intro-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translate3d(0, 19px, 0);
  transition:
    opacity 760ms cubic-bezier(.22, .8, .2, 1),
    transform 590ms cubic-bezier(.22, .8, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.reveal-ready .goal-scorer[data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal-ready .goal-scorer[data-reveal]::before,
.reveal-ready .goal-scorer[data-reveal] > * {
  opacity: 0;
  transition: opacity 760ms cubic-bezier(.22, .8, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready .goal-scorer[data-reveal].is-visible::before,
.reveal-ready .goal-scorer[data-reveal].is-visible > * {
  opacity: 1;
}

.reveal-ready .booking-player[data-reveal],
.reveal-ready .booking-total[data-reveal] {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal-ready .booking-player[data-reveal]::before,
.reveal-ready .booking-player[data-reveal] > *,
.reveal-ready .booking-total[data-reveal]::before,
.reveal-ready .booking-total[data-reveal] > * {
  opacity: 0;
  transition: opacity 760ms cubic-bezier(.22, .8, .2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready .booking-player[data-reveal].is-visible::before,
.reveal-ready .booking-player[data-reveal].is-visible > *,
.reveal-ready .booking-total[data-reveal].is-visible::before,
.reveal-ready .booking-total[data-reveal].is-visible > * {
  opacity: 1;
}

body.page-partidos .hero.is-visible,
body.page-partidos .matches-reveal-final.is-visible,
body.page-partidos .matches-reveal-third.is-visible,
body.page-partidos .matches-reveal-ad.is-visible {
  opacity: 1;
  transform: none;
}

body.page-partidos .hero,
body.page-partidos .matches-reveal-final,
body.page-partidos .matches-reveal-third,
body.page-partidos .matches-reveal-ad {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.fixture-intro-reveal-ready body.page-partidos .fixture-intro-reveal {
  opacity: 0 !important;
  transform: translate3d(0, 18px, 0) !important;
  transition:
    opacity 460ms cubic-bezier(.22, .8, .2, 1),
    transform 320ms cubic-bezier(.22, .8, .2, 1);
  will-change: opacity, transform;
}

.fixture-intro-reveal-ready body.page-partidos .fixture-intro-reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

.fixture-intro-reveal-ready body.page-players .fixture-intro-reveal {
  opacity: 0 !important;
  transform: translate3d(0, 18px, 0) !important;
  transition:
    opacity 460ms cubic-bezier(.22, .8, .2, 1),
    transform 320ms cubic-bezier(.22, .8, .2, 1);
  will-change: opacity, transform;
}

.fixture-intro-reveal-ready body.page-players .fixture-intro-reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

body.page-equipos .players-hero,
body.page-equipos .squad-list > .squad-player:nth-of-type(-n+4) {
  transform: none;
  transition:
    transform 320ms cubic-bezier(.22, .8, .2, 1);
  will-change: transform;
}

body.page-equipos .players-hero.is-visible,
body.page-equipos .squad-list > .squad-player:nth-of-type(-n+4).is-visible {
  transform: none;
}

body.page-equipos .players-hero {
  opacity: 1;
  transition:
    opacity 460ms cubic-bezier(.22, .8, .2, 1),
    transform 320ms cubic-bezier(.22, .8, .2, 1);
  will-change: opacity, transform;
}

body.page-equipos .players-hero.is-visible {
  opacity: 1;
  transform: none;
}

body.page-equipos .squad-list > .squad-player:nth-of-type(-n+4) .squad-player__acrylic {
  opacity: 1;
  transform: translateZ(0);
  transition: opacity 460ms cubic-bezier(.22, .8, .2, 1);
  will-change: opacity;
}

body.page-equipos .squad-list > .squad-player:nth-of-type(-n+4) > :not(.squad-player__acrylic) {
  opacity: 1;
  transition: opacity 460ms cubic-bezier(.22, .8, .2, 1);
  will-change: opacity;
}

body.page-equipos .squad-list > .squad-player:nth-of-type(-n+4).is-visible .squad-player__acrylic,
body.page-equipos .squad-list > .squad-player:nth-of-type(-n+4).is-visible > :not(.squad-player__acrylic) {
  opacity: 1;
}

.fixture-intro-reveal-ready body.page-equipos .fixture-intro-reveal {
  opacity: 0 !important;
  transform: translate3d(0, 18px, 0) !important;
  transition:
    opacity 460ms cubic-bezier(.22, .8, .2, 1),
    transform 320ms cubic-bezier(.22, .8, .2, 1);
  will-change: opacity, transform;
}

.fixture-intro-reveal-ready body.page-equipos .fixture-intro-reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

body.page-equipos .squad-player__info {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  justify-self: start;
  transform: translate(5px, 13px);
}

body.page-equipos .squad-player__info strong {
  font-size: 16px;
}

body.page-equipos .squad-player__info small {
  margin-top: -5px;
  font-size: 14px;
}

.squad-team .squad-player__info {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  justify-self: start;
  transform: translate(5px, 13px);
}

.squad-team .squad-player__info strong {
  font-size: 16px;
}

.squad-team .squad-player__info small {
  margin-top: 0;
  font-size: 14px;
}

body.page-players .squad-team .squad-player__acrylic {
  border-color: rgba(255, 255, 255, .10);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .34), rgba(0, 0, 0, .18)),
    rgba(0, 0, 0, .23);
  box-shadow:
    0 14px 20px rgba(0, 0, 0, .22),
    inset 0 1px 0 rgba(255, 255, 255, .08),
    inset 0 -1px 0 rgba(0, 0, 0, .18);
}

.squad-team__stars {
  display: flex;
  gap: 3px;
  margin-top: 7px;
  color: #ffbf2f;
  font-size: 12px;
  line-height: 1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .32);
  transform: translate(-2px, 2px);
}

body.page-goals .fixture-intro-reveal {
  opacity: 0 !important;
  transform: translate3d(0, 18px, 0) !important;
  transition:
    opacity 460ms cubic-bezier(.22, .8, .2, 1),
    transform 320ms cubic-bezier(.22, .8, .2, 1) !important;
  will-change: opacity, transform;
}

body.page-goals .fixture-intro-reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

body.page-bookings .bookings-hero,
body.page-bookings .bookings-list > article:nth-of-type(-n+5),
body.page-bookings .bookings-list > .pub_part_small_1:first-of-type {
  transform: none;
  transition:
    transform 320ms cubic-bezier(.22, .8, .2, 1);
  will-change: transform;
}

body.page-bookings .bookings-hero.is-visible,
body.page-bookings .bookings-list > article:nth-of-type(-n+5).is-visible,
body.page-bookings .bookings-list > .pub_part_small_1:first-of-type.is-visible {
  transform: none;
}

body.page-bookings .bookings-hero,
body.page-bookings .bookings-list > .pub_part_small_1:first-of-type {
  opacity: 1;
  transition:
    opacity 460ms cubic-bezier(.22, .8, .2, 1),
    transform 320ms cubic-bezier(.22, .8, .2, 1);
  will-change: opacity, transform;
}

body.page-bookings .bookings-hero.is-visible,
body.page-bookings .bookings-list > .pub_part_small_1:first-of-type.is-visible {
  opacity: 1;
}

body.page-bookings .bookings-list > article:nth-of-type(-n+5)::before,
body.page-bookings .bookings-list > article:nth-of-type(-n+5) .booking-player__acrylic {
  opacity: 1;
  transform: translateZ(0);
  transition: opacity 460ms cubic-bezier(.22, .8, .2, 1);
  will-change: opacity;
}

body.page-bookings .bookings-list > article:nth-of-type(-n+5) > :not(.booking-player__acrylic) {
  opacity: 1;
  transition: opacity 460ms cubic-bezier(.22, .8, .2, 1);
  will-change: opacity;
}

body.page-bookings .bookings-list > article:nth-of-type(-n+5).is-visible::before,
body.page-bookings .bookings-list > article:nth-of-type(-n+5).is-visible .booking-player__acrylic,
body.page-bookings .bookings-list > article:nth-of-type(-n+5).is-visible > :not(.booking-player__acrylic) {
  opacity: 1;
}

.fixture-intro-reveal-ready body.page-bookings .fixture-intro-reveal {
  opacity: 0 !important;
  transform: translate3d(0, 18px, 0) !important;
  transition:
    opacity 460ms cubic-bezier(.22, .8, .2, 1),
    transform 320ms cubic-bezier(.22, .8, .2, 1) !important;
  will-change: opacity, transform;
}

.fixture-intro-reveal-ready body.page-bookings .fixture-intro-reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

.hero {
  display: grid;
  justify-items: center;
  margin-bottom: 20px;
  text-align: center;
}

.country-emblem {
  position: relative;
  width: 92px;
  height: 92px;
  padding: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 1);
  background: transparent;
  box-shadow:
    0 5px 14px rgba(0, 0, 0, .22);
  overflow: visible;
}

.country-emblem::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 3px solid rgba(255, 255, 255, .34);
  border-radius: 50%;
  pointer-events: none;
}

.country-emblem img,
.player-orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.club img {
  width: auto !important;
  height: 74px !important;
  max-width: 74px;
  max-height: 74px;
  object-fit: contain;
  display: block;
}

.country-emblem img {
  position: relative;
  z-index: 1;
  border-radius: 50%;
  overflow: hidden;
}

.stars {
  margin-top: 14px;
  color: #ffb713;
  font-size: 17px;
  line-height: 1;
  word-spacing: 2px;
}

h1 {
  margin: 6px 0 0;
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
}

.hero p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px 18px;
}

body.page-qatar .qatar-home-access-grid > .qatar-home-grid-item {
  position: relative;
  min-width: 0;
}

body.page-qatar .qatar-home-access-grid > .qatar-home-grid-item > a {
  width: 100%;
}

body.page-qatar .qatar-home-access-grid {
  column-gap: 17px;
}

body.page-qatar .qatar-home-access-grid > .qatar-home-grid-item--square {
  aspect-ratio: 1 / 1;
}

body.page-qatar .qatar-home-access-grid > .qatar-home-grid-item--data-card {
  aspect-ratio: 1 / 1;
}

body.page-qatar .qatar-home-access-grid > .qatar-home-grid-item--data-card > .qatar-home-moved-data-card {
  width: 100%;
  height: 100%;
}

body.page-qatar .qatar-home-access-grid > .qatar-home-grid-item > .feature-card,
body.page-qatar .qatar-home-access-grid > .qatar-home-grid-item > .small-card {
  width: 100%;
  transform: none;
}

body.page-qatar .qatar-home-access-grid > .qatar-home-grid-item--square > .feature-card {
  height: 100%;
}

body.page-qatar .qatar-home-access-grid > .qatar-home-grid-item--stadiums,
body.page-qatar .qatar-home-access-grid > .qatar-home-grid-item--players,
body.page-qatar .qatar-home-access-grid > .qatar-home-grid-item--ranking-goals,
body.page-qatar .qatar-home-access-grid > .qatar-home-grid-item--bookings {
  left: -2px;
}

body.page-qatar .qatar-home-grid-single-card {
  width: 100%;
  height: 100%;
}

body.page-qatar .qatar-home-access-grid > .qatar-home-grid-item--wide,
body.page-qatar .qatar-home-access-grid > .qatar-home-grid-item--ad,
body.page-qatar .qatar-home-access-grid > .qatar-home-grid-item--boton-partidos,
body.page-qatar .qatar-home-access-grid > .qatar-home-grid-item--general-data {
  grid-column: 1 / -1;
}

body.page-qatar .boton-partidos {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0;
}

body.page-qatar .boton-partidos__card {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  column-gap: 0;
  width: 100%;
  min-height: 132px;
  grid-template-columns: 122px minmax(0, 1fr) 82px;
  grid-template-rows: 61px 43px;
  color: #fff;
  text-decoration: none;
}

body.page-qatar .boton-partidos__card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 64px;
  background: transparent;
  transform: none;
  box-shadow: 8px 10px 18px rgba(0, 0, 0, .32);
  pointer-events: none;
}

body.page-qatar .boton-partidos__acrylic {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 64px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08)),
    rgba(255, 255, 255, .10);
  backdrop-filter: blur(13px);
  transform: none;
  -webkit-mask: radial-gradient(circle 52px at 68px 66px, transparent 0 50px, #000 51px);
  mask: radial-gradient(circle 52px at 68px 66px, transparent 0 50px, #000 51px);
  box-shadow:
    0 14px 20px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .16),
    inset 0 -1px 0 rgba(255, 255, 255, .06);
}

body.page-qatar .boton-partidos__card > :not(.boton-partidos__acrylic) {
  position: relative;
  z-index: 2;
}

body.page-qatar .boton-partidos__portrait {
  position: absolute;
  left: 23px;
  top: 35px;
  width: 90px;
  height: 90px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 5px 14px rgba(0, 0, 0, .28);
  transform: none;
}

body.page-qatar .boton-partidos__portrait img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

body.page-qatar .boton-partidos__card > .boton-partidos__detail {
  position: absolute;
  z-index: 3;
  left: 122px;
  top: 50%;
  min-width: 0;
  width: calc(100% - 204px);
  overflow: hidden;
  transform: translate(5px, -50%);
  text-align: left;
}

body.page-qatar .boton-partidos__detail strong {
  max-width: 100%;
  font-size: 19px;
  line-height: 1.28;
  font-weight: 600;
  transform: none;
}

body.page-qatar .boton-partidos__detail small {
  font-size: 12px;
  line-height: 1.28;
  text-transform: none;
}

body.page-qatar .boton-partidos__date {
  position: static;
  display: block;
  top: auto;
  font-size: 11px;
}

body.page-qatar .boton-partidos__detail strong,
body.page-qatar .boton-partidos__detail small,
body.page-qatar .boton-partidos__date {
  display: block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

body.page-qatar .boton-partidos__detail strong,
body.page-qatar .boton-partidos__detail small {
  text-shadow: 0 2px 4px rgba(0, 0, 0, .42);
}

body.page-qatar .boton-partidos__crest-box {
  position: relative;
  z-index: 4;
  grid-column: 3;
  grid-row: 1 / 3;
  justify-self: center;
  display: block;
  width: 56px;
  height: 56px;
  filter: drop-shadow(0 4px 5px rgba(0, 0, 0, .34));
  transform: translate(-15px, 15px);
}

body.page-qatar .boton-partidos__crest {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.page-qatar .feature-grid > .qatar-home-pro-ad,
body.page-qatar .feature-grid > .qatar-home-premium-ad {
  grid-column: 1 / -1;
}

body.page-qatar .qatar-home-premium-ad,
body.page-qatar .qatar-home-foot-ad {
  margin-top: 30px;
  margin-bottom: 30px;
}

body.page-qatar .qatar-home-foot-ad + .fixture-footer-spacer {
  height: 34px;
}

body.page-qatar .feature-grid > .qatar-home-general-data-cards {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 17px;
  column-gap: 17px;
  align-items: start;
  margin-top: 0;
}

body.page-qatar .qatar-home-general-data-cards > .general-data-card {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  align-self: start;
}

body.page-qatar .calendar-dates-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 0;
  padding-top: 19px;
}

body.page-qatar .calendar-dates-stage > .fecha-partido {
  aspect-ratio: auto;
  height: calc((100vw - 62px) / 2);
  max-height: 178px;
}

body.page-qatar .calendar-dates-stage > .pub_part_small_1,
body.page-qatar .calendar-dates-stage > .pub_part_big_1 {
  margin-top: 0;
  margin-bottom: 0;
}

body.page-qatar .calendar-dates-stage .fecha-partido .boton-recuadro-centrado__content {
  position: relative;
  height: 100%;
}

body.page-qatar .calendar-dates-stage .fecha-partido .boton-recuadro-centrado__orb {
  position: absolute;
  top: 22px;
  right: 22px;
  transform: none;
}

body.page-qatar .calendar-dates-stage .fecha-partido .boton-recuadro-centrado__copy strong {
  position: absolute;
  top: 20px;
  left: 27px;
  width: auto;
  font-size: 34px;
}

body.page-qatar .calendar-dates-stage .fecha-partido .fecha-partido__date {
  position: absolute;
  top: 55px;
  left: 27px;
  width: auto;
  font-size: 15px;
  font-weight: 700;
}

body.page-qatar .calendar-dates-stage .fecha-partido .fecha-partido__weekday {
  position: absolute;
  top: 72px;
  left: 27px;
  width: auto;
  font-size: 14px;
  opacity: .58;
}

body.page-qatar .calendar-dates-stage .fecha-partido .fecha-partido__match {
  position: absolute;
  top: 97px;
  left: 27px;
  right: 88px;
  width: auto;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
}

body.page-qatar .calendar-dates-stage .fecha-partido .fecha-partido__match-title {
  display: block;
  line-height: 1.1;
}

body.page-qatar .calendar-dates-stage .fecha-partido .fecha-partido__flags {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: 6px;
}

body.page-qatar .calendar-dates-stage .fecha-partido .fecha-partido__match--right {
  right: 30px;
  left: auto;
  top: 120px;
  text-align: right;
}

body.page-qatar .calendar-dates-stage .fecha-partido .fecha-partido__match--right .fecha-partido__match-title {
  font-size: 20px;
  line-height: 1;
}

body.page-qatar .calendar-dates-stage .fecha-partido .fecha-partido__penalties-score {
  font-weight: 400;
  opacity: .58;
}

body.page-qatar .calendar-dates-stage .fecha-partido .fecha-partido__match--right .fecha-partido__flags {
  justify-content: flex-end;
}

body.page-qatar .calendar-dates-stage .fecha-partido .fecha-partido__flags img {
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .22);
}

body.page-qatar .calendar-dates-stage .fecha-partido .fecha-partido__stage {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  opacity: .58;
}

body.page-qatar .qatar-home-general-data-cards > .qatar-home-general-data-legacy-slot {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  align-self: start;
}

body.page-qatar .qatar-home-general-data-cards > .qatar-home-general-data-legacy-slot > .data-card-clone {
  width: 100%;
  height: 100%;
  transform: none;
}

body.page-qatar .qatar-home-general-data-cards > a:nth-child(even) {
  position: relative;
  left: -2px;
}

body.page-qatar .qatar-home-general-data-cards > .qatar-home-general-data-legacy-slot:nth-child(even) {
  position: relative;
  left: -2px;
}

body.page-qatar .qatar-home-general-data-cards .boton-recuadro-izquierda {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 25px 15px 18px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 28px;
  color: #fff;
  text-align: left;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08)),
    rgba(255, 255, 255, .10);
  backdrop-filter: blur(13px);
  box-shadow:
    0 14px 20px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .16),
    inset 0 -1px 0 rgba(255, 255, 255, .06);
  transform: translateX(-2px);
}

body.page-qatar .qatar-home-general-data-cards .boton-recuadro-izquierda::before {
  content: "";
  position: absolute;
  inset: 9px 9px 8px 8px;
  z-index: -1;
  border-radius: 21px;
  background:
    linear-gradient(180deg, rgba(3, 10, 35, .08), rgba(12, 13, 51, .20)),
    url("../img/texturas/card-yellow.jpg") center / cover no-repeat;
}

body.page-qatar .qatar-home-general-data-cards .boton-recuadro-izquierda--rojas::before {
  background:
    linear-gradient(180deg, rgba(3, 10, 35, .08), rgba(12, 13, 51, .20)),
    url("../img/texturas/card-red.jpg") center / cover no-repeat;
}

body.page-qatar .qatar-home-general-data-cards .boton-recuadro-izquierda::after {
  content: "";
  position: absolute;
  inset: 9px 9px 8px 8px;
  z-index: -1;
  border-radius: 21px;
  background:
    linear-gradient(180deg, rgba(9, 13, 31, .18), rgba(5, 7, 22, .70) 62%, rgba(6, 7, 22, .84));
}

body.page-qatar .qatar-home-general-data-cards .boton-recuadro-izquierda__stat {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 11px;
  margin-left: 21px;
  margin-bottom: 42px;
}

body.page-qatar .qatar-home-general-data-cards .boton-recuadro-izquierda--rojas .boton-recuadro-izquierda__stat,
body.page-qatar .qatar-home-general-data-cards .boton-recuadro-izquierda--amarillas .boton-recuadro-izquierda__stat {
  margin-left: 16px;
}

body.page-qatar .qatar-home-general-data-cards .boton-recuadro-izquierda__icon {
  width: 22px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, .9);
  border-radius: 3px;
  background: linear-gradient(180deg, #ffe987, #f7b900);
  box-shadow:
    0 10px 19px rgba(0, 0, 0, .62),
    inset 0 1px 0 rgba(255, 255, 255, .34);
  transform: rotate(22deg) scale(1.2);
}

body.page-qatar .qatar-home-general-data-cards .boton-recuadro-izquierda--rojas .boton-recuadro-izquierda__icon {
  background: linear-gradient(180deg, #ff6258, #c90b12);
}

body.page-qatar .qatar-home-general-data-cards .boton-recuadro-izquierda__count {
  color: #fff;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
  text-shadow: 0 10px 19px rgba(0, 0, 0, .62);
}

body.page-qatar .qatar-home-general-data-cards .boton-recuadro-izquierda__folder {
  position: absolute;
  left: 8px;
  right: 9px;
  bottom: 8px;
  z-index: 1;
  display: block;
  width: calc(100% - 17px);
  height: auto;
  aspect-ratio: 144 / 79;
  object-fit: contain;
  opacity: .20;
  filter: brightness(0) saturate(1) drop-shadow(0 -1px 0 rgba(255, 255, 255, .035));
  pointer-events: none;
}

body.page-qatar .qatar-home-general-data-cards .boton-recuadro-izquierda__copy {
  position: absolute;
  left: 30px;
  right: 16px;
  top: auto;
  bottom: 8px;
  z-index: 2;
  width: auto;
  height: calc(37% + 11px);
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  border: 0;
  background: transparent;
  padding-left: 0;
  margin-top: 0;
  text-align: left;
  transform: none;
}

body.page-qatar .qatar-home-general-data-cards .boton-recuadro-izquierda--rojas .boton-recuadro-izquierda__copy,
body.page-qatar .qatar-home-general-data-cards .boton-recuadro-izquierda--amarillas .boton-recuadro-izquierda__copy {
  left: 25px;
  bottom: 30px;
  height: auto;
  min-height: 0;
}

body.page-qatar .qatar-home-general-data-cards .boton-recuadro-izquierda__copy strong,
body.page-qatar .qatar-home-general-data-cards .boton-recuadro-izquierda__copy small {
  display: block;
  width: 100%;
  margin-top: 0;
  line-height: 1.05;
}

body.page-qatar .qatar-home-general-data-cards .boton-recuadro-izquierda__copy strong {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

body.page-qatar .qatar-home-general-data-cards .boton-recuadro-izquierda__copy small {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 300;
}

body.page-qatar .qatar-home-general-data-cards .boton-recuadro-centrado {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 28px;
  box-shadow: none;
  color: #fff;
  text-align: center;
  isolation: isolate;
}

body.page-qatar .qatar-home-general-data-cards .boton-recuadro-centrado::before,
body.page-qatar .qatar-home-general-data-cards .boton-recuadro-centrado::after {
  content: none;
}

body.page-qatar .qatar-home-general-data-cards .boton-recuadro-centrado__acrylic {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08)),
    rgba(255, 255, 255, .10);
  backdrop-filter: blur(13px);
  box-shadow:
    0 14px 20px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .16),
    inset 0 -1px 0 rgba(255, 255, 255, .06);
  pointer-events: none;
}

body.page-qatar .qatar-home-general-data-cards .boton-recuadro-centrado__panel {
  position: absolute;
  top: 9px;
  right: 8px;
  bottom: 8px;
  left: 9px;
  z-index: 2;
  display: grid;
  place-items: center;
  border-radius: 21px;
  background:
    linear-gradient(180deg, rgba(75, 71, 60, .58), rgba(42, 0, 5, .72)),
    rgba(0, 0, 0, .44);
}

body.page-qatar .qatar-home-general-data-cards .boton-recuadro-centrado__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(152deg, rgba(255, 255, 255, .08), transparent 34%),
    linear-gradient(0deg, rgba(102, 0, 8, .22), transparent 58%);
  pointer-events: none;
}

body.page-qatar .qatar-home-grid-item--stadiums .boton-recuadro-centrado__panel {
  background:
    linear-gradient(180deg, rgba(3, 10, 35, .08), rgba(12, 13, 51, .20)),
    url("../img/texturas/card-purple-quad_2.jpg") center / cover no-repeat;
}

body.page-qatar .qatar-home-grid-item--stadiums .boton-recuadro-centrado__panel::after {
  background:
    linear-gradient(180deg, rgba(9, 13, 31, .02), rgba(5, 7, 22, .48) 62%, rgba(6, 7, 22, .62));
}

body.page-qatar .qatar-home-general-data-cards .general-data-countries-card .boton-recuadro-centrado__panel {
  background:
    linear-gradient(180deg, rgba(3, 7, 15, .08), rgba(3, 5, 12, .24)),
    url("../img/texturas/card-black-triangle-quad.jpg") center / cover no-repeat;
}

body.page-qatar .qatar-home-general-data-cards .general-data-countries-card .boton-recuadro-centrado__panel::after {
  background:
    linear-gradient(180deg, rgba(8, 10, 14, .02), rgba(5, 6, 10, .48) 62%, rgba(4, 5, 9, .64));
}

body.page-qatar .calendar-dates-stage .fecha-partido--final .boton-recuadro-centrado__panel {
  background:
    linear-gradient(180deg, rgba(78, 52, 12, .04), rgba(61, 28, 3, .24)),
    url("../img/texturas/gold-bg.jpg") center / cover no-repeat;
}

body.page-qatar .qatar-home-general-data-cards .general-data-players-card .boton-recuadro-centrado__panel {
  background:
    linear-gradient(180deg, rgba(3, 7, 15, .08), rgba(3, 5, 12, .24)),
    url("../img/texturas/card-hexa-quad.jpg") center / cover no-repeat;
}

body.page-qatar .qatar-home-general-data-cards .general-data-matches-card .boton-recuadro-centrado__panel {
  background:
    linear-gradient(180deg, rgba(3, 7, 15, .08), rgba(3, 5, 12, .24)),
    url("../img/texturas/card-black-stone-quad.jpg") center / cover no-repeat;
}

body.page-qatar .qatar-home-general-data-cards .general-data-matches-card .boton-recuadro-centrado__panel::after {
  background: transparent;
}

body.page-qatar .qatar-home-general-data-cards .general-data-goals-card:not(.general-data-goals-ranking-card) .boton-recuadro-centrado__panel {
  background:
    linear-gradient(180deg, rgba(3, 45, 13, .08), rgba(1, 34, 9, .24)),
    url("../img/texturas/card-pasto.jpg") center / cover no-repeat;
}

body.page-qatar .qatar-home-general-data-cards .general-data-goals-card:not(.general-data-goals-ranking-card) .boton-recuadro-centrado__panel::after {
  background:
    linear-gradient(180deg, rgba(3, 22, 7, .02), rgba(2, 26, 8, .36) 62%, rgba(1, 17, 5, .52));
}

body.page-qatar .qatar-home-general-data-cards .general-data-goals-ranking-card .boton-recuadro-centrado__panel {
  background:
    linear-gradient(180deg, rgba(3, 7, 15, .08), rgba(3, 5, 12, .24)),
    url("../img/texturas/card-trenza-quad.jpg") center / cover no-repeat;
}

body.page-qatar .qatar-home-general-data-cards .general-data-goals-ranking-card .boton-recuadro-centrado__panel::after {
  background:
    linear-gradient(180deg, rgba(8, 10, 14, .02), rgba(5, 6, 10, .48) 62%, rgba(4, 5, 9, .64));
}

body.page-qatar .qatar-home-general-data-cards .general-data-awards-card .boton-recuadro-centrado__panel {
  background:
    linear-gradient(180deg, rgba(50, 32, 4, .08), rgba(39, 22, 2, .24)),
    url("../img/texturas/card-gold-quad.jpg") center / cover no-repeat;
}

body.page-qatar .qatar-home-general-data-cards .boton-recuadro-centrado__content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 5px;
  width: 100%;
}

body.page-qatar .qatar-home-general-data-cards .boton-recuadro-centrado__orb {
  position: relative;
  z-index: 1;
  display: block;
  width: 67px;
  height: 67px;
  padding: 0;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, .36);
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 7px 12px rgba(0, 0, 0, .20);
}

body.page-qatar .qatar-home-general-data-cards .boton-recuadro-centrado__orb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

body.page-qatar .qatar-home-access-grid .qatar-home-grid-item--players .boton-recuadro-centrado__orb {
  overflow: visible;
  border-color: rgba(255, 255, 255, .36);
}

body.page-qatar .qatar-home-access-grid .qatar-home-grid-item--players .boton-recuadro-centrado__orb-fill {
  position: absolute;
  inset: 3px;
  z-index: 1;
  display: block;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
}

body.page-qatar .qatar-home-access-grid .qatar-home-grid-item--players .boton-recuadro-centrado__orb-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 143%;
  height: 143%;
  transform: translate(-50%, calc(-50% - 3px));
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 5px 7px rgba(0, 0, 0, .80));
}

body.page-qatar .qatar-home-general-data-cards .boton-recuadro-centrado__copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 1px;
  width: 100%;
  text-align: center;
}

body.page-qatar .qatar-home-general-data-cards .boton-recuadro-centrado__copy strong,
body.page-qatar .qatar-home-general-data-cards .boton-recuadro-centrado__copy small {
  display: block;
  width: 100%;
  margin: 0;
  color: #fff;
  line-height: 1.05;
}

body.page-qatar .qatar-home-general-data-cards .boton-recuadro-centrado__copy strong {
  font-size: 28px;
  font-weight: 700;
}

body.page-qatar .qatar-home-general-data-cards .boton-recuadro-centrado__copy small {
  font-size: 14px;
  font-weight: 400;
}

body.page-qatar .qatar-home-general-data-cards .general-data-extra-goals {
  font-weight: 300;
}

body.page-qatar .players-hero,
body.page-qatar .feature-grid > a,
body.page-qatar .feature-grid .general-data-cards-shell > a,
body.page-qatar .fixture-footer-brand {
  opacity: 1;
  transform: none;
  transition:
    opacity 460ms cubic-bezier(.22, .8, .2, 1),
    transform 320ms cubic-bezier(.22, .8, .2, 1);
}

body.page-qatar .players-hero.is-visible,
body.page-qatar .feature-grid > a.is-visible,
body.page-qatar .feature-grid .general-data-cards-shell > a.is-visible,
body.page-qatar .fixture-footer-brand.is-visible {
  opacity: 1;
  transform: none;
}

.fixture-intro-reveal-ready body.page-qatar .players-hero.fixture-intro-reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 460ms cubic-bezier(.22, .8, .2, 1),
    transform 320ms cubic-bezier(.22, .8, .2, 1);
  will-change: opacity, transform;
}

.fixture-intro-reveal-ready body.page-qatar .players-hero.fixture-intro-reveal.is-visible {
  opacity: 1;
  transform: none;
}

body.page-qatar-champion .fixture-footer-brand,
body.page-qatar-champion .players-hero,
body.page-qatar-champion .champion-initial-ad {
  opacity: 1;
  transform: none;
  transition:
    opacity 460ms cubic-bezier(.22, .8, .2, 1),
    transform 320ms cubic-bezier(.22, .8, .2, 1);
  will-change: opacity, transform;
}

body.page-qatar-champion .champion-selection-card {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

body.page-qatar-champion .players-hero.is-visible,
body.page-qatar-champion .champion-initial-ad.is-visible {
  opacity: 1;
  transform: none;
}

body.page-qatar-champion .champion-selection-card.is-visible {
  opacity: 1;
  transform: none;
}

.fixture-intro-reveal-ready body.page-qatar-champion .fixture-intro-reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 460ms cubic-bezier(.22, .8, .2, 1),
    transform 320ms cubic-bezier(.22, .8, .2, 1);
  will-change: opacity, transform;
}

.fixture-intro-reveal-ready body.page-qatar-champion .fixture-intro-reveal.is-visible {
  opacity: 1;
  transform: none;
}

body.page-qatar-champion .champion-matches-total {
  width: calc(100% + 22px);
  margin-bottom: 49px;
  margin-left: -11px;
  margin-right: -11px;
}

body.page-qatar-champion .champion-stage {
  padding-top: 15px;
}

body.page-qatar-awards .champion-stage {
  padding-top: 19px;
}

body.page-qatar-stadiums .champion-stage {
  padding-top: 19px;
}

body.page-qatar-awards .qatar-awards-main-hero {
  margin-bottom: 0;
}

body.page-qatar-awards .qatar-awards-main-hero .index-hero-subtitle {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, .96);
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  transform: translateY(3px);
  text-shadow: 0 3px 10px rgba(0, 0, 0, .55);
}

body.page-qatar-awards .champion-stage > .messi-list-player-card:first-child {
  margin-top: 0 !important;
}

body.page-qatar-stadiums .champion-stage > .messi-list-player-card:first-child {
  margin-top: 0 !important;
}

body.page-qatar-champion .champion-selection-card .champion-selection-card__flag-portrait > img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}

body.page-qatar-champion .champion-selection-card .champion-selection-card__flag-portrait {
  position: absolute;
  left: calc(50% - 83px);
  top: 28px;
  width: 166px;
  height: 166px;
  padding: 0;
  border-radius: 50%;
  transform: none;
  box-sizing: border-box;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .82);
  background: #fff;
  box-shadow: 0 5px 12px rgba(0, 0, 0, .28);
  z-index: 2;
}

body.page-qatar-champion .champion-selection-card {
  --champion-selection-shell-width: min(100vw, var(--app-max-width));
  --champion-selection-acrylic-width: 225px;
  --champion-selection-acrylic-height: 422px;
  width: var(--champion-selection-shell-width);
  height: 447px;
  margin-top: 0;
  margin-right: calc((100% - var(--champion-selection-shell-width)) / 2);
  margin-bottom: 0;
  margin-left: calc((100% - var(--champion-selection-shell-width)) / 2);
  position: relative;
  overflow: visible;
  max-width: none;
  z-index: 1;
}

body.page-qatar-champion .champion-selection-card .champion-selection-card__acrylic-layer {
  position: absolute;
  left: calc(50% - (var(--champion-selection-acrylic-width) / 2));
  top: 0;
  width: var(--champion-selection-acrylic-width);
  height: var(--champion-selection-acrylic-height);
  border-radius: calc(var(--champion-selection-acrylic-width) / 2);
  isolation: isolate;
  transform: none;
  filter: none;
  overflow: visible;
  pointer-events: none;
}

body.page-qatar-champion .champion-selection-card .champion-selection-card__acrylic-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: calc(var(--champion-selection-acrylic-width) / 2);
  transform: none;
  transform-origin: center;
  box-shadow:
    34px 25px 31px rgba(0, 0, 0, .36),
    14px 8px 20px rgba(0, 0, 0, .22);
  pointer-events: none;
}

body.page-qatar-champion .champion-selection-card .champion-selection-card__acrylic {
  position: absolute;
  inset: 0;
  width: auto;
  height: auto;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: calc(var(--champion-selection-acrylic-width) / 2);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08)),
    rgba(255, 255, 255, .10);
  backdrop-filter: blur(13px);
  transform: none;
  transform-origin: center;
  -webkit-mask: radial-gradient(circle 91px at 50% 111px, transparent 0 89px, #000 90px);
  mask: radial-gradient(circle 91px at 50% 111px, transparent 0 89px, #000 90px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .16),
    inset 0 -1px 0 rgba(255, 255, 255, .06);
}

body.page-qatar-champion .champion-selection-card .champion-selection-card__crest {
  position: absolute;
  left: calc(50% - 40px);
  top: 160px;
  width: 80px;
  height: 80px;
  transform: none;
  filter: drop-shadow(0 4px 5px rgba(0, 0, 0, .34));
  z-index: 3;
}

body.page-qatar-champion .champion-selection-card .champion-selection-card__crest img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.page-qatar-champion .champion-selection-card .champion-selection-card__number {
  position: absolute;
  left: 0;
  right: 0;
  top: 255px;
  width: 100%;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 42px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  transform: none;
  text-shadow: 0 4px 10px rgba(0, 0, 0, .45);
  z-index: 3;
}

body.page-qatar-champion .champion-selection-card .champion-selection-card__number span {
  display: block;
}

body.page-qatar-champion .champion-selection-card .champion-selection-card__info {
  position: absolute;
  left: 0;
  right: 0;
  top: 305px;
  width: 100%;
  padding-left: 0;
  text-align: center;
  transform: none;
  z-index: 3;
}

body.page-qatar-champion .champion-selection-card .champion-selection-card__info strong {
  display: block;
  overflow: visible;
  margin-bottom: 0;
  padding-bottom: 0;
  color: #fff;
  font-size: 21px;
  line-height: 1.05;
  font-weight: 400;
  text-shadow: 0 4px 10px rgba(0, 0, 0, .45);
  transform: translateY(-2px);
}

body.page-qatar-champion .champion-selection-card .champion-selection-card__first-name,
body.page-qatar-champion .champion-selection-card .champion-selection-card__last-name {
  display: block;
}

body.page-qatar-champion .champion-selection-card .champion-selection-card__first-name {
  font-size: 19px;
}

body.page-qatar-champion .champion-selection-card .champion-selection-card__last-name {
  font-weight: 700;
}

body.page-qatar-champion .champion-selection-card .champion-selection-card__info small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, .92);
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  transform: translateY(1px);
}

body.page-qatar-champion .champion-selection-card + .champion-starters-total {
  margin-top: 24px;
}

 /* Mapa de espaciados de Argentina campeon: bloque principal -> titular = 60px. */
body.page-qatar-champion .champion-starters-horizontal-list + .champion-starters-total {
  margin-top: 60px;
}

body.page-qatar-champion .champion-award-card + .champion-starters-total {
  margin-top: 60px;
}

body.page-qatar-champion .champion-goal-card + .champion-starters-total {
  margin-top: 60px;
}

body.page-qatar-champion .champion-goals-total__shootout {
  font-weight: 400;
}

body.page-qatar-champion .champion-goals-total__value {
  transform: translateX(41px);
}

body .goal-scorer.titular-pelota-blanco {
  position: relative;
  display: block;
  min-height: 94px;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

body .titular-pelota-blanco::before {
  top: 21px;
  right: 11px;
  bottom: 20px;
  left: 11px;
  border-radius: 27px;
  background: rgba(243, 244, 241, .92);
}

body .titular-pelota-blanco .goal-scorer__acrylic {
  top: 10px;
  right: 0;
  bottom: 9px;
  left: 0;
}

body .titular-pelota-blanco .goals-total__ball {
  position: absolute;
  top: 10px;
  left: calc(50% - 37px);
  width: 74px;
  height: 74px;
  z-index: 4;
  transform: none;
}

body .titular-pelota-blanco .titular-pelota-blanco__copy {
  position: absolute;
  top: 32px;
  left: calc(50% - 143px);
  width: 101px;
  padding: 0;
  display: block;
  z-index: 3;
  text-align: right;
  transform: none;
}

body .titular-pelota-blanco .titular-pelota-blanco__copy strong {
  display: block;
  width: 100%;
  overflow: visible;
  text-overflow: clip;
  text-align: right;
  transform: none;
}

body .titular-pelota-blanco .titular-pelota-blanco__copy small {
  display: block;
  width: 100%;
  overflow: visible;
  margin-top: 5px;
  text-overflow: clip;
  text-align: right;
  transform: none;
}

body .titular-pelota-blanco .titular-pelota-blanco__value {
  position: absolute;
  top: 33px;
  left: calc(50% + 42px);
  right: auto;
  width: 101px;
  padding: 0;
  z-index: 3;
  font-size: 28px;
  line-height: 1;
  text-align: center;
  transform: none;
}

body.page-goals .goals-list > .titular-pelota-blanco .titular-pelota-blanco__copy {
  left: max(30px, calc(50% - 170px));
  right: calc(50% + 42px);
  width: auto;
  text-align: right;
}

body.page-goals .goals-list > .titular-pelota-blanco .titular-pelota-blanco__copy strong,
body.page-goals .goals-list > .titular-pelota-blanco .titular-pelota-blanco__copy small {
  width: 100%;
  text-align: right;
  transform: none;
}

body.page-generated-champion .champion-goals-titular .titular-pelota-blanco__copy,
body.page-generated-champion .champion-starters-titular .titular-pelota-blanco__copy,
body.page-generated-champion .champion-substitutes-titular .titular-pelota-blanco__copy,
body.page-generated-champion .champion-matches-titular .titular-pelota-blanco__copy,
body.page-generated-champion .champion-shootout-titular .titular-pelota-blanco__copy {
  /* Campeones historicos: amplia solo la caja izquierda para selecciones largas como Alemania. */
  left: calc(50% - 200px);
  width: 158px;
}

body.page-generated-champion .champion-goals-titular .titular-pelota-blanco__copy strong,
body.page-generated-champion .champion-goals-titular .titular-pelota-blanco__copy small,
body.page-generated-champion .champion-starters-titular .titular-pelota-blanco__copy strong,
body.page-generated-champion .champion-starters-titular .titular-pelota-blanco__copy small,
body.page-generated-champion .champion-substitutes-titular .titular-pelota-blanco__copy strong,
body.page-generated-champion .champion-substitutes-titular .titular-pelota-blanco__copy small,
body.page-generated-champion .champion-matches-titular .titular-pelota-blanco__copy strong,
body.page-generated-champion .champion-matches-titular .titular-pelota-blanco__copy small,
body.page-generated-champion .champion-shootout-titular .titular-pelota-blanco__copy strong,
body.page-generated-champion .champion-shootout-titular .titular-pelota-blanco__copy small {
  white-space: nowrap;
}

body.page-qatar-champion .pub_part_big_1 {
  margin-bottom: 0;
}

body.page-qatar-champion .messi-awards-hero {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: 100%;
  margin: 50px auto 0;
  color: #fff;
  text-align: center;
}

body.page-qatar-champion .champion-selection-card + .champion-awards-hero {
  margin-top: 25px;
}

body.page-qatar-champion .messi-awards-hero__logo {
  width: 106px;
  height: 126px;
  margin-bottom: 4px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 9px rgba(0, 0, 0, .22));
}

body.page-qatar-champion .messi-awards-hero strong {
  display: block;
  margin: 0;
  font-size: 26px;
  line-height: 1.05;
  font-weight: 700;
  text-shadow: 0 3px 10px rgba(0, 0, 0, .55);
}

body.page-qatar-champion .messi-awards-hero p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, .96);
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  transform: translateY(3px);
  text-shadow: 0 3px 10px rgba(0, 0, 0, .55);
}

body.page-qatar-champion .messi-list-player-card {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 32px auto 0;
}

body.page-qatar-champion .messi-list-player-card .squad-player {
  width: 100%;
  min-height: 132px;
  grid-template-columns: 122px minmax(0, 1fr) 82px;
  grid-template-rows: 61px 43px;
  color: #fff;
  text-decoration: none;
}

body.page-qatar-champion .messi-list-player-card .squad-player::before {
  inset: 0;
  border-radius: 64px;
  transform: none;
  box-shadow: 8px 10px 18px rgba(0, 0, 0, .32);
}

body.page-qatar-champion .messi-list-player-card .squad-player__acrylic {
  inset: 0;
  border-radius: 64px;
  transform: none;
  -webkit-mask: radial-gradient(circle 52px at 68px 66px, transparent 0 50px, #000 51px);
  mask: radial-gradient(circle 52px at 68px 66px, transparent 0 50px, #000 51px);
  box-shadow:
    0 14px 20px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .16),
    inset 0 -1px 0 rgba(255, 255, 255, .06);
}

body.page-qatar-champion .messi-list-player-card .squad-player__portrait {
  left: 23px;
  top: 35px;
  width: 90px;
  height: 90px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, .28);
  transform: none;
}

body.page-qatar-champion .messi-list-player-card .squad-player__country {
  left: 22px;
  top: 74px;
  width: 40px;
  height: 40px;
}

body.page-qatar-champion .messi-list-player-card .squad-player__info {
  position: static;
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  justify-self: start;
  width: auto;
  transform: translate(5px, -8px);
  text-align: left;
}

body.page-qatar-champion .messi-list-player-card .squad-player__info strong {
  font-size: 14px;
  line-height: 1.12;
  font-weight: 600;
  max-width: 100%;
  transform: translateY(-3px);
}

body.page-qatar-champion .messi-list-player-card .squad-player__info small {
  font-size: 12px;
  text-transform: none;
}

body.page-qatar-champion .messi-list-player-card__award-date {
  position: relative;
  top: 4px;
  font-size: 11px;
}

body.page-qatar-champion .messi-list-player-card .squad-player__number {
  position: static;
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  justify-self: start;
  width: auto;
  justify-content: flex-start;
  max-width: none;
  font-size: 14px;
  line-height: 1.12;
  font-weight: 600;
  text-align: left;
  transform: translate(5px, -18px);
}

body.page-qatar-champion .messi-list-player-card__award-name {
  display: block;
  max-width: 100%;
}

body.page-qatar-champion .messi-list-player-card .squad-player__crest {
  width: 62px;
  height: 62px;
  transform: translate(-18px, 12px);
}

body.page-qatar-champion .messi-list-player-card--primary .squad-player__crest {
  width: 56px;
  height: 56px;
  transform: translate(-15px, 15px);
}

body.page-qatar-champion .premio-pais__crest-box {
  display: block;
  position: relative;
  z-index: 4;
}

body.page-qatar-champion .premio-pais__crest {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.page-qatar-champion .messi-list-player-card .premio-pais__title-box {
  display: block;
  width: 200px;
}

body.page-qatar-champion .messi-list-player-card .premio-pais__detail-box {
  transform: translate(5px, -13px);
}

body.page-qatar-champion .messi-list-player-card .premio-pais__date {
  position: static;
  display: block;
  top: auto;
}

body.page-qatar-champion .messi-list-player-card .premio-pais__detail-box strong,
body.page-qatar-champion .messi-list-player-card .premio-pais__detail-box small,
body.page-qatar-champion .messi-list-player-card .premio-pais__date {
  line-height: 1.28;
  transform: none;
}

body.page-qatar-champion .premio-pais__title-box,
body.page-qatar-champion .premio-pais__detail-box {
  position: relative;
  z-index: 2;
  min-width: 0;
  overflow: hidden;
}

body.page-qatar-champion .premio-pais__name,
body.page-qatar-champion .premio-pais__detail-box strong,
body.page-qatar-champion .premio-pais__detail-box small,
body.page-qatar-champion .premio-pais__date {
  display: block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

body.page-qatar-champion .premio-pais__name,
body.page-qatar-champion .premio-pais__detail-box strong,
body.page-qatar-champion .premio-pais__detail-box small,
body.page-qatar-champion .premio-pais__date {
  text-shadow: 0 2px 4px rgba(0, 0, 0, .42);
}

body.page-qatar-stadiums .estadio__portrait {
  background: rgba(255, 255, 255, .08);
}

body.page-qatar-stadiums .estadio__icon {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.page-qatar-stadiums .messi-list-player-card .estadio__title-box {
  display: block;
  width: 200px;
}

body.page-qatar-stadiums .messi-list-player-card .estadio__detail-box {
  transform: translate(5px, -13px);
}

body.page-qatar-stadiums .messi-list-player-card .estadio__year {
  position: static;
  display: block;
  top: auto;
}

body.page-qatar-stadiums .messi-list-player-card .estadio__detail-box strong,
body.page-qatar-stadiums .messi-list-player-card .estadio__detail-box small,
body.page-qatar-stadiums .messi-list-player-card .estadio__year {
  line-height: 1.28;
  transform: none;
}

body.page-qatar-stadiums .estadio__title-box,
body.page-qatar-stadiums .estadio__detail-box {
  position: relative;
  z-index: 2;
  min-width: 0;
  overflow: hidden;
}

body.page-qatar-stadiums .estadio__name,
body.page-qatar-stadiums .estadio__detail-box strong,
body.page-qatar-stadiums .estadio__detail-box small,
body.page-qatar-stadiums .estadio__year {
  display: block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

body.page-qatar-stadiums .estadio__name,
body.page-qatar-stadiums .estadio__detail-box strong,
body.page-qatar-stadiums .estadio__detail-box small,
body.page-qatar-stadiums .estadio__year {
  text-shadow: 0 2px 4px rgba(0, 0, 0, .42);
}

body.page-qatar-champion .messi-list-player-card--secondary .messi-list-player-card__messi-orb {
  box-sizing: border-box;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 4px solid rgba(255, 255, 255, .36);
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 7px 12px rgba(0, 0, 0, .20);
  overflow: hidden;
  transform: translate(-11px, 12px);
}

body.page-qatar-champion .messi-list-player-card--secondary .messi-list-player-card__messi-orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

body.page-qatar-champion .premio-jugador__player-box {
  display: block;
  position: relative;
  z-index: 4;
}

body.page-qatar-champion .premio-jugador__player {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-qatar-champion .messi-list-player-card .premio-jugador__detail-box {
  transform: translate(5px, -13px);
}

body.page-qatar-champion .messi-list-player-card .premio-jugador__title-box {
  display: block;
  width: 200px;
}

body.page-qatar-champion .messi-list-player-card .premio-jugador__date {
  position: static;
  display: block;
  top: auto;
}

body.page-qatar-champion .messi-list-player-card .premio-jugador__detail-box strong,
body.page-qatar-champion .messi-list-player-card .premio-jugador__detail-box small,
body.page-qatar-champion .messi-list-player-card .premio-jugador__date {
  line-height: 1.28;
  transform: none;
}

body.page-qatar-champion .premio-jugador__title-box,
body.page-qatar-champion .premio-jugador__detail-box {
  position: relative;
  z-index: 2;
  min-width: 0;
  overflow: hidden;
}

body.page-qatar-champion .premio-jugador__name,
body.page-qatar-champion .premio-jugador__detail-box strong,
body.page-qatar-champion .premio-jugador__detail-box small,
body.page-qatar-champion .premio-jugador__date {
  display: block;
  max-width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

body.page-qatar-champion .premio-jugador__name,
body.page-qatar-champion .premio-jugador__detail-box strong,
body.page-qatar-champion .premio-jugador__detail-box small,
body.page-qatar-champion .premio-jugador__date {
  text-shadow: 0 2px 4px rgba(0, 0, 0, .42);
}

body.page-qatar-champion .champion-goal-card .squad-player__info strong,
body.page-qatar-champion .champion-goal-card .squad-player__info small,
body.page-qatar-champion .champion-goal-card__date,
body.page-qatar-champion .champion-goal-card__minute,
body.page-qatar-champion .champion-starters-horizontal-list .squad-player__info strong,
body.page-qatar-champion .champion-starters-horizontal-list .squad-player__info small,
body.page-qatar-champion .champion-starters-horizontal-list .squad-player__number,
body.page-qatar-champion .champion-substitutes-horizontal-list .squad-player__info strong,
body.page-qatar-champion .champion-substitutes-horizontal-list .squad-player__info small,
body.page-qatar-champion .champion-substitutes-horizontal-list .squad-player__number {
  text-shadow: 0 2px 4px rgba(0, 0, 0, .42);
}

body.page-qatar-awards .premio-jugador .premio-jugador__card {
  overflow: visible;
}

body.page-qatar-awards .premio-jugador .premio-jugador__gold-ball {
  position: absolute;
  z-index: 5;
  bottom: 10px;
  left: 79px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  pointer-events: none;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, .36));
}

body.page-qatar-awards .premio-jugador .premio-jugador__gold-ball img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

body.page-qatar-champion .champion-goal-card {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 32px auto 0;
}

body.page-qatar-champion .champion-goal-card .squad-player {
  width: 100%;
  min-height: 132px;
  grid-template-columns: 122px minmax(0, 1fr) 82px;
  grid-template-rows: 61px 43px;
  color: #fff;
  text-decoration: none;
}

body.page-qatar-champion .champion-goal-card .squad-player::before {
  inset: 0;
  border-radius: 64px;
  transform: none;
  box-shadow: 8px 10px 18px rgba(0, 0, 0, .32);
}

body.page-qatar-champion .champion-goal-card .squad-player__acrylic {
  inset: 0;
  border-radius: 64px;
  transform: none;
  -webkit-mask: radial-gradient(circle 52px at 68px 66px, transparent 0 50px, #000 51px);
  mask: radial-gradient(circle 52px at 68px 66px, transparent 0 50px, #000 51px);
  box-shadow:
    0 14px 20px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .16),
    inset 0 -1px 0 rgba(255, 255, 255, .06);
}

body.page-qatar-champion .champion-goal-card .squad-player__portrait {
  left: 23px;
  top: 35px;
  width: 90px;
  height: 90px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, .28);
  transform: none;
}

body.page-qatar-champion .champion-goal-card .squad-player__portrait > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.page-qatar-champion .champion-goal-card .squad-player__info {
  position: static;
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  justify-self: start;
  width: auto;
  transform: translate(5px, -8px);
  text-align: left;
}

body.page-qatar-champion .champion-goal-card .squad-player__info strong {
  font-size: 14px;
  line-height: 1.12;
  font-weight: 600;
  max-width: 100%;
  transform: translateY(-3px);
}

body.page-qatar-champion .champion-goal-card .squad-player__info small {
  font-size: 12px;
  text-transform: none;
}

body.page-qatar-champion .champion-goal-card__date {
  position: relative;
  top: 4px;
  font-size: 11px;
}

body.page-qatar-champion .champion-goal-card .squad-player__number {
  position: static;
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  justify-self: start;
  width: auto;
  justify-content: flex-start;
  max-width: none;
  font-size: 14px;
  line-height: 1.12;
  font-weight: 600;
  text-align: left;
  transform: translate(5px, -18px);
}

body.page-qatar-champion .champion-goal-card__minute {
  display: block;
  max-width: 100%;
}

body.page-qatar-champion .champion-goal-card__player-orb {
  box-sizing: border-box;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 4px solid rgba(255, 255, 255, .36);
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 7px 12px rgba(0, 0, 0, .20);
  overflow: hidden;
  transform: translate(-11px, 12px);
}

body.page-qatar-champion .champion-goal-card__player-orb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 50%;
}

body.page-goals .goals-list > .champion-goal-card {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 32px auto 0;
}

body.page-goals .goals-list > .champion-goal-card .squad-player {
  width: 100%;
  min-height: 132px;
  grid-template-columns: 122px minmax(0, 1fr) 82px;
  grid-template-rows: 61px 43px;
  color: #fff;
  text-decoration: none;
}

body.page-goals .goals-list > .champion-goal-card .squad-player::before {
  inset: 0;
  border-radius: 64px;
  transform: none;
  box-shadow: 8px 10px 18px rgba(0, 0, 0, .32);
}

body.page-goals .goals-list > .champion-goal-card .squad-player__acrylic {
  inset: 0;
  border-radius: 64px;
  transform: none;
  -webkit-mask: radial-gradient(circle 52px at 68px 66px, transparent 0 50px, #000 51px);
  mask: radial-gradient(circle 52px at 68px 66px, transparent 0 50px, #000 51px);
  box-shadow:
    0 14px 20px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .16),
    inset 0 -1px 0 rgba(255, 255, 255, .06);
}

body.page-goals .goals-list > .champion-goal-card .squad-player__portrait {
  left: 23px;
  top: 35px;
  width: 90px;
  height: 90px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, .28);
  transform: none;
}

body.page-goals .goals-list > .champion-goal-card .squad-player__portrait > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.page-goals .goals-list > .champion-goal-card .squad-player__info {
  position: static;
  grid-column: 2 / 4;
  grid-row: 2;
  align-self: start;
  justify-self: start;
  box-sizing: border-box;
  width: 100%;
  padding-right: 55px;
  transform: translate(5px, -8px);
  text-align: left;
}

body.page-goals .goals-list > .champion-goal-card .squad-player__info strong {
  font-size: 14px;
  line-height: 1.12;
  font-weight: 600;
  max-width: 100%;
  transform: translateY(-3px);
}

body.page-goals .goals-list > .champion-goal-card .squad-player__info small {
  font-size: 12px;
  text-transform: none;
}

body.page-goals .goals-list > .champion-goal-card .champion-goal-card__date {
  display: block;
  overflow: hidden;
  position: relative;
  top: 4px;
  font-size: 11px;
  line-height: 1.25;
  padding-bottom: 4px;
  margin-bottom: -4px;
  white-space: nowrap;
  text-overflow: ellipsis;
}

body.page-goals .goals-list > .champion-goal-card .squad-player__number {
  position: static;
  grid-column: 2 / 4;
  grid-row: 1;
  align-self: end;
  justify-self: start;
  box-sizing: border-box;
  width: 100%;
  padding-right: 55px;
  justify-content: flex-start;
  max-width: none;
  font-size: 14px;
  line-height: 1.12;
  font-weight: 600;
  text-align: left;
  transform: translate(5px, -18px);
}

body.page-goals .goals-list > .champion-goal-card .champion-goal-card__minute {
  display: block;
  max-width: 100%;
}

body.page-goals .goals-list > .champion-goal-card .squad-player__number,
body.page-goals .goals-list > .champion-goal-card .squad-player__info strong,
body.page-goals .goals-list > .champion-goal-card .squad-player__info small,
body.page-goals .goals-list > .champion-goal-card .champion-goal-card__date,
body.page-goals .goals-list > .champion-goal-card .champion-goal-card__minute {
  text-shadow: 0 2px 4px rgba(0, 0, 0, .42);
}

/* Qatar 2022 / Todos los goles: pelota aislada de squad-player__crest y de campeon. */
body.page-goals .goals-list > .goals-single-goal-card .qatar-goals-ball-orb {
  position: absolute;
  top: 50%;
  right: 24px;
  z-index: 4;
  box-sizing: border-box;
  display: block;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 4px solid rgba(255, 255, 255, .36);
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 7px 12px rgba(0, 0, 0, .20);
  overflow: hidden;
  transform: translateY(-50%);
  filter: none;
}

body.page-goals .goals-list > .goals-single-goal-card .qatar-goals-ball-orb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

body.page-partidos .fixture-footer-brand {
  opacity: 1;
  transform: none;
}

.feature-card,
.small-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  color: #fff;
  box-shadow: 0 14px 20px rgba(0, 0, 0, .18);
}

.feature-card {
  aspect-ratio: 1 / 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 25px 15px 18px;
  border-radius: 28px;
}

.feature-card::after,
.small-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, .22), transparent 38%),
    linear-gradient(0deg, rgba(20, 0, 0, .45), rgba(255, 255, 255, .02));
}

.champion {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  border-color: rgba(255, 255, 255, .13);
  align-items: center;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08)),
    rgba(255, 255, 255, .10);
  backdrop-filter: blur(13px);
  box-shadow:
    0 14px 20px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .16),
    inset 0 -1px 0 rgba(255, 255, 255, .06);
}

.champion::before {
  content: "";
  position: absolute;
  inset: 9px 8px 8px 9px;
  z-index: -1;
  border-radius: 21px;
  background:
    linear-gradient(180deg, rgba(75, 71, 60, .58), rgba(42, 0, 5, .72)),
    rgba(0, 0, 0, .44);
}

.champion::after {
  inset: 9px 8px 8px 9px;
  border-radius: 21px;
  background:
    linear-gradient(152deg, rgba(255, 255, 255, .08), transparent 34%),
    linear-gradient(0deg, rgba(102, 0, 8, .22), transparent 58%);
}

.player-orb {
  width: 67px;
  height: 67px;
  margin-top: 4px;
  margin-bottom: 11px;
  padding: 0;
  border-radius: 50%;
  border: 5px solid rgba(255, 255, 255, .36);
  background: transparent;
  box-shadow:
    0 7px 12px rgba(0, 0, 0, .20);
}

.player-orb img {
  border-radius: 50%;
}

.feature-copy,
.data-clone-copy {
  display: grid;
  justify-items: center;
  gap: 5px;
  transform: none;
}

.feature-copy strong,
.data-clone-copy strong {
  margin-top: 1px;
  font-size: 14px;
  line-height: 1.05;
  font-weight: 400;
}

.feature-copy small,
.data-clone-copy small {
  color: rgba(255,255,255,.72);
  font-size: 14px;
  line-height: 1.05;
  font-weight: 300;
}

.data-card-clone {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  transform: translateX(-2px);
  border-color: rgba(255, 255, 255, .13);
  align-items: center;
  text-align: left;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08)),
    rgba(255, 255, 255, .10);
  backdrop-filter: blur(13px);
  box-shadow:
    0 14px 20px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .16),
    inset 0 -1px 0 rgba(255, 255, 255, .06);
}

.data-clone-copy {
  position: absolute;
  left: 30px;
  right: 16px;
  top: auto;
  bottom: 8px;
  z-index: 2;
  width: auto;
  height: calc(37% + 11px);
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  border: 0;
  background: transparent;
  padding-left: 0;
  margin-top: 0;
  text-align: left;
}

.data-clone-copy strong,
.data-clone-copy small {
  display: block;
  width: 100%;
}

.data-clone-copy strong {
  margin-top: 0;
}

.data-clone-copy small {
  margin-top: 0;
}

.data-card-clone::before {
  content: "";
  position: absolute;
  inset: 9px 9px 8px 8px;
  z-index: -1;
  border-radius: 21px;
  background:
    linear-gradient(180deg, rgba(3, 10, 35, .08), rgba(12, 13, 51, .20)),
    url("../img/texturas/card-blue.jpg") center / cover no-repeat;
}

.data-card-clone::after {
  inset: 9px 9px 8px 8px;
  border-radius: 21px;
  background:
    linear-gradient(180deg, rgba(9, 13, 31, .02), rgba(5, 7, 22, .48) 62%, rgba(6, 7, 22, .62));
}

.data-folder-shape {
  position: absolute;
  left: 8px;
  right: 9px;
  bottom: 8px;
  width: calc(100% - 17px);
  height: auto;
  aspect-ratio: 144 / 89;
  object-fit: contain;
  z-index: 1;
  display: block;
  opacity: .20;
  filter: brightness(0) saturate(1) drop-shadow(0 -1px 0 rgba(255, 255, 255, .035));
  pointer-events: none;
}

.data-clone-orb {
  align-self: flex-start;
  width: 36px;
  height: 36px;
  margin-top: 0;
  margin-left: 14px;
  margin-bottom: 39px;
  padding: 0;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, .36);
  background: transparent;
  box-shadow:
    0 7px 12px rgba(0, 0, 0, .20);
}

.data-clone-orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.small-card {
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08)),
    rgba(255, 255, 255, .10);
  backdrop-filter: blur(13px);
  box-shadow:
    0 14px 20px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .16),
    inset 0 -1px 0 rgba(255, 255, 255, .06);
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.wide-card {
  grid-column: 1 / -1;
}

.match-button {
  overflow: visible;
  border-color: rgba(255, 255, 255, .13);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08)),
    rgba(255, 255, 255, .10);
  backdrop-filter: blur(13px);
  box-shadow:
    8px 10px 18px rgba(0, 0, 0, .32),
    0 14px 20px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .16),
    inset 0 -1px 0 rgba(255, 255, 255, .06);
}

.match-button > span {
  position: relative;
  z-index: 2;
  font-size: 19px;
}

.match-button__crest {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: auto;
  height: 62px;
  max-width: 62px;
  object-fit: contain;
  pointer-events: none;
}

.match-button__crest--left {
  left: 27px;
  transform: translateY(-50%);
}

.match-button__crest--right {
  right: 27px;
  transform: translateY(-50%);
}

.small-card::before {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: -1;
  border-radius: 18px;
  background: var(--button-bg) center / cover no-repeat;
}

.small-card::after {
  inset: 8px;
  z-index: -1;
  border-radius: 18px;
  background: rgba(0, 0, 0, .40);
  backdrop-filter: blur(1px);
}

.fixture,
.standings,
.stadiums,
.teams {
  width: calc(100% + 2px);
  border-radius: 28px;
}

.match-button {
  border-radius: 999px;
}

.fixture::before,
.fixture::after,
.standings::before,
.standings::after,
.stadiums::before,
.stadiums::after,
.teams::before,
.teams::after {
  border-radius: 21px;
}

.fixture::before,
.fixture::after {
  inset: 9px 8px;
}

.standings::before,
.standings::after,
.stadiums::before,
.stadiums::after,
.teams::before,
.teams::after {
  inset: 9px 8px;
}

.match-button::before,
.match-button::after {
  content: none;
}

.fixture,
.standings {
  transform: translateX(-2px);
}

.fixture {
  --button-bg: url("../img/texturas/card-wave.jpg");
}

.standings {
  --button-bg: url("../img/texturas/card-purple.jpg");
}

.stadiums {
  --button-bg: url("../img/texturas/grass.jpg");
}

.teams {
  --button-bg: url("../img/texturas/black-stone.jpg");
}

.separador-20 {
  height: 20px;
}

.separador-5 {
  height: 5px;
}

.separador-10 {
  height: 10px;
}

.separador-15 {
  height: 15px;
}

.separador-25 {
  height: 25px;
}

.separador-30 {
  height: 30px;
}

.separador-35 {
  height: 35px;
}

.separador-40 {
  height: 40px;
}

.separador-50 {
  height: 50px;
}

.matches {
  margin-top: 24px;
  text-align: center;
}

.match-block-partidos {
  margin-top: 32px;
  margin-bottom: 32px;
}

.match-block-partido-simple {
  margin-top: 20px;
  padding-top: 20px;
}

.matches h2 {
  margin: -5px 0 11px;
  font-size: 17px;
  line-height: 1;
  font-weight: 400;
  transform: translateY(-3px);
}

.match-title-compact {
  font-size: 13px !important;
  transform: translateY(-2px);
}

.titular {
  position: relative;
  width: 100%;
  margin: 26px 0 28px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 28px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08)),
    rgba(255, 255, 255, .10);
  backdrop-filter: blur(13px);
  box-shadow:
    0 14px 20px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .16),
    inset 0 -1px 0 rgba(255, 255, 255, .06);
}

.titular::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: -1;
  border-radius: 21px;
  background: rgba(45, 61, 71, .92);
  box-shadow: 0 10px 18px rgba(0, 0, 0, .28);
}

.titular__texto {
  position: relative;
  z-index: 1;
  margin: 0 !important;
  padding: 19px 12px 13px;
  font-size: 14px !important;
  line-height: 1;
  font-weight: 400;
  transform: translateY(0);
}

.titular__texto span {
  font-weight: 700;
}

.match-title-final {
  margin-bottom: 16px !important;
}

.match-row {
  position: relative;
  isolation: isolate;
  overflow: visible;
  width: calc(100% + 22px);
  height: 84px;
  margin: -11px;
  padding: 11px;
  display: grid;
  grid-template-columns: 58px 60px 1fr 60px 58px;
  align-items: center;
  color: #26303a;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 40px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08)),
    rgba(255, 255, 255, .10);
  backdrop-filter: blur(13px);
  box-shadow:
    0 14px 20px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .16),
    inset 0 -1px 0 rgba(255, 255, 255, .06);
}

.match-row::before {
  content: "";
  position: absolute;
  inset: 11px 10px 11px 11px;
  z-index: -1;
  border-radius: 32px;
  background: rgba(243, 244, 241, .92);
}

.match-row.final {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.match-row.final::after {
  content: "";
  position: absolute;
  inset: 0 0 1px 0;
  z-index: -2;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 40px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08)),
    rgba(255, 255, 255, .10);
  backdrop-filter: blur(13px);
  box-shadow:
    0 14px 20px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .16),
    inset 0 -1px 0 rgba(255, 255, 255, .06);
  pointer-events: none;
}

.third {
  margin-top: 5px;
  color: #f6f8fb;
}

.partido,
.eliminatorias {
  color: #fff;
}

.third::before,
.partido::before,
.eliminatorias::before {
  background: rgba(45, 61, 71, .92);
}

.partido .match-info span,
.eliminatorias .match-info span {
  color: rgba(255, 255, 255, .72);
}

.score {
  display: grid;
  place-items: center;
  height: 100%;
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  transform: translateY(-4px);
}

.score--nudge-right {
  transform: translate(1px, -4px);
}

.partido .left-score {
  transform: translate(1px, -4px);
}

.club {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  justify-self: center;
  z-index: 2;
  background: transparent;
  margin-top: -24px;
}

.left-club {
  transform: translate(-1px, 9px);
}

.right-club {
  transform: translate(1px, 9px);
}

.match-info {
  min-width: 0;
  padding: 0 4px;
  text-align: center;
  transform: translateY(-2px);
}

.match-info strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 700;
}

.match-info span {
  display: block;
  margin-top: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(38, 48, 58, .72);
  font-size: 11px;
  line-height: 1.15;
  font-weight: 400;
}

.third .match-info span {
  color: rgba(255,255,255,.72);
}

.match-caption,
.penalties {
  display: grid;
  grid-template-columns: 58px 60px 1fr 60px 58px;
  align-items: center;
  margin-top: 5px;
  padding: 0;
}

.match-caption {
  transform: translateY(10px);
}

body.page-worldcup-2026 .match-caption {
  grid-template-columns: 58px 60px 1fr 60px 58px;
}

.match-caption span {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

body.page-worldcup-2026 .match-caption span {
  font-size: 10px;
  line-height: 1;
}

.match-caption span:first-child {
  grid-column: 2;
  justify-self: center;
  width: max-content;
  transform: translateX(-1px);
}

.match-caption span:last-child {
  grid-column: 4;
  justify-self: center;
  width: max-content;
  transform: translateX(1px);
}

body.page-worldcup-2026 .match-caption span:first-child,
body.page-worldcup-2026 .match-caption span:last-child {
  width: max-content;
  white-space: nowrap;
  overflow-wrap: normal;
}

body.page-partidos .match-block--discipline,
body.page-qatar-champion .match-block--discipline {
  position: relative;
}

body.page-partidos .match-discipline,
body.page-qatar-champion .match-discipline {
  position: absolute;
  top: -26px;
  left: 0;
  z-index: 3;
  width: 100%;
  display: grid;
  grid-template-columns: 58px 60px 1fr 60px 58px;
  align-items: end;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

body.page-partidos .matches-reveal-final .match-discipline,
body.page-qatar-champion .matches-reveal-final .match-discipline {
  top: -4px;
}

body.page-partidos .match-discipline__team,
body.page-qatar-champion .match-discipline__team {
  display: grid;
  gap: 3px;
  justify-items: center;
  align-content: end;
  width: 105px;
  min-height: 19px;
  justify-self: center;
}

body.page-partidos .match-discipline__team--left,
body.page-qatar-champion .match-discipline__team--left {
  grid-column: 2;
  transform: translateX(0);
}

body.page-partidos .match-discipline__team--right,
body.page-qatar-champion .match-discipline__team--right {
  grid-column: 4;
  transform: translateX(0);
}

body.page-partidos .match-discipline__line,
body.page-qatar-champion .match-discipline__line {
  display: flex;
  justify-content: center;
  gap: 3px;
  min-height: 9px;
  width: 100%;
  max-width: none;
}

body.page-partidos .card-dot,
body.page-qatar-champion .card-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .24);
}

body.page-partidos .card-dot--yellow,
body.page-qatar-champion .card-dot--yellow {
  background: #fff100;
}

body.page-partidos .card-dot--red,
body.page-qatar-champion .card-dot--red {
  background: #ef1b24;
}

.match-link {
  grid-column: 3;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}

.penalties {
  margin-top: 8px;
  margin-bottom: -25px;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  color: rgba(255, 255, 255, .72);
}

.penalties span:first-child {
  grid-column: 2;
  transform: translateX(-1px);
}

.penalties span:last-child {
  grid-column: 4;
  transform: translateX(1px);
}

.pub_part_small_1 {
  margin: 60px 0;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08)),
    rgba(255, 255, 255, .10);
  backdrop-filter: blur(13px);
  box-shadow:
    0 14px 20px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .16),
    inset 0 -1px 0 rgba(255, 255, 255, .06);
}

.pub_part_small_1__inner {
  display: block;
  overflow: hidden;
  margin: 10px;
  border-radius: 21px;
  color: #fff;
  background:
    linear-gradient(180deg, transparent 0 1px, rgba(0, 0, 0, 0) 1px 48%, rgba(0, 0, 0, .82) 100%),
    linear-gradient(180deg, transparent 0 1px, rgba(0, 0, 0, .36) 1px 100%);
}

.pub_part_small_1__image_link {
  display: block;
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
  transform: translateY(1px);
}

.pub_part_small_1__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.pub_part_small_1__info {
  padding: 15px 18px 18px;
  text-align: left;
}

.pub_part_small_1__title {
  display: block;
  font-size: 21px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.pub_part_small_1__url {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  line-height: 1;
  font-weight: 400;
  text-decoration: none;
}

.pub_part_big_1 {
  margin: 60px 0;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08)),
    rgba(255, 255, 255, .10);
  backdrop-filter: blur(13px);
  box-shadow:
    0 14px 20px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .16),
    inset 0 -1px 0 rgba(255, 255, 255, .06);
}

.pub_part_big_1__inner {
  display: block;
  overflow: hidden;
  margin: 10px;
  border-radius: 21px;
  color: #fff;
  background:
    linear-gradient(180deg, transparent 0 1px, rgba(0, 0, 0, 0) 1px 48%, rgba(0, 0, 0, .82) 100%),
    linear-gradient(180deg, transparent 0 1px, rgba(0, 0, 0, .36) 1px 100%);
}

.pub_part_big_1__image_link {
  display: block;
  aspect-ratio: 1.45 / 2;
  overflow: hidden;
  transform: translateY(1px);
}

.pub_part_big_1__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
}

.pub_part_big_1__info {
  padding: 15px 18px 18px;
  text-align: left;
}

.pub_part_big_1__title {
  display: block;
  font-size: 21px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.pub_part_big_1__url {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  line-height: 1;
  font-weight: 400;
  text-decoration: none;
}

.matches > .pub_part_big_1:last-child,
.goals-list > .pub_part_big_1:last-child,
.bookings-list > .pub_part_big_1:last-child,
.squad-list > .pub_part_big_1:last-child,
.calendar-dates-stage > .pub_part_big_1:last-child {
  margin-bottom: 0;
}

body.page-players .squad-list > .pub_part_big_1:last-child,
body.page-equipos .squad-list > .pub_part_big_1:last-child {
  margin-top: 36px;
}

.app-screen:has(.fixture-footer-brand) {
  padding-bottom: 0;
}

.fixture-footer-spacer {
  height: 64px;
}

.fixture-footer-brand {
  position: relative;
  z-index: 1;
  display: block;
  width: 156px;
  height: auto;
  margin: 0 auto;
}

.fixture-footer-end-spacer {
  height: 64px;
}

.tabla_posiciones_A {
  width: calc(100% + 34px);
  margin: 18px -17px 40px;
  padding: 0 5px;
}

.tabla_posiciones_A__grid {
  display: grid;
  grid-template-columns: 38px repeat(4, minmax(0, 1fr));
  gap: 5px;
  align-items: end;
}

.tabla_posiciones_A__labels,
.tabla_posiciones_A__col {
  display: grid;
  grid-template-rows: 58px 34px repeat(8, 28px);
  gap: 5px;
  min-width: 0;
}

.tabla_posiciones_A__escudo_espacio,
.tabla_posiciones_A__escudo {
  width: 100%;
  height: 58px;
}

.tabla_posiciones_A__escudo {
  display: grid;
  place-items: center;
  justify-self: center;
}

.tabla_posiciones_A__escudo img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  display: block;
}

.tabla_posiciones_A__cell {
  display: grid;
  place-items: center;
  min-width: 0;
  border-radius: 7px;
  background: rgba(42, 6, 10, .64);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  backdrop-filter: blur(8px);
}

.tabla_posiciones_A__cell_header {
  padding: 0 6px;
  font-size: 10px;
}

.goals-screen {
  min-height: 100vh;
  padding: 40px 22px 105px;
  background-color: transparent;
}

.goals-hero {
  display: grid;
  justify-items: center;
  margin-bottom: 31px;
  text-align: center;
}

.goals-worldcup-logo {
  width: 106px;
  height: 126px;
  margin-bottom: 4px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 9px rgba(0, 0, 0, .22));
}

.goals-hero h1 {
  margin: 0;
  font-size: 26px;
  line-height: 1.05;
  font-weight: 700;
  text-shadow: 0 3px 10px rgba(0, 0, 0, .55);
}

.goals-hero p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, .96);
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  transform: translateY(3px);
  text-shadow: 0 3px 10px rgba(0, 0, 0, .55);
}

.goals-list {
  display: grid;
  gap: 16px;
}

.goals-list .pub_part_small_1 {
  margin-top: 44px;
  margin-bottom: 44px;
}

.goals-list .pub_part_big_1 {
  margin-top: 44px;
}

/* Qatar 2022 / Todos los goles: evita sumar el margen de tarjeta despues de anuncios. */
body.page-goals .goals-list > .pub_part_small_1 + .goals-single-goal-card {
  margin-top: 0;
}

/* Todos los goles: los titulares de seccion abren el bloque siguiente. */
body.page-goals .goals-list > .goals-own-goals-title,
body.page-goals .goals-list > .goals-shootout-title {
  margin-top: 20.5px;
  animation: none !important;
  transform: none !important;
  transition: none !important;
  will-change: auto !important;
}

body.page-goals .goals-list > .goals-own-goals-title.is-visible,
body.page-goals .goals-list > .goals-own-goals-title::before,
body.page-goals .goals-list > .goals-own-goals-title .goal-scorer__acrylic,
body.page-goals .goals-list > .goals-own-goals-title > :not(.goal-scorer__acrylic),
body.page-goals .goals-list > .goals-shootout-title.is-visible,
body.page-goals .goals-list > .goals-shootout-title::before,
body.page-goals .goals-list > .goals-shootout-title .goal-scorer__acrylic,
body.page-goals .goals-list > .goals-shootout-title > :not(.goal-scorer__acrylic) {
  animation: none !important;
  transition: none !important;
  will-change: auto !important;
}

body.page-goals .goals-list > .goals-own-goals-title + .goals-single-goal-card,
body.page-goals .goals-list > .goals-shootout-title + .goals-single-goal-card {
  margin-top: 11.5px !important;
}

.bookings-list .pub_part_small_1 {
  margin-top: 44px;
  margin-bottom: 44px;
}

.bookings-list .pub_part_big_1 {
  margin-top: 44px;
}

.bookings-screen {
  min-height: 100vh;
  padding: 40px 22px 105px;
  background-color: transparent;
}

.bookings-hero {
  display: grid;
  justify-items: center;
  margin-bottom: 31px;
  text-align: center;
}

.bookings-worldcup-logo {
  width: 106px;
  height: 126px;
  margin-bottom: 4px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 9px rgba(0, 0, 0, .22));
}

.bookings-hero h1 {
  margin: 0;
  font-size: 26px;
  line-height: 1.05;
  font-weight: 700;
  text-shadow: 0 3px 10px rgba(0, 0, 0, .55);
}

.bookings-hero p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, .96);
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  transform: translateY(3px);
  text-shadow: 0 3px 10px rgba(0, 0, 0, .55);
}

.bookings-list {
  display: grid;
  gap: 16px;
}

.players-screen {
  min-height: 100vh;
  padding: 40px 24px 105px;
  background-color: transparent;
}

.players-hero {
  display: grid;
  justify-items: center;
  margin-bottom: 28px;
  text-align: center;
}

.players-worldcup-logo {
  width: 106px;
  height: 126px;
  margin-bottom: 4px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 4px 9px rgba(0, 0, 0, .22));
}

.players-hero h1 {
  margin: 0;
  font-size: 26px;
  line-height: 1.05;
  font-weight: 700;
  text-shadow: 0 3px 10px rgba(0, 0, 0, .55);
}

.players-hero p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, .96);
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  transform: translateY(3px);
  text-shadow: 0 3px 10px rgba(0, 0, 0, .55);
}

.players-hero .index-hero-subtitle {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, .96);
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  transform: translateY(3px);
  text-shadow: 0 3px 10px rgba(0, 0, 0, .55);
}

.players-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px 15px;
}

.player-card {
  position: relative;
  isolation: isolate;
  min-height: 170px;
  display: grid;
  justify-items: center;
  align-content: start;
  padding: 16px 12px 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 28px;
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, .08);
  backdrop-filter: blur(13px);
  box-shadow:
    0 14px 20px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .07);
}

.player-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: -1;
  border-radius: 21px;
  background:
    linear-gradient(180deg, rgba(47, 42, 75, .64), rgba(42, 0, 50, .68)),
    url("../img/texturas/card-purple.jpg") center / cover no-repeat;
}

.player-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: -1;
  border-radius: 21px;
  background:
    linear-gradient(152deg, rgba(255, 255, 255, .13), transparent 32%),
    linear-gradient(0deg, rgba(17, 2, 31, .55), transparent 66%);
}

.player-card__acrylic {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.player-card__portrait {
  width: 96px;
  height: 96px;
  margin-bottom: 12px;
  padding: 4px;
  border: 4px solid rgba(255, 255, 255, .50);
  border-radius: 50%;
  background: rgba(0, 0, 0, .16);
  box-shadow: 0 7px 14px rgba(0, 0, 0, .28);
}

.player-card__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.player-card strong {
  display: -webkit-box;
  max-width: 100%;
  overflow: hidden;
  color: #fff;
  font-size: 14px;
  line-height: 1.15;
  font-weight: 600;
  text-overflow: ellipsis;
  text-shadow: 0 3px 9px rgba(0, 0, 0, .45);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.players-screen {
  padding: 40px 22px 105px;
}

.players-screen__tint {
  background: rgba(22, 0, 48, .18);
}

.players-hero {
  margin-bottom: 31px;
}

.squad-list {
  display: grid;
  gap: 30px;
}

.squad-player {
  position: relative;
  isolation: isolate;
  min-height: 132px;
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr) 82px;
  grid-template-rows: 61px 43px;
  align-items: center;
  column-gap: 0;
  color: #fff;
}

.squad-player::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  border-radius: 64px;
  background: transparent;
  box-shadow: 8px 10px 18px rgba(0, 0, 0, .32);
  pointer-events: none;
}

.squad-player__acrylic {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 64px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08)),
    rgba(255, 255, 255, .10);
  backdrop-filter: blur(13px);
  -webkit-mask: radial-gradient(circle 52px at 68px 66px, transparent 0 50px, #000 51px);
  mask: radial-gradient(circle 52px at 68px 66px, transparent 0 50px, #000 51px);
  box-shadow:
    0 14px 20px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .16),
    inset 0 -1px 0 rgba(255, 255, 255, .06);
}

.squad-player > :not(.squad-player__acrylic) {
  position: relative;
  z-index: 2;
}

.squad-player__portrait {
  position: absolute;
  left: 23px;
  top: 35px;
  width: 90px;
  height: 90px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: 0 5px 14px rgba(0, 0, 0, .28);
  transform: none;
}

.squad-player__portrait > img,
.squad-player__country img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

body.page-players .squad-player__portrait > img[src$="favicon.svg"],
body.page-players .squad-player__portrait > img[src$="favicon_placeholder.svg"] {
  padding: 14px;
  object-fit: contain !important;
  background: #fff;
  box-sizing: border-box;
}

body.page-qatar-champion .champion-starters-horizontal-list .squad-player__portrait > img[src$="favicon.svg"],
body.page-qatar-champion .champion-substitutes-horizontal-list .squad-player__portrait > img[src$="favicon.svg"],
body.page-qatar-champion .champion-goal-card .squad-player__portrait > img[src$="favicon.svg"] {
  padding: 17px;
  object-fit: contain;
  background: #fff;
  box-sizing: border-box;
}

/* Placeholder protocol: do not replace missing approved player photos with external images.
   Use public/img/logos/favicon_placeholder.svg and keep component-specific sizing below. */
body img[src$="favicon.svg"] {
  padding: 17px;
  object-fit: contain;
  background: #fff;
  box-sizing: border-box;
  border-radius: 50%;
}

body img[src$="favicon_placeholder.svg"] {
  padding: 17px;
  object-fit: contain;
  background: #fff;
  box-sizing: border-box;
  border-radius: 50%;
}

/* Mundial home champion card placeholder:
   outer .player-orb remains 67x67 with 5px ring; inner white circle is inset 2px per side. */
body.page-qatar .qatar-home-grid-item--champion .player-orb img[src$="favicon_placeholder.svg"] {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  margin: 2px;
  padding: 5px;
  object-fit: contain;
  background: #fff;
  box-sizing: border-box;
  border-radius: 50%;
}

body.page-players .squad-player__country img[src$="favicon.svg"],
body.page-players .squad-player__crest[src$="favicon.svg"],
body.page-qatar-champion .squad-player__country img[src$="favicon.svg"],
body.page-qatar-champion .squad-player__crest[src$="favicon.svg"],
body.page-qatar-champion .champion-selection-card .champion-selection-card__flag-portrait > img[src$="favicon.svg"],
body.page-qatar-champion .champion-selection-card .champion-selection-card__crest img[src$="favicon.svg"],
body.page-qatar-champion .director-tecnico-card__country img[src$="favicon.svg"],
body.page-bookings .booking-player__country img[src$="favicon.svg"],
body.page-goals .goal-scorer__country img[src$="favicon.svg"],
.country-emblem img[src$="favicon.svg"],
.player-orb img[src$="favicon.svg"],
.tabla_posiciones_A__escudo img[src$="favicon.svg"] {
  padding: 17px;
  object-fit: contain;
  background: #fff;
  box-sizing: border-box;
  border-radius: 50%;
}

.squad-player__country {
  position: absolute;
  left: 22px;
  top: 74px;
  z-index: 2;
  width: 45px;
  height: 45px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .82);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 5px 12px rgba(0, 0, 0, .28);
}

.squad-player__info {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  justify-self: start;
  min-width: 0;
  padding-left: 0;
  text-align: left;
  transform: translate(5px, 9px);
}

.squad-player__info strong {
  display: block;
  overflow: hidden;
  margin-bottom: -2px;
  padding-bottom: 2px;
  color: #fff;
  font-size: 14px;
  line-height: 1.12;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  transform: translateY(-3px);
}

.squad-player__info small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .92);
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  transform: translateY(1px);
}

.squad-player__number {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  justify-self: start;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 25px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  transform: translate(5px, 1px);
  text-shadow: 0 4px 10px rgba(0, 0, 0, .45);
}

.squad-player__plus {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: #fff;
  background: rgba(45, 39, 73, .78);
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18);
}

body.page-players .squad-player__plus {
  height: 31px;
  transform: translateY(-1px);
}

.squad-player__plus span {
  transform: translateY(-1px);
}

body.page-players .squad-player__plus span {
  transform: translateY(-2px);
}

.squad-player__digit {
  transform: translateY(-1px);
}

.squad-player__crest {
  grid-column: 3;
  grid-row: 1 / 3;
  width: 62px;
  height: 62px;
  object-fit: contain;
  justify-self: center;
  transform: translate(-18px, 12px);
  filter: drop-shadow(0 4px 5px rgba(0, 0, 0, .34));
}

.player-profile-loader[hidden] {
  display: none;
}

.player-profile-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  color: #fff;
}

.player-profile-loader__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .62);
  backdrop-filter: blur(8px);
}

.player-profile-loader__panel {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 16px;
  transform: translateY(-12px);
}

.player-profile-loader__ring {
  --player-profile-loader-progress: 0;
  position: relative;
  width: 208px;
  height: 208px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, .38));
}

.player-profile-loader__ring::before {
  content: none;
}

.player-profile-loader__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.player-profile-loader__progress {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: rotate(-90deg);
  display: none;
}

.player-profile-loader__track,
.player-profile-loader__value {
  fill: none;
  stroke-width: 18;
}

.player-profile-loader__track {
  stroke: rgba(255, 255, 255, .24);
}

.player-profile-loader__value {
  stroke: #1aa9ff;
  stroke-linecap: round;
  stroke-dasharray: 578;
  stroke-dashoffset: 578;
  transition: stroke-dashoffset 160ms ease-out;
}

.player-profile-loader__logo {
  position: relative;
  z-index: 1;
  display: block;
  width: 92px;
  height: auto;
  color: #fff;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, .28));
}

.player-profile-loader__percent {
  min-width: 58px;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 800;
  text-align: center;
  text-shadow: 0 4px 14px rgba(0, 0, 0, .5);
}

body.player-profile-loader-active {
  overflow: hidden;
}

body.page-qatar-champion .director-tecnico-card {
  --player-detail-header-width: 225px;
  --director-card-shell-width: min(100vw, var(--app-max-width));
  position: relative;
  z-index: 1;
  width: var(--director-card-shell-width);
  max-width: none;
  height: 570px;
  margin-top: -5px;
  margin-right: calc((100% - var(--director-card-shell-width)) / 2);
  margin-bottom: 0;
  margin-left: calc((100% - var(--director-card-shell-width)) / 2);
  transform: none;
  justify-items: stretch;
  overflow: visible;
}

body.page-qatar-champion .champion-goal-card + .director-tecnico-card {
  margin-top: 62px;
}

body.page-qatar-champion .director-tecnico-card + .champion-starters-total {
  margin-top: 30px;
}

body.page-qatar-champion .director-tecnico-card__acrylic-layer {
  position: absolute;
  left: calc(50% - (var(--player-detail-header-width) / 2));
  top: 0;
  width: var(--player-detail-header-width);
  height: 540px;
  border-radius: calc(var(--player-detail-header-width) / 2);
  transform: none;
  isolation: isolate;
  filter: none;
  pointer-events: none;
}

body.page-qatar-champion .director-tecnico-card__acrylic-layer::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: calc(var(--player-detail-header-width) / 2);
  transform: none;
  transform-origin: center;
  box-shadow:
    34px 25px 31px rgba(0, 0, 0, .36),
    14px 8px 20px rgba(0, 0, 0, .22);
  pointer-events: none;
}

body.page-qatar-champion .director-tecnico-card .squad-player__acrylic {
  inset: 0;
  border-radius: calc(var(--player-detail-header-width) / 2);
  transform: none;
  transform-origin: center;
  filter: none;
  -webkit-mask: radial-gradient(circle 91px at 50% 110px, transparent 0 89px, #000 90px);
  mask: radial-gradient(circle 91px at 50% 110px, transparent 0 89px, #000 90px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .16),
    inset 0 -1px 0 rgba(255, 255, 255, .06);
}

body.page-qatar-champion .director-tecnico-card__portrait {
  position: absolute;
  z-index: 2;
  left: calc(50% - 83px);
  top: calc(110px - 83px);
  width: 166px;
  height: 166px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

body.page-qatar-champion .director-tecnico-card__portrait img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}

body.page-qatar-champion .director-tecnico-card__crest {
  position: absolute;
  z-index: 3;
  left: calc(50% - 40px);
  top: 162px;
  width: 80px;
  height: 80px;
  transform: none;
  filter: drop-shadow(0 4px 5px rgba(0, 0, 0, .34));
}

body.page-qatar-champion .director-tecnico-card__crest img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

body.page-qatar-champion .director-tecnico-card__number {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  top: 245px;
  width: 100%;
  justify-content: center;
  color: #fff;
  font-size: 42px;
  line-height: .9;
  font-weight: 700;
  text-shadow: 0 4px 10px rgba(0, 0, 0, .45);
  transform: none;
}

body.page-qatar-champion .director-tecnico-card__number span {
  display: block;
}

body.page-qatar-champion .director-tecnico-card__info {
  position: absolute;
  z-index: 3;
  left: 0;
  right: auto;
  top: 292px;
  width: 100%;
  padding-left: 0;
  color: #fff;
  text-align: center;
  text-shadow: 0 4px 10px rgba(0, 0, 0, .45);
  transform: none;
}

body.page-qatar-champion .director-tecnico-card__info strong {
  display: block;
  margin: 0;
  padding: 0;
  color: #fff;
  font-size: 21px;
  line-height: 1.05;
  font-weight: 400;
  transform: translateY(-2px);
}

body.page-qatar-champion .director-tecnico-card__first-name,
body.page-qatar-champion .director-tecnico-card__last-name {
  display: block;
}

body.page-qatar-champion .director-tecnico-card__first-name {
  font-size: 19px;
}

body.page-qatar-champion .director-tecnico-card__last-name {
  font-weight: 700;
}

body.page-qatar-champion .director-tecnico-card__info small {
  display: block;
  margin-top: 0;
  color: rgba(255, 255, 255, .92);
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  text-transform: none;
  transform: translateY(1px);
}

body.page-qatar-champion .director-tecnico-card__team-country {
  position: absolute;
  left: 0;
  right: 0;
  top: 48px;
  text-transform: uppercase;
}

body.page-qatar-champion .director-tecnico-card__info .director-tecnico-card__nickname {
  position: absolute;
  left: 0;
  right: 0;
  top: 80px;
  font-size: 15px;
  font-weight: 700;
  text-transform: none;
}

body.page-qatar-champion .director-tecnico-card__info .director-tecnico-card__age-value {
  position: absolute;
  left: 0;
  right: 0;
  top: 124px;
  font-size: 21px;
  font-weight: 400;
  text-transform: none;
}

body.page-qatar-champion .director-tecnico-card__age-label {
  position: absolute;
  left: 0;
  right: 0;
  top: 150px;
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
}

body.page-qatar-champion .director-tecnico-card__birthdate {
  position: absolute;
  left: 0;
  right: 0;
  top: 168px;
  margin-top: 0;
  font-size: 12px;
  font-weight: 400;
  text-transform: none;
}

body.page-qatar-champion .director-tecnico-card__country {
  position: absolute;
  z-index: 3;
  left: calc(50% - 35px);
  top: auto;
  right: auto;
  bottom: 0;
  width: 70px;
  height: 70px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .82);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 5px 12px rgba(0, 0, 0, .28);
  transform: none;
}

body.page-qatar-champion .director-tecnico-card__country img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}
.booking-player,
.booking-total {
  position: relative;
  isolation: isolate;
  min-height: 94px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 34px 28px;
  align-items: center;
  column-gap: 8px;
  color: #fff;
}

.booking-player::before,
.booking-total::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 11px;
  bottom: 17px;
  left: 58px;
  z-index: 1;
  border-radius: 27px;
  background:
    linear-gradient(180deg, rgba(75, 71, 60, .58), rgba(42, 0, 5, .72)),
    rgba(0, 0, 0, .44);
}

.booking-player__acrylic {
  position: absolute;
  top: 7px;
  right: 0;
  bottom: 6px;
  left: 47px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 38px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08)),
    rgba(255, 255, 255, .10);
  backdrop-filter: blur(13px);
  box-shadow:
    0 14px 20px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .16),
    inset 0 -1px 0 rgba(255, 255, 255, .06);
}

.booking-player::before {
  right: 10px;
}

body.page-bookings .booking-player::before {
  left: 28px;
}

body.page-bookings .booking-player .booking-player__acrylic {
  left: 17px;
}

.booking-player .booking-player__acrylic {
  bottom: 7px;
}

.booking-player > :not(.booking-player__acrylic),
.booking-total > :not(.booking-player__acrylic) {
  position: relative;
  z-index: 2;
}

.booking-player__portrait {
  width: 92px;
  height: 92px;
  padding: 4px;
  border: 4px solid rgba(255, 255, 255, .54);
  border-radius: 50%;
  background: rgba(0, 0, 0, .16);
  box-shadow: 0 5px 14px rgba(0, 0, 0, .28);
}

.booking-player__portrait > img,
.booking-player__country img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

.booking-player__portrait > img {
  color: transparent;
  font-size: 0;
}

body.page-bookings .booking-player__portrait > img[src$="favicon.svg"] {
  padding: 17px;
  object-fit: contain;
  background: #fff;
  box-sizing: border-box;
}

.fixture-image-fallback {
  padding: 17px;
  object-fit: contain;
  background: #fff;
  box-sizing: border-box;
  border-radius: 50%;
}

.booking-player__country {
  position: absolute;
  right: -13px;
  bottom: -8px;
  z-index: 2;
  width: 45px;
  height: 45px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .82);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 5px 12px rgba(0, 0, 0, .28);
}

.booking-player__info {
  min-width: 0;
  padding-left: 10px;
  text-align: left;
}

.booking-player__info strong {
  display: block;
  overflow: hidden;
  margin-bottom: -2px;
  padding-bottom: 2px;
  color: #fff;
  font-size: 14px;
  line-height: 1.12;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  transform: translateY(-3px);
}

.booking-player__info small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .92);
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  transform: translateY(1px);
}

.booking-player__card {
  width: 22px;
  height: 30px;
  justify-self: center;
  border-radius: 3px;
  transform: translateX(-20px);
  box-shadow:
    0 4px 8px rgba(0, 0, 0, .35),
    inset 0 1px 0 rgba(255, 255, 255, .34);
}

.booking-player--red .booking-player__card,
.booking-total--red .booking-player__card {
  background: linear-gradient(180deg, #ff6258, #c90b12);
}

.booking-player--yellow .booking-player__card,
.booking-total--yellow .booking-player__card {
  background: linear-gradient(180deg, #ffe987, #f7b900);
}

.booking-player__count {
  color: #fff;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  transform: translateX(-28px);
  text-shadow: 0 4px 10px rgba(0, 0, 0, .45);
}

.booking-total::before {
  top: 21px;
  bottom: 20px;
  left: 11px;
  background: rgba(243, 244, 241, .92);
}

.booking-total .booking-player__acrylic {
  top: 10px;
  bottom: 9px;
  left: 0;
}

.booking-total {
  grid-template-columns: minmax(0, 1fr) 78px minmax(0, 1fr);
}

.booking-total__card {
  width: 42px;
  height: 58px;
  transform: none;
}

.booking-total--red .booking-total__card,
.booking-total--yellow .booking-total__card {
  transform: translateX(55px) rotate(22deg) scale(1.1);
}

.booking-total__info {
  justify-self: end;
  padding-left: 0;
  padding-right: 0;
  text-align: right;
  transform: translateX(-2px);
}

.booking-total__count {
  justify-self: start;
  width: auto;
  padding-left: 0;
  color: #26303a;
  font-size: 28px;
  text-shadow: none;
  transform: translateX(40px);
}

.booking-total--red .booking-total__count,
.booking-total--yellow .booking-total__count {
  justify-self: center;
  text-align: center;
  transform: translateX(0);
}

.booking-total .booking-player__info strong {
  color: #26303a;
  text-shadow: none;
  transform: translate(55px, -1px);
}

.booking-total .booking-player__info small {
  color: rgba(38, 48, 58, .82);
  transform: translateX(55px);
}

.goal-scorer {
  position: relative;
  isolation: isolate;
  min-height: 94px;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr) 34px 28px;
  align-items: center;
  column-gap: 8px;
  color: #fff;
}

.goal-scorer::before {
  content: "";
  position: absolute;
  top: 18px;
  right: 11px;
  bottom: 17px;
  left: 58px;
  z-index: 1;
  border-radius: 27px;
  background:
    linear-gradient(180deg, rgba(75, 71, 60, .54), rgba(42, 0, 5, .66)),
    rgba(0, 0, 0, .38);
}

.goal-scorer:not(.goals-total)::before {
  right: 10px;
}

body.page-goals .goal-scorer:not(.goals-total)::before {
  left: 28px;
}

body.page-goals .goal-scorer:not(.goals-total) .goal-scorer__acrylic {
  left: 17px;
}

.goal-scorer__acrylic {
  position: absolute;
  top: 7px;
  right: 0;
  bottom: 6px;
  left: 47px;
  z-index: 0;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 38px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .08)),
    rgba(255, 255, 255, .10);
  backdrop-filter: blur(13px);
  box-shadow:
    0 14px 20px rgba(0, 0, 0, .18),
    inset 0 1px 0 rgba(255, 255, 255, .16),
    inset 0 -1px 0 rgba(255, 255, 255, .06);
}

.goal-scorer > :not(.goal-scorer__acrylic) {
  position: relative;
  z-index: 2;
}

.goals-total::before {
  top: 21px;
  bottom: 20px;
  left: 11px;
  background: rgba(243, 244, 241, .92);
}

.goals-total .goal-scorer__acrylic {
  top: 10px;
  bottom: 9px;
  left: 0;
}

.goals-total {
  grid-template-columns: minmax(0, 1fr) 78px minmax(0, 1fr);
}

.goals-total .goals-total__ball {
  width: 78px;
  height: 78px;
  justify-self: center;
  transform: none;
}

.goals-total .goals-total__info {
  justify-self: end;
  padding-left: 0;
  padding-right: 0;
  text-align: right;
  transform: translateX(-2px);
}

.goals-total .goals-total__goals {
  justify-self: start;
  width: auto;
  padding-left: 0;
  font-size: 28px;
  transform: translateX(53px);
}

.goals-total .goals-total__shootout {
  font-weight: 400;
}

.goals-total .goal-scorer__info strong,
.goals-total .goal-scorer__goals {
  color: #26303a;
  text-shadow: none;
}

.goals-total .goal-scorer__info strong {
  transform: translateY(-1px);
}

.goals-total .goal-scorer__info small {
  color: rgba(38, 48, 58, .82);
  transform: translateY(0);
}

.goal-scorer__player {
  width: 92px;
  height: 92px;
  padding: 4px;
  border: 4px solid rgba(255, 255, 255, .54);
  border-radius: 50%;
  background: rgba(0, 0, 0, .16);
  box-shadow: 0 5px 14px rgba(0, 0, 0, .28);
}

.goal-scorer__player > img,
.goal-scorer__country img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}

body.page-goals .goal-scorer__player > img[src$="favicon.svg"] {
  padding: 17px;
  object-fit: contain;
  background: #fff;
  box-sizing: border-box;
}

.goal-scorer__country {
  position: absolute;
  right: -13px;
  bottom: -8px;
  z-index: 2;
  width: 45px;
  height: 45px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .82);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 5px 12px rgba(0, 0, 0, .28);
}

.goal-scorer__info {
  min-width: 0;
  padding-left: 10px;
  text-align: left;
}

.goal-scorer__info strong {
  display: block;
  overflow: hidden;
  margin-bottom: -2px;
  padding-bottom: 2px;
  color: #fff;
  font-size: 14px;
  line-height: 1.12;
  font-weight: 600;
  white-space: nowrap;
  text-overflow: ellipsis;
  transform: translateY(-3px);
}

.goal-scorer__info small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, .92);
  font-size: 12px;
  line-height: 1;
  font-weight: 400;
  text-transform: uppercase;
  transform: translateY(1px);
}

.goal-scorer__ball {
  width: 26px;
  height: 26px;
  object-fit: contain;
  display: block;
  transform: translateX(-22px);
  filter: drop-shadow(0 4px 5px rgba(0, 0, 0, .34));
}

.goal-scorer__goals {
  color: #fff;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  text-align: center;
  transform: translateX(-28px);
  text-shadow: 0 4px 10px rgba(0, 0, 0, .45);
}

.third-title {
  margin-top: 16px !important;
  margin-bottom: 8px !important;
  font-size: 13px !important;
}

.badge-text,
.badge-dark {
  width: 72px;
  height: 58px;
  padding-top: 12px;
  border-radius: 14px;
  color: white;
  background: linear-gradient(135deg, #9b2231, #1f2536);
  font-size: 12px;
  line-height: .9;
  font-weight: 800;
}

.badge-text small,
.badge-dark small {
  font-size: 5px;
  letter-spacing: .04em;
}

.badge-dark {
  background: linear-gradient(135deg, #0b2734, #348ea0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready [data-reveal] {
    transform: none;
    transition: opacity 320ms ease-out;
  }

  .reveal-ready [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 700px) {
  .phone-shell {
    width: min(var(--app-max-width), 100vw);
    transform-origin: top center;
  }
}

@media (min-width: 371px) and (max-width: 400px) {
          }

@media (max-width: 370px) {
  .app-screen {
    padding-inline: 16px;
  }

  .goals-screen {
    padding-inline: 16px;
  }

  .bookings-screen {
    padding-inline: 16px;
  }

  .players-screen {
    padding-inline: 18px;
  }

  .players-grid {
    gap: 14px 12px;
  }

  .player-card {
    min-height: 160px;
    padding-inline: 10px;
  }

  .player-card__portrait {
    width: 88px;
    height: 88px;
  }

  .goal-scorer {
    grid-template-columns: 86px minmax(0, 1fr) 30px 24px;
    column-gap: 7px;
  }

  .booking-player {
    grid-template-columns: 86px minmax(0, 1fr) 30px 24px;
    column-gap: 7px;
  }

  .goal-scorer__player {
    width: 86px;
    height: 86px;
  }

  .booking-player__portrait {
    width: 86px;
    height: 86px;
  }

  .goal-scorer__ball {
    width: 26px;
    height: 26px;
  }

  .feature-grid {
    gap: 13px 18px;
  }

  .match-row {
    grid-template-columns: 50px 52px 1fr 52px 50px;
  }

  .club {
    width: 62px;
    height: 62px;
  }
}
