:root {
  --mb-color-bg: #11213f;
  --mb-color-panel: #16274e;
  --mb-color-card: #20386d;
  --mb-color-control: #2e4d95;
  --mb-color-cta-primary: #fffc63;
  --mb-color-accent-olive: #888e58;
  --mb-color-promo: #ff0002;
  --mb-color-text: #ffffff;
  --mb-color-text-muted: #b9beca;
  --mb-color-border: #283f74;
  --mb-color-on-yellow: #000000;
  --portal-accent: #00e0ff;
  --portal-line: rgba(185, 190, 202, 0.35);
  --portal-shadow: 0 16px 34px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--mb-color-bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100dvh;
  color: var(--mb-color-text);
  font-family: "Roboto Condensed", "Segoe UI", "Noto Sans", Arial, sans-serif;
  background:
    linear-gradient(180deg, var(--mb-color-panel) 0%, var(--mb-color-bg) 82%),
    var(--mb-color-bg);
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.page-shell {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.portal-main {
  display: grid;
  place-items: center;
  padding: 28px 14px;
}

.portal-card {
  width: min(820px, 94vw);
  min-height: 640px;
  background: linear-gradient(
    180deg,
    rgba(32, 56, 109, 0.82),
    rgba(22, 39, 78, 0.74)
  );
  border: 1px solid var(--portal-line);
  border-radius: 8px;
  padding: 18px;
  box-shadow: var(--portal-shadow);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}

.portal-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 0deg,
    rgba(255, 252, 99, 0),
    rgba(255, 252, 99, 0.22),
    rgba(255, 0, 2, 0.24),
    rgba(0, 224, 255, 0.18),
    rgba(255, 252, 99, 0)
  );
  filter: blur(24px) saturate(1.1);
  z-index: -2;
  animation: portalSpin 9s linear infinite;
}

.portal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(17, 33, 63, 0.54);
  z-index: -1;
}

@keyframes portalSpin {
  to {
    transform: rotate(360deg);
  }
}

.portal-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.portal-brand-text {
  color: var(--mb-color-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
}

.portal-lang {
  display: inline-flex;
  gap: 4px;
  border: 1px solid var(--portal-line);
  background: rgba(17, 33, 63, 0.74);
  border-radius: 8px;
  padding: 4px;
}

.portal-lang button {
  min-height: 32px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--mb-color-text-muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  padding: 0 10px;
}

.portal-lang button.active {
  background: var(--mb-color-cta-primary);
  color: var(--mb-color-on-yellow);
}

.machine {
  margin-top: 16px;
  background: rgba(17, 33, 63, 0.72);
  border: 1px solid rgba(185, 190, 202, 0.22);
  border-radius: 8px;
  padding: 14px 14px 88px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  position: relative;
}

.toolbar {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.spin-btn {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  background: var(--mb-color-cta-primary);
  color: var(--mb-color-on-yellow);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 0 22px;
}

.spin-btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.reels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin: 8px 0 12px;
}

.reel {
  height: 90px;
  border-radius: 8px;
  border: 1px solid rgba(185, 190, 202, 0.22);
  background: rgba(255, 255, 255, 0.05);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.reel-link {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: inherit;
  text-decoration: none;
}

.reel-link.disabled {
  pointer-events: none;
}

.reel-link.active:hover,
.reel-link.active:focus-visible {
  background: rgba(255, 252, 99, 0.1);
  outline: none;
}

.window {
  font-size: 36px;
  font-weight: 900;
}

.status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.badge,
.portal-link {
  border: 1px solid rgba(185, 190, 202, 0.24);
  background: rgba(255, 255, 255, 0.05);
  color: inherit;
  text-decoration: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  padding: 6px 10px;
}

.badge.win {
  border-color: rgba(255, 252, 99, 0.88);
  background: rgba(255, 252, 99, 0.1);
  color: var(--mb-color-cta-primary);
}

.badge.disabled {
  pointer-events: none;
}

.msg {
  margin: 0;
  color: var(--mb-color-text-muted);
  font-size: 15px;
}

.reveal {
  display: none;
  margin-top: 14px;
  min-height: 0;
  overflow: hidden;
}

.portal-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.portal-link {
  min-height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  padding: 0 14px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.26s ease,
    transform 0.26s ease,
    border-color 0.2s ease;
}

.reveal.show .portal-link {
  opacity: 1;
  transform: translateY(0);
}

.portal-link:hover,
.portal-link:focus-visible {
  border-color: var(--mb-color-cta-primary);
  outline: none;
}

.portal-link.primary {
  border-color: rgba(255, 252, 99, 0.9);
  color: var(--mb-color-cta-primary);
}

.mini-banner {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 16px;
  display: block;
  height: 76px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(185, 190, 202, 0.3);
}

.mini-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portal-legal {
  margin: 12px 0 0;
  text-align: center;
  color: var(--mb-color-text-muted);
  font-size: 14px;
}

.glow {
  animation: glow 840ms ease-in-out 2;
}

@keyframes glow {
  50% {
    box-shadow: 0 0 34px rgba(255, 252, 99, 0.2);
  }
}

.wc-main {
  background: #0d1b38;
  overflow: hidden;
}

.wc-page-head {
  padding: 26px 18px 22px;
  background: #11213f;
  text-align: center;
}

.wc-page-head h1 {
  margin: 0;
  color: var(--mb-color-text);
  font-size: clamp(28px, 5vw, 50px);
  line-height: 1.04;
  text-transform: uppercase;
}

.wc-marquee {
  display: block;
  overflow: hidden;
  border-block: 1px solid rgba(255, 252, 99, 0.72);
  background: var(--mb-color-cta-primary);
  color: var(--mb-color-on-yellow);
  text-decoration: none;
  white-space: nowrap;
}

.wc-marquee:focus-visible {
  outline: 3px solid var(--mb-color-text);
  outline-offset: -3px;
}

.wc-marquee__track {
  display: flex;
  width: max-content;
  animation: wcTicker 28s linear infinite;
  will-change: transform;
}

.wc-marquee__group {
  display: flex;
  flex: none;
  min-width: 100vw;
  justify-content: space-around;
}

.wc-marquee span {
  padding: 9px 14px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@keyframes wcTicker {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .wc-marquee__track {
    animation-play-state: paused;
  }
}

.wc-section {
  position: relative;
}

.wc-section__inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.wc-hero {
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 32%, rgba(0, 224, 255, 0.2), transparent 24%),
    radial-gradient(circle at 24% 72%, rgba(255, 0, 2, 0.24), transparent 26%),
    linear-gradient(135deg, #20386d 0%, #11213f 58%, #16274e 100%);
}

.wc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.04),
    transparent
  );
}

.wc-spells,
.wc-spells i {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.wc-spells i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mb-color-cta-primary);
  box-shadow:
    0 0 14px var(--mb-color-cta-primary),
    0 0 32px rgba(0, 224, 255, 0.74);
  animation: wcSpell 8s linear infinite;
}

.wc-spells i:nth-child(1) {
  left: 8%;
  top: 84%;
  animation-delay: -1s;
}
.wc-spells i:nth-child(2) {
  left: 25%;
  top: 62%;
  animation-delay: -5s;
  animation-duration: 11s;
}
.wc-spells i:nth-child(3) {
  left: 48%;
  top: 90%;
  animation-delay: -3s;
  animation-duration: 9s;
}
.wc-spells i:nth-child(4) {
  left: 67%;
  top: 80%;
  animation-delay: -7s;
  animation-duration: 12s;
}
.wc-spells i:nth-child(5) {
  left: 84%;
  top: 64%;
  animation-delay: -2s;
  animation-duration: 10s;
}
.wc-spells i:nth-child(6) {
  left: 92%;
  top: 92%;
  animation-delay: -4s;
  animation-duration: 7s;
}

@keyframes wcSpell {
  0% {
    transform: translate3d(0, 40px, 0) scale(0.3);
    opacity: 0;
  }
  20% {
    opacity: 0.9;
  }
  70% {
    opacity: 0.7;
  }
  100% {
    transform: translate3d(80px, -380px, 0) scale(1.4);
    opacity: 0;
  }
}

.wc-hero__inner {
  min-height: 570px;
  display: grid;
  grid-template-columns: minmax(270px, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 44px;
  padding-block: 58px;
}

.wc-hero__logo-link {
  display: block;
  justify-self: center;
}

.wc-hero__logo-link:focus-visible {
  border-radius: 8px;
  outline: 3px solid var(--mb-color-cta-primary);
  outline-offset: 5px;
}

.wc-hero__logo {
  display: block;
  width: min(100%, 520px);
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
}

.wc-kicker {
  margin: 0 0 10px;
  color: var(--mb-color-cta-primary);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.wc-hero h2,
.wc-discover h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  text-transform: uppercase;
}

.wc-hero__copy > p:last-child,
.wc-belgium__intro,
.wc-market-card p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.58;
}

.wc-belgium {
  background:
    radial-gradient(circle at 50% 0, rgba(255, 252, 99, 0.13), transparent 30%),
    #11213f;
  padding: 76px 0;
}

.wc-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wc-believe-logo {
  display: block;
  width: min(100%, 450px);
  height: auto;
  margin: 0 auto 16px;
  border-radius: 8px;
}

.wc-belgium__intro {
  max-width: 780px;
  margin: 30px auto 26px;
  text-align: center;
}

.wc-match-grid,
.wc-market-grid,
.wc-discover__grid {
  display: grid;
  gap: 14px;
}

.wc-match-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.wc-match-card,
.wc-market-card {
  border: 1px solid rgba(185, 190, 202, 0.24);
  border-radius: 8px;
  background: rgba(32, 56, 109, 0.74);
}

.wc-match-card {
  display: grid;
  gap: 10px;
  min-height: 128px;
  align-content: center;
  padding: 20px;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.wc-match-card:hover,
.wc-match-card:focus-visible,
.wc-image-card:hover,
.wc-image-card:focus-visible {
  border-color: var(--mb-color-cta-primary);
  outline: none;
  transform: translateY(-4px);
}

.wc-match-card small {
  color: var(--mb-color-cta-primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wc-match-card strong {
  font-size: 23px;
  text-transform: uppercase;
}

.wc-match-card strong span {
  color: var(--mb-color-text-muted);
  font-size: 14px;
}

.wc-market-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 14px;
}

.wc-market-card {
  padding: 24px;
}

.wc-market-card h3 {
  margin: 0;
  color: var(--mb-color-cta-primary);
  font-size: 25px;
  text-transform: uppercase;
}

.wc-market-card p {
  min-height: 58px;
  margin: 12px 0 18px;
  font-size: 16px;
}

.wc-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--mb-color-cta-primary);
  color: var(--mb-color-on-yellow);
  font-weight: 900;
  padding: 0 18px;
  text-decoration: none;
  text-transform: uppercase;
}

.wc-discover {
  padding: 70px 0 82px;
  background: #0d1b38;
}

.wc-discover h2 {
  margin-bottom: 26px;
  text-align: center;
}

.wc-discover__grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.wc-image-card {
  display: block;
  overflow: hidden;
  border: 2px solid rgba(185, 190, 202, 0.24);
  border-radius: 8px;
  background: var(--mb-color-card);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease;
}

.wc-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.wc-seo {
  padding: 0 0 76px;
  background: #0d1b38;
}

.wc-seo__card {
  max-width: 920px;
  margin: 0 auto;
  padding: 30px;
  border: 1px solid rgba(185, 190, 202, 0.22);
  border-radius: 8px;
  background: rgba(32, 56, 109, 0.44);
}

.wc-seo h2 {
  margin: 0;
  color: var(--mb-color-text);
  font-size: clamp(27px, 4vw, 40px);
  line-height: 1.08;
  text-transform: uppercase;
}

.wc-seo p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.68;
}

.wc-seo__more {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.45s ease,
    opacity 0.25s ease;
}

.wc-seo__more.is-open {
  max-height: 1200px;
  opacity: 1;
}

.wc-seo__more h3 {
  margin: 24px 0 0;
  color: var(--mb-color-cta-primary);
  font-size: 20px;
  line-height: 1.2;
}

.wc-seo__more p {
  margin-top: 8px;
  font-size: 16px;
}

.wc-seo__toggle {
  min-height: 42px;
  margin-top: 22px;
  border: 1px solid var(--mb-color-cta-primary);
  border-radius: 6px;
  background: transparent;
  color: var(--mb-color-cta-primary);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  padding: 0 18px;
  text-transform: uppercase;
}

.wc-seo__toggle:hover,
.wc-seo__toggle:focus-visible {
  background: var(--mb-color-cta-primary);
  color: var(--mb-color-on-yellow);
  outline: none;
}

.mb_header,
.mb_header * {
  box-sizing: border-box;
}

.mb_header {
  position: sticky;
  top: 0;
  z-index: 80;
  color: var(--mb-color-text);
  font-family: "Roboto Condensed", "Segoe UI", "Noto Sans", Arial, sans-serif;
}

.mb_header header {
  background: linear-gradient(
    to bottom,
    var(--mb-color-bg) 0,
    var(--mb-color-bg) 42px,
    var(--mb-color-panel) 42px,
    var(--mb-color-panel) 100%
  );
}

.mb_header__top {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 18px;
}

.mb_header__left,
.mb_header__actions,
.mb_header__nav,
.mb_header__lang-btn,
.mb_header__nav-item,
.mb_header__cta {
  display: flex;
  align-items: center;
}

.mb_header__left {
  min-width: 0;
  gap: 14px;
}

.mb_header__burger {
  display: none;
  width: 30px;
  height: 30px;
  border: 0;
  background: transparent;
  color: var(--mb-color-text);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  padding: 0;
}

.mb_header__brand {
  display: inline-flex;
  color: inherit;
  text-decoration: none;
}

.mb_header__logo {
  display: block;
  width: 270px;
  height: 38px;
  object-fit: cover;
  object-position: center;
}

.mb_header__actions {
  margin-left: auto;
  gap: 12px;
}

.mb_header__mobile-lang {
  display: none;
  position: relative;
}

.mb_header__cta {
  height: 31px;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 500;
  padding: 0 16px;
  text-decoration: none;
  white-space: nowrap;
}

.mb_header__cta--primary {
  background: var(--mb-color-cta-primary);
  color: var(--mb-color-on-yellow);
}

.mb_header__cta--outline {
  border-color: var(--mb-color-cta-primary);
  color: var(--mb-color-cta-primary);
}

.mb_header__bar {
  min-height: 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--mb-color-border);
  padding: 0 18px;
}

.mb_header__datetime {
  color: var(--mb-color-text-muted);
  font-size: 14px;
  white-space: nowrap;
}

.mb_header__nav {
  justify-content: center;
  gap: 14px;
}

.mb_header__nav-item {
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  letter-spacing: 0.02em;
  padding: 8px 2px;
  text-decoration: none;
  text-transform: uppercase;
}

.mb_header__nav-item.is-highlighted {
  color: var(--mb-color-cta-primary);
}

.mb_header__nav-icon {
  font-size: 17px;
  line-height: 1;
}

.mb_header__lang-wrap {
  position: relative;
  justify-self: end;
}

.mb_header__lang-btn {
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--mb-color-text-muted);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 0;
  text-transform: uppercase;
}

.mb_header__lang-btn svg {
  width: 16px;
  height: 16px;
}

.mb_header__lang-menu {
  position: absolute;
  right: 0;
  top: 34px;
  z-index: 20;
  display: none;
  min-width: 160px;
  overflow: hidden;
  border: 1px solid var(--mb-color-border);
  border-radius: 8px;
  background: var(--mb-color-panel);
}

.mb_header__lang-menu.is-open {
  display: block;
}

.mb_header__lang-menu button {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--mb-color-text);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  padding: 10px 12px;
  text-align: left;
}

.mb_header__lang-menu button:hover,
.mb_header__lang-menu button.is-active {
  background: var(--mb-color-control);
}

.mb_footer,
.mb_footer * {
  box-sizing: border-box;
}

.mb_footer {
  --mb_footer-bg: var(--mb-color-bg);
  --mb_footer-panel: var(--mb-color-panel);
  --mb_footer-card: var(--mb-color-card);
  --mb_footer-control: var(--mb-color-control);
  --mb_footer-border: var(--mb-color-border);
  --mb_footer-text: var(--mb-color-text);
  --mb_footer-muted: var(--mb-color-text-muted);
  --mb_footer-yellow: var(--mb-color-cta-primary);
  --mb_footer-red: var(--mb-color-promo);
  --mb_footer-black: var(--mb-color-on-yellow);
  color: var(--mb_footer-text);
  background: linear-gradient(
    180deg,
    var(--mb_footer-panel) 0%,
    var(--mb_footer-bg) 18%,
    var(--mb_footer-bg) 100%
  );
  font-family: "Roboto Condensed", "Segoe UI", "Noto Sans", Arial, sans-serif;
}

.mb_footer a {
  color: inherit;
}

.mb_footer__wrap {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 18px 24px 48px;
}

.mb_footer__top {
  display: grid;
  grid-template-columns: 36% 39% 25%;
  grid-template-areas: "downloads payments lang";
  align-items: center;
  gap: 24px;
  padding-bottom: 18px;
}

.mb_footer__lang-wrap {
  position: relative;
  grid-area: lang;
  justify-self: end;
  min-width: 138px;
}

.mb_footer__lang-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  background: transparent;
  color: var(--mb_footer-text);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  padding: 0 0 10px;
}

.mb_footer__lang-btn svg,
.mb_footer__toggle svg,
.mb_footer__nav-button svg {
  width: 14px;
  height: 14px;
  flex: none;
}

.mb_footer__lang-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 4px);
  z-index: 20;
  display: none;
  min-width: 172px;
  padding: 8px;
  border: 1px solid var(--mb_footer-border);
  border-radius: 8px;
  background: color-mix(
    in srgb,
    var(--mb_footer-panel) 96%,
    var(--mb_footer-bg)
  );
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.34);
}

.mb_footer__lang-menu.is-open {
  display: grid;
  gap: 4px;
}

.mb_footer__lang-option {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--mb_footer-muted);
  font-size: 14px;
  text-decoration: none;
}

.mb_footer__lang-option:hover,
.mb_footer__lang-option.is-active {
  background: color-mix(in srgb, var(--mb_footer-control) 40%, transparent);
  color: var(--mb_footer-text);
}

.mb_footer__downloads {
  grid-area: downloads;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.mb_footer__store {
  min-width: 178px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--mb_footer-card) 58%, transparent);
  text-decoration: none;
}

.mb_footer__store-icon,
.mb_footer__store-icon svg {
  width: 24px;
  height: 24px;
  display: inline-flex;
  flex: none;
}

.mb_footer__store-copy {
  display: grid;
  gap: 2px;
}

.mb_footer__store-copy small {
  color: var(--mb_footer-muted);
  font-size: 10px;
  line-height: 1.2;
}

.mb_footer__store-copy strong {
  color: var(--mb_footer-text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.1;
}

.mb_footer__trust {
  grid-area: payments;
  display: flex;
  align-items: center;
  gap: 12px;
}

.mb_footer__payments {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.mb_footer__payment {
  width: 84px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 18px;
  background: color-mix(in srgb, var(--mb_footer-card) 58%, transparent);
}

.mb_footer__payment-logo {
  display: block;
  max-width: 100%;
  height: auto;
  filter: grayscale(1) brightness(0) invert(73%);
  opacity: 0.9;
}

.mb_footer__payment-logo--visa {
  width: 50px;
}

.mb_footer__payment-logo--mastercard {
  width: 58px;
}

.mb_footer__payment-logo--bancontact {
  width: 72px;
}

.mb_footer__payment-logo--apple-pay {
  width: 54px;
}

.mb_footer__payment-logo--google-pay {
  width: 64px;
}

.mb_footer__age {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.24);
  color: var(--mb_footer-muted);
  font-size: 15px;
  font-weight: 500;
}

.mb_footer__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 72px 0 0;
}

.mb_footer__brand {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 65fr) minmax(320px, 35fr);
  column-gap: 44px;
  align-items: start;
}

.mb_footer__headline {
  grid-column: 1;
  grid-row: 1;
  max-width: 780px;
  margin: 0;
  font-size: 38px;
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: 0;
}

.mb_footer__brand-copy {
  grid-column: 1;
  grid-row: 2;
  max-width: 760px;
  margin-top: 16px;
}

.mb_footer__brand-copy p {
  margin: 0 0 12px;
  color: var(--mb_footer-muted);
  font-size: 16px;
  line-height: 1.65;
}

.mb_footer__eyebrow {
  grid-column: 1;
  grid-row: 3;
  margin: 18px 0 0;
  color: var(--mb_footer-muted);
  font-size: 15px;
  font-style: italic;
  font-weight: 500;
}

.mb_footer__chip-group {
  grid-column: 2;
}

.mb_footer__chip-group + .mb_footer__chip-group {
  margin-top: 22px;
}

.mb_footer__chip-group-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 11px;
  font-size: 14px;
  font-weight: 500;
}

.mb_footer__pin,
.mb_footer__pin svg {
  width: 12px;
  height: 12px;
  display: inline-flex;
  color: var(--mb_footer-red);
}

.mb_footer__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.mb_footer__chip {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 15px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--mb_footer-card) 58%, transparent);
  color: var(--mb_footer-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.15;
  text-decoration: none;
}

.mb_footer__chip:hover {
  background: var(--mb_footer-control);
  color: var(--mb_footer-text);
}

.mb_footer__chip-image-row {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.mb_footer__chip-image {
  width: auto;
  max-width: min(132px, 45%);
  max-height: 30px;
  border-radius: 2px;
}

.mb_footer__utility {
  grid-column: 1;
  grid-row: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  padding-top: 8px;
}

.mb_footer__utility-pill,
.mb_footer__utility-link {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--mb_footer-card) 58%, transparent);
  color: var(--mb_footer-muted);
  font-size: 13px;
  font-weight: 500;
}

.mb_footer__utility-link {
  gap: 7px;
  text-decoration: none;
}

.mb_footer__utility-link svg {
  width: 13px;
  height: 13px;
  color: var(--mb_footer-yellow);
}

.mb_footer__toggle {
  grid-column: 1;
  grid-row: 5;
  justify-self: start;
  min-width: 122px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: var(--mb_footer-control);
  color: var(--mb_footer-text);
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
}

.mb_footer__toggle[aria-expanded="true"] svg,
.mb_footer__nav-button[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.mb_footer__longcopy {
  grid-column: 1 / -1;
  grid-row: 6;
  display: none;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--mb_footer-border);
}

.mb_footer__longcopy.is-open {
  display: block;
}

.mb_footer__longcopy-section + .mb_footer__longcopy-section {
  margin-top: 20px;
}

.mb_footer__longcopy-section h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 500;
}

.mb_footer__longcopy-section p,
.mb_footer__longcopy-section li {
  color: var(--mb_footer-muted);
  font-size: 15px;
  line-height: 1.7;
}

.mb_footer__longcopy-section p {
  margin: 0 0 10px;
}

.mb_footer__longcopy-section ul {
  margin: 0;
  padding-left: 18px;
}

.mb_footer__nav {
  grid-column: 1 / -1;
  grid-row: 7;
  display: grid;
  grid-template-columns: 1.35fr 1.35fr 0.92fr 1fr 0.58fr;
  gap: 32px;
  margin-top: 56px;
}

.mb_footer__nav-button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--mb_footer-text);
  cursor: default;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}

.mb_footer__nav-button svg {
  display: none;
}

.mb_footer__nav-panel {
  display: block;
  padding-top: 12px;
}

.mb_footer__nav-panel a {
  display: block;
  color: var(--mb_footer-muted);
  font-size: 14px;
  line-height: 1.35;
  text-decoration: none;
}

.mb_footer__nav-panel a + a {
  margin-top: 9px;
}

.mb_footer__nav-panel a:hover {
  color: var(--mb_footer-text);
}

.mb_footer__bottom {
  padding-top: 28px;
}

.mb_footer__support {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}

.mb_footer__support-link {
  width: 118px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--mb_footer-card) 58%, transparent);
  text-decoration: none;
}

.mb_footer__support-logo {
  display: block;
  width: 100%;
  max-height: 28px;
  object-fit: contain;
}

.mb_footer__legal {
  max-width: 900px;
  margin: 0 auto;
}

.mb_footer__legal-section + .mb_footer__legal-section {
  margin-top: 18px;
}

.mb_footer__legal p {
  margin: 0 0 8px;
  color: var(--mb_footer-muted);
  font-size: 11px;
  line-height: 1.55;
  text-align: center;
}

.mb_footer__legal-copy {
  margin-top: 14px;
  color: var(--mb_footer-muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.mb_header a:focus-visible,
.mb_header button:focus-visible,
.mb_footer a:focus-visible,
.mb_footer button:focus-visible {
  outline: 2px solid var(--mb-color-cta-primary);
  outline-offset: 3px;
}

@media (max-width: 1120px) {
  .mb_header__nav {
    gap: 10px;
  }

  .mb_header__nav-item {
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .portal-main {
    padding: 18px 8px;
  }

  .portal-card {
    width: min(960px, 98vw);
    min-height: 560px;
    padding: 12px;
  }

  .portal-brand-text {
    font-size: 18px;
  }

  .machine {
    padding: 10px 10px 70px;
  }

  .reel {
    height: 62px;
  }

  .window {
    font-size: 26px;
  }

  .portal-link-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mini-banner {
    left: 10px;
    right: 10px;
    height: clamp(32px, 8vw, 54px);
  }

  .wc-page-head {
    padding: 20px 14px 18px;
  }

  .wc-page-head h1 {
    font-size: clamp(19px, 5.7vw, 24px) !important;
  }

  .wc-marquee span {
    padding: 8px 10px;
    font-size: 13px;
  }

  .wc-section__inner {
    width: min(100% - 24px, 640px);
  }

  .wc-hero__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-block: 34px 42px;
  }

  .wc-hero__logo {
    width: min(88vw, 430px);
  }

  .wc-hero__copy {
    text-align: center;
  }

  .wc-hero h2 {
    font-size: clamp(23px, 6.8vw, 30px);
  }

  .wc-hero__copy > p:last-child,
  .wc-belgium__intro {
    font-size: 16px;
  }

  .wc-belgium {
    padding: 52px 0;
  }

  .wc-believe-logo {
    margin: 0 auto 14px;
  }

  .wc-belgium__intro {
    margin: 22px auto 20px;
  }

  .wc-match-grid,
  .wc-market-grid,
  .wc-discover__grid {
    grid-template-columns: 1fr;
  }

  .wc-match-card {
    min-height: 98px;
    padding: 16px;
  }

  .wc-match-card strong {
    font-size: 19px;
  }

  .wc-market-card {
    padding: 18px;
  }

  .wc-market-card h3 {
    font-size: 21px;
  }

  .wc-market-card p {
    min-height: 0;
  }

  .wc-discover {
    padding: 48px 0 56px;
  }

  .wc-discover h2 {
    font-size: clamp(21px, 5.9vw, 27px);
  }

  .wc-image-card img {
    min-height: 0;
  }

  .wc-seo {
    padding: 0 0 48px;
  }

  .wc-seo__card {
    padding: 20px 16px;
  }

  .wc-seo h2 {
    font-size: clamp(20px, 5.8vw, 26px);
  }

  .wc-seo p {
    font-size: 15px;
    line-height: 1.6;
  }

  .wc-seo__more h3 {
    margin-top: 20px;
    font-size: 18px;
  }

  .wc-seo__toggle {
    width: 100%;
  }

  .mb_header header {
    position: relative;
    background: var(--mb-color-bg);
  }

  .mb_header__top {
    height: 44px;
    gap: 8px;
    border-bottom: 1px solid var(--mb-color-border);
    padding: 0 8px;
  }

  .mb_header__left {
    gap: 8px;
  }

  .mb_header__burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mb_header__logo {
    width: 184px;
    height: 34px;
  }

  .mb_header__mobile-lang {
    display: block;
  }

  .mb_header__actions {
    gap: 6px;
  }

  .mb_header__cta {
    height: 30px;
    padding: 0 10px;
    font-size: 11px;
  }

  .mb_header__bar {
    position: absolute;
    left: 0;
    right: 0;
    top: 44px;
    display: none;
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 10px;
    border-top: 0;
    border-bottom: 1px solid var(--mb-color-border);
    background: var(--mb-color-card);
    padding: 12px;
    box-shadow: 0 14px 24px rgba(17, 33, 63, 0.7);
  }

  .mb_header.is-open .mb_header__bar {
    display: grid;
  }

  .mb_header__datetime {
    font-size: 12px;
  }

  .mb_header__nav {
    display: grid;
    grid-template-columns: 1fr;
    justify-content: stretch;
    gap: 2px;
  }

  .mb_header__nav-item {
    border-radius: 8px;
    background: var(--mb-color-control);
    padding: 10px 8px;
  }

  .mb_header__bar > .mb_header__lang-wrap {
    display: none;
  }

  .mb_header__lang-menu {
    min-width: 74px;
    top: 34px;
  }

  .mb_header__mobile-lang .mb_header__lang-btn {
    height: 28px;
    min-width: 44px;
    justify-content: center;
    border: 1px solid var(--mb-color-border);
    border-radius: 5px;
    background: var(--mb-color-control);
    color: var(--mb-color-text-muted);
    font-size: 10px;
    padding: 0 8px;
  }

  .mb_header__mobile-lang .mb_header__lang-menu button {
    text-align: center;
    text-transform: uppercase;
    font-size: 11px;
  }

  .mb_footer__wrap {
    padding: 18px 14px 92px;
  }

  .mb_footer__top {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    justify-items: center;
    gap: 18px;
  }

  .mb_footer__lang-wrap,
  .mb_footer__downloads,
  .mb_footer__trust {
    grid-area: auto;
  }

  .mb_footer__lang-wrap {
    justify-self: center;
    order: 3;
  }

  .mb_footer__downloads,
  .mb_footer__payments {
    justify-content: center;
  }

  .mb_footer__trust {
    flex-direction: column;
    justify-content: center;
  }

  .mb_footer__main {
    padding: 18px 0;
  }

  .mb_footer__brand {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .mb_footer__headline,
  .mb_footer__brand-copy,
  .mb_footer__eyebrow,
  .mb_footer__chip-group,
  .mb_footer__utility,
  .mb_footer__toggle,
  .mb_footer__longcopy {
    grid-column: auto;
    grid-row: auto;
  }

  .mb_footer__headline {
    font-size: 22px;
    line-height: 1.22;
  }

  .mb_footer__brand-copy,
  .mb_footer__eyebrow,
  .mb_footer__longcopy {
    margin-top: 0;
  }

  .mb_footer__brand-copy p {
    font-size: 14px;
  }

  .mb_footer__chip-group + .mb_footer__chip-group {
    margin-top: 0;
  }

  .mb_footer__chip-image {
    max-width: 96px;
    max-height: 22px;
  }

  .mb_footer__utility {
    margin-top: 0;
    padding-top: 0;
  }

  .mb_footer__toggle {
    justify-self: start;
    margin-top: 0;
  }

  .mb_footer__nav {
    grid-row: auto;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 0;
  }

  .mb_footer__nav-group + .mb_footer__nav-group {
    margin-top: 10px;
  }

  .mb_footer__nav-button {
    cursor: pointer;
    font-size: 15px;
    padding: 12px 0;
  }

  .mb_footer__nav-button svg {
    display: block;
    transition: transform 0.2s ease;
  }

  .mb_footer__nav-panel {
    display: none;
    padding: 2px 0 6px;
  }

  .mb_footer__nav-group.is-open .mb_footer__nav-panel {
    display: block;
  }

  .mb_footer__nav-panel a {
    padding: 8px 0;
    font-size: 13px;
  }

  .mb_footer__bottom {
    padding-top: 18px;
  }
}

@media (max-width: 420px) {
  .mb_header__logo {
    width: 142px;
  }
}

@media (max-width: 380px) {
  .mb_header__logo {
    width: 128px;
  }
}

@media (max-width: 340px) {
  .mb_header__logo {
    width: 110px;
  }
}
