:root {
  --mf-shell-green: #158545;
  --mf-shell-green-dark: #0f6836;
  --mf-shell-red: #d61f26;
  --mf-shell-ink: #141814;
  --mf-shell-muted: #626a64;
  --mf-shell-line: #e2e7e3;
  --mf-shell-white: #ffffff;
  --mf-shell-footer: #111713;
  --mf-shell-header-height: 82px;
}

* { box-sizing: border-box; }
body { margin: 0; }

.mf-site-header {
  position: sticky;
  top: 0;
  z-index: 10000;
  width: 100%;
  background: rgba(255,255,255,.98);
  border-bottom: 1px solid var(--mf-shell-line);
  box-shadow: 0 3px 16px rgba(12,32,19,.06);
  font-family: "Nunito", Arial, sans-serif;
}

.mf-site-nav-wrap {
  width: min(1420px, 100%);
  min-height: var(--mf-shell-header-height);
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: minmax(190px, auto) 1fr minmax(145px, auto);
  align-items: center;
  gap: 24px;
}

.mf-site-logo {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 250px;
  min-width: 0;
  color: var(--mf-shell-ink);
  text-decoration: none;
}

.mf-site-logo img,
.mf-site-logo svg,
.mf-site-logo picture {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 62px;
  object-fit: contain;
}

.mf-logo-fallback {
  display: inline-flex;
  align-items: baseline;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -.045em;
}
.mf-logo-fallback__my { color: var(--mf-shell-green); }
.mf-logo-fallback__football { color: var(--mf-shell-ink); }
.mf-logo-fallback strong { color: var(--mf-shell-red); }

.mf-primary-nav {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(13px, 1.35vw, 25px);
}

.mf-primary-nav > a,
.mf-nav-button {
  position: relative;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--mf-shell-ink);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.mf-primary-nav > a::after,
.mf-nav-button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 3px;
  border-radius: 999px;
  background: var(--mf-shell-green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .16s ease;
}

.mf-primary-nav > a:hover::after,
.mf-primary-nav > a:focus-visible::after,
.mf-primary-nav > a[aria-current="page"]::after,
.mf-nav-button:hover::after,
.mf-nav-button:focus-visible::after,
.mf-nav-dropdown[data-active="true"] .mf-nav-button::after {
  transform: scaleX(1);
}

.mf-nav-dropdown { position: relative; }
.mf-nav-button { gap: 6px; }
.mf-nav-button::before {
  content: "";
  order: 2;
  width: 7px;
  height: 7px;
  margin-top: -4px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.mf-nav-menu {
  position: absolute;
  top: calc(100% + 7px);
  left: 50%;
  min-width: 175px;
  padding: 8px;
  border: 1px solid var(--mf-shell-line);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(12,32,19,.14);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -5px);
  transition: opacity .14s ease, transform .14s ease, visibility .14s ease;
}

.mf-nav-menu a {
  display: block;
  padding: 10px 11px;
  border-radius: 9px;
  color: var(--mf-shell-ink);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.mf-nav-menu a:hover,
.mf-nav-menu a:focus-visible,
.mf-nav-menu a[aria-current="page"] {
  background: #edf7f1;
  color: var(--mf-shell-green-dark);
}

.mf-nav-dropdown:hover .mf-nav-menu,
.mf-nav-dropdown:focus-within .mf-nav-menu,
.mf-nav-dropdown[data-open="true"] .mf-nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.mf-header-account {
  display: flex;
  justify-content: flex-end;
}

.mf-account-link,
.mf-account-trigger {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 15px;
  border: 1px solid rgba(21,133,69,.24);
  border-radius: 12px;
  background: #eff8f2;
  color: var(--mf-shell-green-dark);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}
.mf-account-link:hover,
.mf-account-trigger:hover,
.mf-account-link:focus-visible,
.mf-account-trigger:focus-visible {
  border-color: var(--mf-shell-green);
  background: #e7f5ec;
}

.mf-account-menu { position: relative; }
.mf-account-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 190px;
  padding: 8px;
  border: 1px solid var(--mf-shell-line);
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(12,32,19,.14);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: opacity .14s ease, transform .14s ease, visibility .14s ease;
}
.mf-account-menu[data-open="true"] .mf-account-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mf-account-dropdown a,
.mf-account-dropdown button {
  width: 100%;
  display: block;
  padding: 10px 11px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--mf-shell-ink);
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
}
.mf-account-dropdown a:hover,
.mf-account-dropdown button:hover,
.mf-account-dropdown a:focus-visible,
.mf-account-dropdown button:focus-visible {
  background: #edf7f1;
  color: var(--mf-shell-green-dark);
}
.mf-account-dropdown form { margin: 0; }

.mf-email-verification-bar {
  width: 100%;
  min-height: 36px;
  border-top: 1px solid rgba(155,99,0,.14);
  background: #fff3c9;
  color: #5e4300;
}
.mf-email-verification-bar[hidden] { display: none !important; }
.mf-email-verification-bar__inner {
  width: min(1420px, 100%);
  min-height: 36px;
  margin: 0 auto;
  padding: 5px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 12.5px;
  line-height: 1.25;
  text-align: center;
}
.mf-email-verification-bar__inner a {
  flex: 0 0 auto;
  color: #215d38;
  font-weight: 900;
  text-underline-offset: 2px;
}

.mf-mobile-toggle,
.mf-mobile-panel { display: none; }

.mf-site-footer {
  margin-top: 70px;
  background: var(--mf-shell-footer);
  color: rgba(255,255,255,.84);
  font-family: "Nunito", Arial, sans-serif;
}
.mf-site-footer__inner {
  width: min(1320px, 100%);
  margin: 0 auto;
  padding: 52px 28px 42px;
  display: grid;
  grid-template-columns: minmax(250px, 1.7fr) repeat(4, minmax(125px, 1fr));
  gap: 34px;
}
.mf-footer-brand a {
  display: inline-block;
  color: #fff;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: -.035em;
  text-decoration: none;
}
.mf-footer-brand a span { color: var(--mf-shell-red); }
.mf-footer-brand p {
  max-width: 38ch;
  margin: 14px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 14px;
  line-height: 1.65;
}
.mf-footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mf-footer-column strong {
  margin-bottom: 3px;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}
.mf-footer-column a {
  color: rgba(255,255,255,.66);
  font-size: 13px;
  text-decoration: none;
}
.mf-footer-column a:hover,
.mf-footer-column a:focus-visible {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.mf-site-footer__bottom {
  width: min(1320px, calc(100% - 56px));
  margin: 0 auto;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255,255,255,.11);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.48);
  font-size: 12px;
}

.mf-page-main {
  min-height: 58vh;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 70px 0 30px;
}
.mf-placeholder-page {
  min-height: 48vh;
  display: grid;
  align-content: start;
}
.mf-placeholder-page h1 {
  margin: 0;
  color: var(--mf-shell-ink);
  font-family: "Fredoka", "Nunito", Arial, sans-serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
}
.mf-placeholder-page p {
  margin: 16px 0 0;
  color: var(--mf-shell-muted);
  font-size: 17px;
}

body > .mobile-panel:not(.mf-mobile-panel),
body > .mobile-menu:not(.mf-mobile-panel),
body > [data-mobile-menu]:not(.mf-mobile-panel) {
  display: none !important;
}
body .auth-shell { min-height: 60vh; }
body .auth-footer { display: none !important; }

@media (max-width: 1160px) {
  .mf-site-nav-wrap {
    grid-template-columns: minmax(170px, auto) 1fr minmax(130px, auto);
    gap: 14px;
    padding-inline: 20px;
  }
  .mf-primary-nav { gap: 12px; }
  .mf-primary-nav > a,
  .mf-nav-button { font-size: 12.5px; }
  .mf-account-link,
  .mf-account-trigger {
    padding-inline: 11px;
    font-size: 12.5px;
  }
}

@media (max-width: 960px) {
  :root { --mf-shell-header-height: 68px; }

  .mf-site-nav-wrap {
    grid-template-columns: 1fr auto;
    padding-inline: 16px;
  }
  .mf-site-logo img,
  .mf-site-logo svg,
  .mf-site-logo picture { max-height: 51px; }

  .mf-primary-nav,
  .mf-header-account { display: none; }

  .mf-mobile-toggle {
    width: 44px;
    height: 42px;
    display: inline-grid;
    place-content: center;
    gap: 5px;
    border: 1px solid var(--mf-shell-line);
    border-radius: 11px;
    background: #fff;
    cursor: pointer;
  }
  .mf-mobile-toggle span {
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: var(--mf-shell-ink);
    transition: transform .16s ease, opacity .16s ease;
  }
  .mf-mobile-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .mf-mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .mf-mobile-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .mf-mobile-panel {
    border-top: 1px solid var(--mf-shell-line);
    background: #fff;
  }
  .mf-mobile-panel:not([hidden]) { display: block; }
  .mf-mobile-panel > nav {
    max-height: calc(100vh - 68px);
    overflow: auto;
    padding: 12px 16px 20px;
  }
  .mf-mobile-panel a,
  .mf-mobile-panel summary {
    display: block;
    padding: 12px 9px;
    border-bottom: 1px solid #edf0ed;
    color: var(--mf-shell-ink);
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    cursor: pointer;
  }
  .mf-mobile-panel details a {
    padding-left: 28px;
    color: var(--mf-shell-muted);
    font-weight: 800;
  }
  .mf-mobile-panel summary { list-style: none; }
  .mf-mobile-panel summary::-webkit-details-marker { display: none; }

  .mf-mobile-account {
    margin-top: 10px;
    padding-top: 5px;
    border-top: 2px solid var(--mf-shell-line);
  }
  .mf-mobile-account form { margin: 0; }
  .mf-mobile-account button {
    width: 100%;
    padding: 12px 9px;
    border: 0;
    border-bottom: 1px solid #edf0ed;
    background: transparent;
    color: var(--mf-shell-ink);
    font: inherit;
    font-size: 15px;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
  }

  .mf-email-verification-bar__inner { padding-inline: 16px; }

  .mf-site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mf-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .mf-email-verification-bar__inner {
    min-height: 42px;
    padding-block: 6px;
    justify-content: space-between;
    gap: 8px;
    font-size: 11px;
    text-align: left;
  }
  .mf-email-verification-bar__inner span strong { display: block; }
  .mf-email-verification-bar__inner a {
    max-width: 92px;
    text-align: right;
  }

  .mf-site-footer { margin-top: 50px; }
  .mf-site-footer__inner {
    padding: 38px 18px 28px;
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
  .mf-footer-brand { grid-column: 1 / -1; }
  .mf-site-footer__bottom {
    width: calc(100% - 36px);
    flex-direction: column;
    gap: 5px;
  }
  .mf-page-main {
    width: min(100% - 28px, 1180px);
    padding-top: 42px;
  }
}

/* MF-HEADER-UNIFORM-V2:START */
html,
html body {
  margin: 0 !important;
  padding-top: 0 !important;
}

body > .mf-site-header,
.mf-site-header {
  width: 100% !important;
  min-height: 0 !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.mf-site-nav-wrap {
  width: 100% !important;
  max-width: none !important;
  height: 90px !important;
  min-height: 90px !important;
  margin: 0 !important;
  padding: 0 26px !important;
  grid-template-columns: 270px minmax(0, 1fr) 270px !important;
  gap: 18px !important;
  align-items: center !important;
}

.mf-site-logo {
  justify-self: start !important;
  margin: 0 !important;
  padding: 0 !important;
}

.mf-site-logo img,
.mf-site-logo svg,
.mf-site-logo picture {
  max-height: 64px !important;
  margin: 0 !important;
}

.mf-primary-nav {
  justify-self: center !important;
  gap: 32px !important;
}

.mf-header-account {
  width: 100% !important;
  justify-self: end !important;
  justify-content: flex-end !important;
  margin: 0 !important;
  padding: 0 !important;
}

.mf-account-link,
.mf-account-trigger {
  min-height: 44px !important;
}

.mf-content-page {
  min-height: 60vh;
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0 36px;
}

.mf-content-hero {
  margin-bottom: 42px;
}

.mf-content-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--mf-shell-red);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .24em;
}

.mf-content-hero h1 {
  margin: 0;
  color: var(--mf-shell-ink);
  font-family: "Fredoka", "Nunito", Arial, sans-serif;
  font-size: clamp(42px, 6vw, 72px);
  line-height: .98;
}

.mf-content-hero > p {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--mf-shell-muted);
  font-family: "Nunito", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

.mf-content-section,
.mf-legal-page section {
  margin-top: 22px;
  padding: 28px 30px;
  border: 1px solid var(--mf-shell-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(12,32,19,.055);
}

.mf-content-section--compact {
  min-height: 180px;
}

.mf-content-section h2,
.mf-legal-page h2 {
  margin: 0 0 12px;
  color: var(--mf-shell-ink);
  font-family: "Fredoka", "Nunito", Arial, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.mf-content-section p,
.mf-legal-page p,
.mf-legal-page li {
  color: #4e5750;
  font-family: "Nunito", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

.mf-content-section p:last-child,
.mf-legal-page p:last-child {
  margin-bottom: 0;
}

.mf-legal-page {
  display: grid;
  gap: 18px;
}

.mf-legal-page section {
  margin-top: 0;
}

.mf-legal-page ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.mf-legal-page a,
.mf-content-section a {
  color: var(--mf-shell-green-dark);
  font-weight: 800;
}

@media (max-width: 1320px) and (min-width: 961px) {
  .mf-site-nav-wrap {
    padding-inline: 20px !important;
    grid-template-columns: 220px minmax(0, 1fr) 180px !important;
    gap: 12px !important;
  }

  .mf-primary-nav {
    gap: clamp(16px, 1.7vw, 26px) !important;
  }

  .mf-primary-nav > a,
  .mf-nav-button {
    font-size: 13px !important;
  }
}

@media (max-width: 960px) {
  .mf-site-nav-wrap {
    height: 68px !important;
    min-height: 68px !important;
    padding-inline: 16px !important;
    grid-template-columns: 1fr auto !important;
  }

  .mf-content-page {
    padding-top: 42px;
  }
}

@media (max-width: 640px) {
  .mf-content-section,
  .mf-legal-page section {
    padding: 22px 20px;
    border-radius: 14px;
  }
}
/* MF-HEADER-UNIFORM-V2:END */

/* MF-MENU-TEXT-SIZE-V1:START */
@media (min-width: 1321px) {
  .mf-primary-nav > a,
  .mf-nav-button {
    font-size: 15px !important;
    font-weight: 800 !important;
    letter-spacing: -0.01em !important;
  }

  .mf-nav-dropdown a {
    font-size: 14px !important;
  }
}

@media (min-width: 961px) and (max-width: 1320px) {
  .mf-primary-nav > a,
  .mf-nav-button {
    font-size: 14px !important;
    font-weight: 800 !important;
  }

  .mf-nav-dropdown a {
    font-size: 13.5px !important;
  }
}
/* MF-MENU-TEXT-SIZE-V1:END */


/* MF-HANGMAN-ACCOUNT-STYLES */
.mf-account-game-rankings{margin-top:24px;padding:20px;border:1px solid #dce9df;border-radius:20px;background:#f6fbf8}
.mf-account-game-rankings h2{margin:0 0 12px;font-size:24px}
.mf-account-game-card{display:grid;grid-template-columns:minmax(0,1.5fr) repeat(3,minmax(90px,.7fr)) auto;gap:12px;align-items:center}
.mf-account-game-card>div{min-width:0}
.mf-account-game-card span{display:block;color:#6a7a71;font-size:11px;font-weight:900;text-transform:uppercase}
.mf-account-game-card strong{display:block;overflow:hidden;text-overflow:ellipsis}
@media(max-width:900px){.mf-account-game-card{grid-template-columns:1fr 1fr}}
@media(max-width:620px){.mf-account-game-card{grid-template-columns:1fr}}

