/* WatchMeWin hub redesign — Xbox rails + Swoosh lime + WMW tokens
 * Plan: brand-assets/HUB-REDESIGN-PLAN.md
 */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 70% 45% at 80% -5%, rgba(139, 92, 246, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 35% at 0% 10%, rgba(209, 251, 48, 0.06), transparent 50%),
    var(--wmw-body-bg);
  color: var(--wmw-text-white);
  font-family: var(--wmw-font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--wmw-accent);
  text-decoration: none;
}

a:hover {
  color: var(--wmw-accent-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ——— Header ——— */

.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(22, 32, 54, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
  max-width: var(--wmw-desktop-width);
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.site-logo img {
  height: 26px;
  width: auto;
  display: block;
}

.site-badge {
  display: none;
}

.site-nav {
  display: none;
  flex: 1;
  align-items: center;
  justify-content: center;
  gap: 0.15rem 1.15rem;
  font-family: var(--wmw-font-button);
  font-size: 0.8125rem;
  font-weight: 500;
}

.site-nav a {
  color: #9aa0a8;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: #fff;
}

.site-header .site-header__login {
  display: none;
  margin-left: auto;
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
}

.site-header .site-header__cta {
  display: none;
}

.site-header__reg {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--wmw-font-button);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1;
  border: 1px solid transparent;
  border-radius: 9999px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.15s ease;
}

.btn--primary {
  background: var(--wmw-accent);
  color: var(--wmw-accent-text);
  padding: 0.75rem 1.4rem;
}

.btn--primary:hover {
  background: var(--wmw-accent-hover);
  color: var(--wmw-accent-text);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
  padding: 0.75rem 1.25rem;
}

.btn--ghost:hover {
  border-color: var(--wmw-accent);
  color: var(--wmw-accent);
}

.btn--lg {
  padding: 0.9rem 1.6rem;
}

.nav-toggle {
  margin-left: auto;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0 auto;
  background: currentColor;
  box-shadow: 0 -5px 0 currentColor, 0 5px 0 currentColor;
}

@media (min-width: 64rem) {
  .site-nav {
    display: flex;
  }

  .site-header .site-header__login {
    display: inline-flex;
  }

  .site-header .site-header__cta {
    display: inline-flex;
    margin-left: 0;
  }

  .nav-toggle {
    display: none;
  }
}

.site-nav--open {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  inset: 100% 0 auto;
  background: var(--wmw-darkest);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.25rem 1.25rem;
  gap: 0.75rem;
  z-index: 50;
}

/* mobile: one primary CTA visible next to burger */
@media (max-width: 63.99rem) {
  .site-header .site-header__cta {
    display: inline-flex;
    margin-left: auto;
    padding: 0.55rem 1rem;
    font-size: 0.8rem;
  }

  .nav-toggle {
    margin-left: 0.5rem;
  }
}

/* ——— Shared section shell ——— */

.band {
  width: 100%;
}

.band__inner {
  max-width: var(--wmw-desktop-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.band__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.25rem;
}

.band__title {
  font-family: var(--wmw-font-title);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
}

.band__sub {
  margin: 0.35rem 0 0;
  color: #9aa0a8;
  font-size: 0.95rem;
}

.band__link {
  font-family: var(--wmw-font-button);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--wmw-accent);
}

/* ——— Hub stage: slider first, brand mast, no SaaS card ——— */

.hub-stage {
  padding: 1rem 0 2.25rem;
}

.hub-stage__inner {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.hub-stage__slider {
  padding: 0;
}

.hub-mast {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.65rem;
  max-width: 46rem;
  margin-inline: auto;
  width: 100%;
}

.hub-mast__kicker {
  margin: 0;
  font-family: var(--wmw-font-button);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(209, 251, 48, 0.85);
}

.hub-mast__h1 {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
}

.hub-mast__below {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  margin-top: 0.25rem;
}

.hub-mast__brand {
  font-family: var(--wmw-font-title);
  font-size: clamp(2.6rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.045em;
  color: #fff;
}

.hub-mast__brand span {
  color: var(--wmw-accent);
}

.hub-mast__deck {
  font-family: var(--wmw-font-body);
  font-size: clamp(0.98rem, 1.8vw, 1.2rem);
  font-weight: 400;
  line-height: 1.4;
  color: #b7bcc6;
  max-width: 36rem;
}

.hub-mast__offer {
  margin: 0.15rem 0 0;
  font-family: var(--wmw-font-title);
  font-size: clamp(1.55rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--wmw-accent);
}

.hub-mast__meta {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #8b929e;
  max-width: 36rem;
}

.hub-mast__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 0.35rem;
}

.hub-facts {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0.85rem 0 0;
  width: 100%;
  max-width: 48rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hub-facts li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 5.5rem;
}

.hub-facts span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a8290;
}

.hub-facts strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: #fff;
}

/* ——— Promo slider ——— */

.promo-slider {
  padding: 0.25rem 0 2rem;
}

/* Official desktop banner size 1248×344 — art right, HTML left */
.promo-slider__frame {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #07090f;
  aspect-ratio: 1248 / 344;
  width: 100%;
}

.promo-slider__track {
  display: flex;
  height: 100%;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.promo-slider__slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  isolation: isolate;
}

.promo-slider__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
}

.promo-slider__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(7, 9, 15, 0.55) 0%,
    rgba(7, 9, 15, 0.28) 32%,
    rgba(7, 9, 15, 0.05) 55%,
    transparent 72%
  );
}

.promo-slider__content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0.45rem;
  padding: clamp(0.9rem, 2.6vw, 1.85rem) clamp(1.25rem, 3.6vw, 2.6rem);
  max-width: min(34rem, 58%);
}

.promo-slider__title {
  margin: 0;
  font-family: var(--wmw-font-title);
  font-size: clamp(1.05rem, 2.55vw, 1.8rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: #fff;
  text-wrap: balance;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.45);
}

.promo-slider__sub {
  margin: 0;
  font-family: var(--wmw-font-body);
  font-size: clamp(0.82rem, 1.5vw, 1rem);
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  max-width: 28rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.4);
}

.promo-slider__cta {
  margin-top: 0.55rem;
  padding: 0.75rem 1.65rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--wmw-radius-64);
}

.promo-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 9, 15, 0.55);
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  backdrop-filter: blur(8px);
}

.promo-slider__nav:hover {
  border-color: var(--wmw-accent);
  color: var(--wmw-accent);
  background: rgba(7, 9, 15, 0.8);
}

.promo-slider__nav--prev {
  left: 0.75rem;
}

.promo-slider__nav--next {
  right: 0.75rem;
}

.promo-slider__dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.promo-slider__dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 9999px;
  border: 0;
  padding: 0;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
  transition: width 0.2s ease, background 0.2s ease;
}

.promo-slider__dot.is-active {
  background: var(--wmw-accent);
  width: 1.2rem;
}

@media (max-width: 40rem) {
  .hub-stage {
    padding: 0.65rem 0 1.75rem;
  }

  .hub-stage__inner {
    gap: 1.1rem;
  }

  .hub-mast__brand {
    font-size: clamp(2.2rem, 12vw, 2.9rem);
  }

  .hub-facts {
    gap: 0.75rem 1rem;
  }

  .promo-slider__frame {
    aspect-ratio: auto;
    min-height: 15rem;
    border-radius: 12px;
  }

  .promo-slider__bg {
    object-position: 78% center;
  }

  .promo-slider__veil {
    background: linear-gradient(
      180deg,
      rgba(7, 9, 15, 0.15) 0%,
      rgba(7, 9, 15, 0.68) 45%,
      rgba(7, 9, 15, 0.94) 100%
    );
  }

  .promo-slider__content {
    max-width: 100%;
    justify-content: flex-end;
    padding: 1rem 1rem 1.25rem;
    gap: 0.35rem;
  }

  .promo-slider__title {
    font-size: 1.08rem;
  }

  .promo-slider__sub {
    font-size: 0.82rem;
  }

  .promo-slider__nav {
    width: 2.1rem;
    height: 2.1rem;
    font-size: 1.05rem;
  }
}

/* legacy hero (inner pages may unused) */
.hero-band {
  padding: 1.75rem 0 1.25rem;
}

.page-h1 {
  font-family: var(--wmw-font-title);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  color: #fff;
  max-width: 40rem;
}

/* ——— Quick paths ——— */

.quick-paths {
  padding: 0 0 2rem;
}

.quick-paths__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 48rem) {
  .quick-paths__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.quick-card {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #121826;
  color: #fff;
  transition: 0.15s ease;
}

.quick-card:hover {
  border-color: rgba(209, 251, 48, 0.45);
  color: #fff;
  transform: translateY(-2px);
}

.quick-card strong {
  display: block;
  font-family: var(--wmw-font-title);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.quick-card span {
  color: #9aa0a8;
  font-size: 0.85rem;
}

/* ——— Pros / Cons ——— */

.pros-cons {
  /* centered under hub */
  padding: 1rem 0 2.5rem;
}

.pros-cons .band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pros-cons .band__head {
  width: 100%;
  max-width: 52rem;
  justify-content: center;
  text-align: center;
}

.pros-cons__grid {
  width: 100%;
  max-width: 52rem;

  display: grid;
  gap: 1rem;
}

@media (min-width: 48rem) {
  .pros-cons__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.pc-panel {
  border-radius: 12px;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pc-panel--pro {
  background: linear-gradient(180deg, #152318 0%, #101820 100%);
  border-color: rgba(209, 251, 48, 0.25);
}

.pc-panel--con {
  background: linear-gradient(180deg, #241518 0%, #151018 100%);
  border-color: rgba(234, 83, 74, 0.28);
}

.pc-panel h3 {
  font-family: var(--wmw-font-title);
  font-size: 1.05rem;
  margin: 0 0 0.85rem;
}

.pc-panel--pro h3 {
  color: var(--wmw-accent);
}

.pc-panel--con h3 {
  color: #f0a8a3;
}

.pc-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pc-panel li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.15rem;
  color: #d5dae3;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.95rem;
}

.pc-panel li:last-child {
  border-bottom: none;
}

.pc-panel--pro li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--wmw-accent);
  font-weight: 700;
}

.pc-panel--con li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #ea534a;
  font-weight: 700;
}

/* ——— Welcome tiers ——— */

.welcome-tiers {
  padding: 0.5rem 0 2.75rem;
}

.welcome-tiers__grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 56rem) {
  .welcome-tiers__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.tier-card {
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 246, 0.28);
  background: linear-gradient(165deg, var(--wmw-box-bg-2) 0%, var(--wmw-box-bg) 100%);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-height: 100%;
}

.tier-card__n {
  font-family: var(--wmw-font-button);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wmw-accent);
}

.tier-card__value {
  font-family: var(--wmw-font-title);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--wmw-accent);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.tier-card__game {
  color: #c2bdd4;
  font-size: 0.9rem;
  margin: 0;
}

.tier-card__meta {
  margin-top: auto;
  padding-top: 0.75rem;
  font-size: 0.8rem;
  color: #8b919c;
}

/* ——— Lobby page (official casino look) ——— */

.lobby-page {
  background: #000;
}

.lobby-page .site-header {
  background: rgba(0, 0, 0, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

.lobby-page .hub-stage {
  padding-top: 0.75rem;
  padding-bottom: 0.5rem;
}

/* Inner pages — same lobby chrome, shared mast */
.page-head {
  padding: 0.85rem 0 0.35rem;
}

.page-mast .hub-mast__brand {
  font-size: clamp(1.75rem, 5vw, 2.55rem);
}

.page-mast .hub-mast__deck {
  font-size: clamp(0.98rem, 2.2vw, 1.2rem);
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.92);
}

.page-mast .hub-mast__offer {
  font-size: clamp(1.35rem, 3.5vw, 1.85rem);
}

.page-mast .hub-mast__meta {
  max-width: 28rem;
  font-size: 0.85rem;
}

.faq-band__lead,
.faq-band__after {
  max-width: 44rem;
  margin: 0 auto 1rem;
  text-align: center;
  color: var(--wmw-text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

.faq-band__after {
  margin-top: 1.25rem;
  margin-bottom: 0;
}

.faq-band__lead p,
.faq-band__after p {
  margin: 0 0 0.65rem;
}

.faq-band__lead a,
.faq-band__after a {
  color: var(--wmw-anchor);
}


.lobby-page .site-main {
  flex: 1;
}

.lobby-page .content-flow {
  padding-top: 0.5rem;
}

/* ——— Lobby category chips ——— */

.lobby-cats {
  padding: 0.35rem 0 0.75rem;
}

.lobby-cats__row {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.lobby-cats__row::-webkit-scrollbar {
  display: none;
}

.lobby-cat {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--wmw-font-button);
  font-size: 0.82rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  padding: 0.55rem 1rem 0.55rem 0.65rem;
  border-radius: 9999px;
  background: #1a1c23;
  border: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.lobby-cat img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  opacity: 0.9;
}

.lobby-cat:hover {
  color: var(--wmw-accent-text);
  background: var(--wmw-accent);
}

.lobby-cat:hover img {
  filter: brightness(0);
}

/* ——— Game rails ——— */

.game-rail,
.offers-rail,
.tour-rail {
  padding: 0.85rem 0 1.35rem;
}

.game-rail__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.game-rail__title {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  font-family: var(--wmw-font-title);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.01em;
}

.game-rail__title img {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.game-rail__controls {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.game-rail__all {
  font-family: var(--wmw-font-button);
  font-size: 0.75rem;
  font-weight: 600;
  color: #c8ccd6;
  text-decoration: none;
  padding: 0.45rem 0.9rem;
  border-radius: 9999px;
  background: #1a1c23;
  white-space: nowrap;
}

.game-rail__all:hover {
  color: #fff;
  background: #252830;
}

.game-rail__arrow {
  width: 2.1rem;
  height: 2.1rem;
  border: none;
  border-radius: 9999px;
  background: #1a1c23;
  color: #fff;
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}

.game-rail__arrow:hover {
  background: #2a2d38;
}

.game-rail__scroller,
.offers-rail__scroller,
.tour-rail__scroller {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(8.25rem, 10.25rem);
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.35rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(209, 251, 48, 0.35) transparent;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 48rem) {
  .game-rail__scroller {
    grid-auto-columns: minmax(9.5rem, calc((100% - 5 * 0.85rem) / 6));
  }
}

.game-rail__scroller::-webkit-scrollbar,
.offers-rail__scroller::-webkit-scrollbar,
.tour-rail__scroller::-webkit-scrollbar {
  height: 4px;
}

.game-rail__scroller::-webkit-scrollbar-thumb,
.offers-rail__scroller::-webkit-scrollbar-thumb,
.tour-rail__scroller::-webkit-scrollbar-thumb {
  background: rgba(209, 251, 48, 0.35);
  border-radius: 9999px;
}

.game-card {
  scroll-snap-align: start;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.game-card:hover {
  color: #fff;
}

.game-card__media {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: #14161c;
}

.game-card__img {
  aspect-ratio: 3 / 4;
  width: 100%;
  object-fit: cover;
}

.game-card__play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.18s ease;
}

.game-card__play::after {
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: var(--wmw-accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230C0F19'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center / 1.05rem no-repeat;
}

.game-card:hover .game-card__play {
  opacity: 1;
}

.game-card__name {
  font-family: var(--wmw-font-button);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  color: #e8e9ed;
}

/* ——— Special offers ——— */

.offers-rail__scroller {
  grid-auto-columns: minmax(16rem, 22rem);
  gap: 1rem;
}

@media (min-width: 56rem) {
  .offers-rail__scroller {
    grid-auto-columns: minmax(20rem, calc((100% - 2rem) / 3));
  }
}

.offer-card {
  position: relative;
  scroll-snap-align: start;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid var(--wmw-accent);
  min-height: 11.5rem;
  background: #0a0c12;
}

.offer-card__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-card__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.25) 55%, transparent 100%);
}

.offer-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  min-height: 11.5rem;
  padding: 1rem 1.1rem 1.1rem;
}

.offer-card__title {
  margin: 0;
  max-width: 14rem;
  font-family: var(--wmw-font-title);
  font-size: clamp(0.85rem, 1.8vw, 1.05rem);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  color: #fff;
}

.offer-card__cta {
  align-self: flex-start;
  padding: 0.55rem 1.1rem;
  font-size: 0.8rem;
}

.btn--ghost-lime {
  background: transparent;
  color: #fff;
  border-color: var(--wmw-accent);
}

.btn--ghost-lime:hover {
  background: rgba(209, 251, 48, 0.12);
  color: #fff;
  border-color: var(--wmw-accent-hover);
}

/* ——— Tournaments ——— */

.tour-rail__scroller {
  grid-auto-columns: minmax(14rem, 18rem);
  gap: 0.9rem;
}

@media (min-width: 56rem) {
  .tour-rail__scroller {
    grid-auto-columns: minmax(16rem, calc((100% - 2.7rem) / 4));
  }
}

.tour-card {
  position: relative;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  aspect-ratio: 16 / 10;
  background: #14161c;
}

.tour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-card__tag {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  font-family: var(--wmw-font-button);
  font-size: 0.68rem;
  font-weight: 600;
  color: #fff;
  padding: 0.28rem 0.65rem;
  border-radius: 9999px;
  background: rgba(88, 70, 180, 0.9);
}

/* ——— Review block under lobby ——— */

.hub-review {
  padding: 2rem 0 1.5rem;
}

.lobby-page .hub-review .hub-mast {
  margin-bottom: 1.5rem;
  padding: 1.5rem 0 0;
  align-items: center;
  text-align: center;
}

.lobby-page .page-mast {
  margin-bottom: 0;
  padding: 0;
}

/* ——— Player voices — X/Twitter-style feed ——— */

.voices-band {
  padding: 2.5rem 0 3rem;
}

.voices-band .band__inner {
  max-width: var(--wmw-desktop-width);
}

.x-feed {
  max-width: 598px;
  margin: 0 auto;
  border: 1px solid #2f3336;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
}

.x-tweet {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  column-gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #2f3336;
  text-align: left;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  transition: background 0.15s ease;
}

.x-tweet:last-child {
  border-bottom: 0;
}

.x-tweet:hover {
  background: rgba(255, 255, 255, 0.03);
}

.x-tweet__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: #2f3336;
}

.x-tweet__main {
  min-width: 0;
}

.x-tweet__userline {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.25rem;
  margin: 0 0 0.2rem;
  min-width: 0;
  line-height: 1.25;
}

.x-tweet__name {
  flex-shrink: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #e7e9ea;
  white-space: nowrap;
}

.x-tweet__badge {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  display: block;
}

.x-tweet__handle,
.x-tweet__sep,
.x-tweet__time {
  font-size: 0.9375rem;
  font-weight: 400;
  color: #71767b;
  white-space: nowrap;
}

.x-tweet__handle {
  overflow: hidden;
  text-overflow: ellipsis;
}

.x-tweet__more {
  margin-left: auto;
  flex-shrink: 0;
  color: #71767b;
  font-size: 1rem;
  letter-spacing: 0.08em;
  line-height: 1;
  padding-left: 0.5rem;
}

.x-tweet__text {
  margin: 0 0 0.75rem;
  font-size: 0.9375rem;
  line-height: 1.4;
  font-weight: 400;
  color: #e7e9ea;
  text-align: left;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.x-tweet__actions {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  max-width: 425px;
  margin-top: 0.1rem;
  column-gap: 0;
}

.x-tweet__action {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.25rem;
  min-height: 1.25rem;
  color: #71767b;
  font-size: 0.8125rem;
  line-height: 1;
}

.x-tweet__count {
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.x-tweet__ico {
  display: block;
  width: 1.175rem;
  height: 1.175rem;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask: no-repeat center / contain;
  mask: no-repeat center / contain;
}

.x-tweet__action--reply .x-tweet__ico {
  -webkit-mask-image: url("/assets/ui/x/reply.svg");
  mask-image: url("/assets/ui/x/reply.svg");
}
.x-tweet__action--rt .x-tweet__ico {
  -webkit-mask-image: url("/assets/ui/x/rt.svg");
  mask-image: url("/assets/ui/x/rt.svg");
}
.x-tweet__action--like .x-tweet__ico {
  -webkit-mask-image: url("/assets/ui/x/like.svg");
  mask-image: url("/assets/ui/x/like.svg");
}
.x-tweet__action--views .x-tweet__ico {
  -webkit-mask-image: url("/assets/ui/x/views.svg");
  mask-image: url("/assets/ui/x/views.svg");
}
.x-tweet__action--share .x-tweet__ico {
  -webkit-mask-image: url("/assets/ui/x/share.svg");
  mask-image: url("/assets/ui/x/share.svg");
}

.x-tweet__action--reply:hover { color: #1d9bf0; }
.x-tweet__action--rt:hover { color: #00ba7c; }
.x-tweet__action--like:hover { color: #f91880; }
.x-tweet__action--views:hover,
.x-tweet__action--share:hover { color: #1d9bf0; }

.voices-band__note {
  margin-top: 1.5rem;
  max-width: 44rem;
  margin-inline: auto;
  text-align: center;
  color: var(--wmw-text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.voices-band__note p {
  margin: 0 0 0.75rem;
}

.voices-band__note a {
  color: var(--wmw-anchor);
}

@media (max-width: 40rem) {
  .x-feed {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .x-tweet {
    padding: 0.75rem 0.85rem;
  }

  .x-tweet__actions {
    max-width: none;
  }
}

/* ——— Lime wave before footer ——— */

.lobby-wave {
  width: 100%;
  height: 70px;
  margin-top: 2rem;
  background-color: #000;
  background-image: url("/assets/ui/icon-wave.png?v=20260721u");
  background-repeat: repeat-x;
  background-position: center center;
  background-size: auto 70px;
}

.site-footer__official {
  color: #5a6691;
  max-width: 52rem;
  margin: 0 0 1rem;
  line-height: 1.55;
  font-size: 0.8rem;
  text-align: center;
}

.site-footer__inner {
  text-align: center;
}

.site-footer__seals,
.site-footer__nav,
.site-footer__pays {
  justify-content: center;
}

.site-footer__legal {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media (max-width: 47.99rem) {
  .game-rail__all {
    display: none;
  }

  .game-rail__scroller {
    grid-auto-columns: minmax(42vw, 9.5rem);
  }

  .offers-rail__scroller {
    grid-auto-columns: minmax(78vw, 18rem);
  }

  .tour-rail__scroller {
    grid-auto-columns: minmax(72vw, 16rem);
  }
}

/* ——— Feature bands: payments / providers ——— */

.feature-band {
  padding: 0.85rem 0 1.75rem;
}

.feature-band--logos {
  padding-top: 0.25rem;
  padding-bottom: 1.25rem;
}

.logo-rail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.5rem;
  padding: 1.15rem 1.25rem;
  margin-bottom: 0.85rem;
  border-radius: 14px;
  background: #12141b;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.logo-rail--pay img {
  height: 32px;
  width: auto;
  max-width: 7.5rem;
  object-fit: contain;
  opacity: 0.95;
}

.logo-rail--prov {
  gap: 1.25rem 2rem;
  padding: 1.35rem 1.5rem;
  min-height: 5.5rem;
}

.logo-rail--prov img {
  height: 48px;
  width: auto;
  max-width: 11rem;
  object-fit: contain;
  opacity: 0.95;
}

.logo-rail img {
  height: 32px;
  width: auto;
  max-width: 7.5rem;
  object-fit: contain;
  opacity: 0.95;
}

.cta-plaque {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid rgba(209, 251, 48, 0.55);
  aspect-ratio: 1248 / 420;
  width: 100%;
  min-height: 0;
  text-decoration: none;
  color: #fff;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

.cta-plaque:hover {
  border-color: var(--wmw-accent);
  color: #fff;
  transform: translateY(-2px);
}

.cta-plaque__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}

.cta-plaque__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.55) 42%,
    rgba(0, 0, 0, 0.18) 100%
  );
}

.cta-plaque__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.55rem;
  height: 100%;
  min-height: 0;
  justify-content: center;
  padding: 1.35rem 1.4rem 1.45rem;
  max-width: 28rem;
}

.cta-plaque__body--center {
  align-items: center;
  text-align: center;
  max-width: 40rem;
  margin-inline: auto;
  min-height: 0;
  height: 100%;
  justify-content: center;
  padding: 1.5rem 1.5rem;
}

.cta-plaque--verdict .cta-plaque__body {
  align-items: center;
  text-align: center;
  max-width: none;
  width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
  padding-inline: 1.5rem;
}

.cta-plaque--verdict .cta-plaque__text {
  max-width: 36rem;
}

.cta-plaque--verdict .cta-plaque__veil {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.7) 45%,
    rgba(0, 0, 0, 0.82) 100%
  );
}

.cta-plaque__kicker {
  font-family: var(--wmw-font-button);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wmw-accent);
}

.cta-plaque__title {
  font-family: var(--wmw-font-title);
  font-size: clamp(1.15rem, 2.6vw, 1.65rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.cta-plaque__text {
  font-size: 0.92rem;
  line-height: 1.45;
  color: #d5d8e0;
}

.cta-plaque__btn {
  margin-top: 0.35rem;
  pointer-events: none;
}

.cta-plaque__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 0.45rem;
}

.cta-plaque__actions .btn {
  pointer-events: none;
}

.hub-review__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hub-review__prose {
  text-align: center;
  max-width: 42rem;
  margin-inline: auto;
}

.hub-review__prose p {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 47.99rem) {
  .cta-plaque {
    aspect-ratio: 4 / 5;
  }

  .cta-plaque__body {
    max-width: none;
    min-height: 0;
    justify-content: flex-end;
    padding-bottom: 1.25rem;
  }

  .cta-plaque__bg {
    object-position: center top;
  }

  .logo-rail--prov img {
    height: 42px;
    max-width: 9rem;
  }

  .cta-plaque__veil {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.82) 55%,
      rgba(0, 0, 0, 0.92) 100%
    );
  }

  .logo-rail {
    gap: 0.65rem 1rem;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .logo-rail::-webkit-scrollbar {
    display: none;
  }

  .logo-rail img {
    flex: 0 0 auto;
  }
}

/* ——— Content sections ——— */

.site-main {
  flex: 1;
}

.content-flow {
  max-width: var(--wmw-desktop-width);
  margin: 0 auto;
  padding: 0 1.25rem 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-flow .prose-block {
  max-width: 44rem;
  width: 100%;
  margin-bottom: 2.5rem;
  text-align: center;
}

.prose-block h2,
.prose-block h3 {
  text-align: center;
}

.prose-block ul,
.prose-block ol {
  text-align: left;
  display: inline-block;
  margin-inline: auto;
}

.prose-block h2 {
  font-family: var(--wmw-font-title);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 0.85rem;
}

.prose-block h3 {
  font-family: var(--wmw-font-title);
  font-size: 1.05rem;
  font-weight: 500;
  color: #fff;
  margin: 1.5rem 0 0.55rem;
}

.prose-block p,
.prose-block li {
  color: #c2bdd4;
}

.prose-block strong {
  color: #fff;
}

.prose-block a {
  border-bottom: 1px solid rgba(209, 251, 48, 0.35);
}

.prose-block table {
  display: block;
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
  margin: 1.25rem 0;
  font-size: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.prose-block th,
.prose-block td {
  padding: 0.7rem 0.85rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.prose-block th {
  background: #1a2234;
  color: #fff;
  font-family: var(--wmw-font-button);
}

.prose-block td {
  background: rgba(16, 22, 36, 0.7);
}

.prose-block img {
  margin: 1.25rem 0;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 100%;
  height: auto;
}

.prose-block blockquote {
  margin: 1.25rem 0;
  padding-left: 1rem;
  border-left: 2px solid var(--wmw-accent);
  color: #c2bdd4;
}

.prose-block hr {
  display: none;
}

.hub-review__prose.prose-block p,
.hub-review__prose.prose-block li {
  color: #c2bdd4;
}

.hub-review__prose.prose-block a {
  border-bottom: 1px solid rgba(209, 251, 48, 0.35);
}

.hub-review__prose.prose-block strong {
  color: #fff;
}

/* ——— FAQ ——— */

.faq-band {
  padding: 0.5rem 0 2.5rem;
}

.faq-band .band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-band .band__head {
  width: 100%;
  max-width: 44rem;
  justify-content: space-between;
}

.faq-acc {
  display: grid;
  gap: 0.55rem;
  max-width: 44rem;
  width: 100%;
  margin-inline: auto;
}

.faq-acc details {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: #121826;
  padding: 0.85rem 1rem;
}

.faq-acc summary {
  cursor: pointer;
  font-family: var(--wmw-font-title);
  font-size: 0.98rem;
  font-weight: 500;
  color: #fff;
  list-style: none;
}

.faq-acc summary::-webkit-details-marker {
  display: none;
}

.faq-acc summary::after {
  content: "+";
  float: right;
  color: var(--wmw-accent);
  font-weight: 700;
}

.faq-acc details[open] summary::after {
  content: "–";
}

.faq-acc details p,
.faq-acc details li {
  margin: 0.75rem 0 0.15rem;
  color: #c2bdd4;
  font-size: 0.95rem;
}

.faq-acc details ul,
.faq-acc details ol {
  margin: 0.65rem 0 0.15rem;
  padding-left: 1.2rem;
  text-align: left;
}

.faq-acc details strong {
  color: #fff;
}

.faq-acc details a {
  color: var(--wmw-anchor);
  border-bottom: 1px solid rgba(255, 229, 170, 0.35);
}

.faq-acc details blockquote {
  margin: 0.75rem 0 0.15rem;
  padding-left: 0.85rem;
  border-left: 2px solid var(--wmw-accent);
  color: #c2bdd4;
}

/* ——— Verdict ——— */

.verdict-band {
  padding: 0.5rem 0 3rem;
}

.verdict-band__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.15rem;
  margin: 1rem 0 0;
  font-family: var(--wmw-font-button);
  font-size: 0.85rem;
}

.verdict-band__links a {
  color: #9aa0a8;
}

.verdict-band__links a:hover {
  color: var(--wmw-accent);
}

/* ——— Generic pages (non-hub) ——— */

.hero {
  padding: 3rem 1.25rem 2rem;
  text-align: left;
}

.hero__inner {
  max-width: var(--wmw-desktop-width);
  margin: 0 auto;
}

.hero__brand {
  font-family: var(--wmw-font-title);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 0.75rem;
}

.hero__brand span {
  color: var(--wmw-accent);
}

.hero__offer {
  font-family: var(--wmw-font-title);
  color: var(--wmw-accent);
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  margin: 0 0 0.75rem;
}

.hero__title {
  font-family: var(--wmw-font-title);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem);
  font-weight: 500;
  margin: 0 0 0.85rem;
  max-width: 40rem;
}

.hero__lead {
  color: #9aa0a8;
  max-width: 36rem;
  margin: 0 0 1.25rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__stage {
  display: none;
}

.content-wrap {
  max-width: var(--wmw-desktop-width);
  margin: 0 auto;
  padding: 1rem 1.25rem 4rem;
}

.prose {
  max-width: 42rem;
}

.prose > * + * {
  margin-top: 1.1em;
}

.prose h2 {
  font-family: var(--wmw-font-title);
  font-size: 1.35rem;
  color: #fff;
  margin: 2.5rem 0 0.75rem;
}

.prose h3 {
  font-family: var(--wmw-font-title);
  font-size: 1.05rem;
  color: #fff;
  margin: 1.75rem 0 0.5rem;
}

.prose p,
.prose li {
  color: #c2bdd4;
}

.prose strong {
  color: #fff;
}

.prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.prose th,
.prose td {
  padding: 0.65rem 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.prose th {
  background: #1a2234;
}

.prose img {
  margin: 1.25rem 0;
  border-radius: 8px;
}

.prose blockquote {
  border-left: 2px solid var(--wmw-accent);
  padding-left: 1rem;
  margin: 1.25rem 0;
}

.prose hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

/* ——— Footer ——— */

.site-footer {
  background: #05070c;
  border-top: none;
  padding: 2.75rem 1.25rem 3.25rem;
  font-size: 0.875rem;
  margin-top: auto;
}

.site-footer__inner {
  max-width: var(--wmw-desktop-width);
  margin: 0 auto;
  text-align: center;
}

.site-footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.site-footer__brand img {
  height: 26px;
  width: auto;
  margin-inline: auto;
}

.site-footer__tag {
  margin: 0;
  font-family: var(--wmw-font-button);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #6b7285;
}

.site-footer__seals {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.95rem 1.4rem;
  margin-bottom: 1.45rem;
}

.site-footer__seals img {
  height: 40px;
  width: auto;
  opacity: 0.95;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem 1.15rem;
  margin-bottom: 1.5rem;
}

.site-footer__nav a {
  color: #aeb3bf;
  font-family: var(--wmw-font-button);
  font-size: 0.82rem;
}

.site-footer__nav a:hover {
  color: var(--wmw-accent);
}

.site-footer__logos {
  margin-bottom: 1.15rem;
}

.site-footer__logos-label {
  margin: 0 0 0.55rem;
  font-family: var(--wmw-font-button);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7285;
}

.site-footer__pays,
.site-footer__providers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1rem;
  align-items: center;
  opacity: 0.9;
}

.site-footer__pays img {
  height: 26px;
  width: auto;
  max-width: 6rem;
  object-fit: contain;
}

.site-footer__providers img {
  height: 34px;
  width: auto;
  max-width: 8.5rem;
  object-fit: contain;
}

.site-footer__official {
  color: #5a6691;
  max-width: 52rem;
  margin: 1.35rem auto 0.85rem;
  line-height: 1.55;
  font-size: 0.78rem;
  text-align: center;
}

.site-footer__legal {
  color: rgba(194, 189, 212, 0.58);
  max-width: 44rem;
  margin: 0 auto;
  line-height: 1.55;
  text-align: center;
  font-size: 0.8rem;
}

.site-footer__badge {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.3rem 0.55rem;
  border: 1px solid rgba(209, 251, 48, 0.45);
  border-radius: 6px;
  color: var(--wmw-accent);
  font-family: var(--wmw-font-title);
  font-size: 0.7rem;
  font-weight: 600;
}

@media (max-width: 47.99rem) {
  .site-footer__pays,
  .site-footer__providers {
    gap: 0.55rem 0.75rem;
  }

  .site-footer__nav {
    gap: 0.45rem 0.85rem;
  }
}
