:root {
  --rep-paper: #f1f0eb;
  --rep-white: #fff;
  --rep-ink: #191919;
  --rep-muted: #6e6b64;
  --rep-line: #d5d2ca;
  --rep-red: #c8101e;
  --rep-red-dark: #9e0c17;
  --rep-green: #13804a;
  --rep-yellow: #e6ad1a;
  --rep-blue: #14659a;
  --rep-shell: 1240px;
  --rep-narrow: "arial narrow", "roboto condensed", "helvetica neue", arial, sans-serif;
  --rep-body: inter, "helvetica neue", arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--rep-paper);
  color: var(--rep-ink);
  font-family: var(--rep-body);
  font-size: 16px;
  line-height: 1.5;
}

button,
input {
  font: inherit;
}

a {
  color: inherit;
}

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

.rep-shell {
  width: min(calc(100% - 48px), var(--rep-shell));
  margin-inline: auto;
}

.rep-visually-hidden,
.rep-skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.rep-skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  background: var(--rep-white);
  border: 2px solid var(--rep-ink);
}

.rep-topline {
  background: var(--rep-ink);
  color: #d5d2ca;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rep-topline-inner {
  display: flex;
  justify-content: space-between;
  padding-block: 6px;
}

.rep-topline a {
  color: var(--rep-white);
  text-decoration: none;
}

.rep-masthead {
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  min-height: 64px;
}

.rep-site-header {
  position: relative;
  z-index: 20;
  background: var(--rep-red);
  box-shadow: 0 5px 0 rgb(25 25 25 / 16%);
}

.rep-brand img {
  position: relative;
  z-index: 1;
  width: 198px;
  height: 44px;
  object-fit: contain;
  object-position: left center;
}

.rep-brand {
  position: relative;
  display: flex;
  align-self: stretch;
  align-items: center;
  isolation: isolate;
}

.rep-brand::before {
  position: absolute;
  z-index: 0;
  inset: 0 18px 0 -100vw;
  background: var(--rep-ink);
  clip-path: polygon(0 0, 100% 0, calc(100% - 28px) 100%, 0 100%);
  content: "";
}

.rep-main-nav {
  display: flex;
  justify-content: center;
  align-self: stretch;
}

.rep-main-nav a {
  position: relative;
  display: grid;
  place-items: center;
  padding: 0 22px;
  color: var(--rep-white);
  font-family: var(--rep-narrow);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.rep-main-nav a::after {
  position: absolute;
  right: 22px;
  bottom: 0;
  left: 22px;
  height: 2px;
  background: var(--rep-white);
  content: "";
  opacity: 0;
  transform: scaleX(0.3);
  transition: 180ms ease;
}

.rep-main-nav a:hover::after,
.rep-main-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.rep-main-nav .rep-mobile-account {
  display: none;
}

.rep-account-nav {
  justify-self: end;
}

.rep-login-link,
.rep-user-chip {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  font-family: var(--rep-narrow);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.rep-login-link {
  color: var(--rep-white);
}

.rep-login-link span {
  color: var(--rep-white);
  font-size: 20px;
}

.rep-user-chip span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--rep-ink);
  color: var(--rep-white);
  font-size: 11px;
}

.rep-nav-toggle {
  display: none;
}

.rep-notice {
  display: flex;
  gap: 9px;
  align-items: baseline;
  margin-top: 12px;
  padding: 12px 16px;
  background: var(--rep-white);
  border-left: 4px solid var(--rep-red);
  font-size: 14px;
  transition: opacity 400ms ease;
}

.rep-notice--success {
  border-color: var(--rep-green);
}

.rep-notice.is-fading {
  opacity: 0.35;
}

.rep-kicker {
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0 0 14px;
  color: var(--rep-red);
  font-family: var(--rep-narrow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rep-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  background: var(--rep-red);
  border: 1px solid var(--rep-red);
  color: var(--rep-white);
  cursor: pointer;
  font-family: var(--rep-narrow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease;
}

.rep-button:hover {
  background: var(--rep-red-dark);
}

.rep-button--dark {
  background: var(--rep-ink);
  border-color: var(--rep-ink);
}

.rep-button--dark:hover {
  background: #363636;
}

.rep-button--wide {
  width: 100%;
}

.rep-home-hero {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  background: #111923 url("/assets/img/frontend/home-hero-dynamo-cup.webp?v=2") center 44% / cover no-repeat;
  color: var(--rep-white);
}

.rep-home-hero::before,
.rep-home-hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.rep-home-hero::before {
  inset: 0;
  background: rgb(13 19 27 / 86%);
  clip-path: polygon(0 0, 61% 0, 48% 100%, 0 100%);
}

.rep-home-hero::after {
  top: 0;
  bottom: 0;
  left: 48%;
  width: 7px;
  background: var(--rep-red);
  opacity: 0.82;
  transform: skewX(-17deg);
  transform-origin: bottom;
}

.rep-home-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  min-height: 430px;
}

.rep-home-intro {
  align-self: center;
  max-width: 700px;
  padding: 48px 60px 92px 0;
}

.rep-home-intro h1 {
  max-width: 650px;
  margin: 0;
  font-family: var(--rep-narrow);
  font-size: clamp(52px, 5.4vw, 78px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-transform: uppercase;
}

.rep-home-intro h1 em {
  color: #ff5059;
  font-style: normal;
}

.rep-home-intro > p:not(.rep-kicker) {
  max-width: 470px;
  margin: 20px 0 24px;
  color: #d6d9dc;
  font-size: 16px;
}

.rep-home-intro .rep-kicker {
  margin-bottom: 10px;
  color: #ff7a81;
}

.rep-home-intro .rep-button {
  border-radius: 12px;
}

.rep-featured {
  align-self: end;
  margin: 0 0 92px;
  padding: 18px 20px;
  background: rgb(10 15 22 / 82%);
  border-top: 3px solid var(--rep-red);
  border-radius: 14px;
  backdrop-filter: blur(5px);
}

.rep-featured-season {
  display: block;
  margin-bottom: 10px;
  color: #9fa6ac;
  font-family: var(--rep-narrow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
}

.rep-featured div {
  padding: 0;
  background: transparent;
}

.rep-featured small {
  color: var(--rep-red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.rep-featured h2 {
  margin: 8px 0;
  font-family: var(--rep-narrow);
  font-size: 25px;
  line-height: 1;
  text-transform: uppercase;
}

.rep-featured p {
  margin: 0;
  color: #c3c7ca;
  font-size: 13px;
}

.rep-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--rep-line);
}

.rep-section-head .rep-kicker {
  margin-bottom: 5px;
}

.rep-section-head h2 {
  margin: 0;
  font-family: var(--rep-narrow);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.rep-section-head > p,
.rep-section-head > a {
  max-width: 390px;
  margin: 0;
  color: var(--rep-muted);
  font-size: 13px;
}

.rep-section-head > a {
  color: var(--rep-red);
  font-weight: 800;
  text-decoration: none;
}

.rep-home-score {
  position: relative;
  z-index: 4;
  overflow: hidden;
  margin-top: -62px;
  margin-bottom: 26px;
  background: var(--rep-white);
  border-radius: 14px;
  box-shadow: 0 18px 40px rgb(25 25 25 / 12%);
}

.rep-home-score .rep-section-head {
  margin: 0;
  padding: 16px 22px 14px;
  background: var(--rep-ink);
  border: 0;
  color: var(--rep-white);
}

.rep-home-score .rep-section-head h2 {
  font-size: 24px;
}

.rep-home-score .rep-section-head .rep-kicker {
  color: #ff7a81;
}

.rep-home-score .rep-section-head > a {
  color: var(--rep-white);
}

.rep-home-results {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rep-home-results > article {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 18px 20px 22px;
  border-right: 1px solid var(--rep-line);
}

.rep-home-results > article:last-child {
  border-right: 0;
  border-bottom: 0;
}

.rep-home-results header {
  grid-column: 1 / -1;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  color: var(--rep-muted);
  font-family: var(--rep-narrow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rep-home-results header span {
  color: var(--rep-red);
  font-weight: 900;
}

.rep-home-results > article.is-upcoming {
  box-shadow: inset 0 4px 0 var(--rep-green);
}

.rep-home-results > article.is-upcoming header span {
  color: var(--rep-green);
}

.rep-home-results > article > strong {
  font-family: var(--rep-narrow);
  font-size: 28px;
  white-space: nowrap;
}

.rep-home-team {
  display: grid;
  gap: 7px;
  justify-items: start;
  min-width: 0;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.15;
}

.rep-home-team img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.rep-home-team-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--rep-paper);
  border: 1px solid var(--rep-line);
  border-radius: 50%;
  color: var(--rep-muted);
  font-family: var(--rep-narrow);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.rep-home-team--away {
  justify-items: end;
  text-align: right;
}

.rep-home-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-bottom: 62px;
}

.rep-home-columns--current {
  padding-bottom: 18px;
}

.rep-home-columns--current .rep-home-table-card {
  border-top: 4px solid var(--rep-red);
}

.rep-home-table-card {
  min-width: 0;
  overflow: hidden;
  background: var(--rep-white);
  border: 1px solid var(--rep-line);
  border-radius: 14px;
}

.rep-home-table-card .rep-section-head {
  min-height: 76px;
  margin: 0;
  padding: 13px 18px;
  align-items: flex-end;
  background: var(--rep-ink);
  border: 0;
  color: var(--rep-white);
}

.rep-home-table-card .rep-section-head .rep-kicker {
  color: #f09aa1;
}

.rep-home-table-card .rep-section-head h2 {
  font-size: 27px;
}

.rep-home-table-card .rep-section-head > a {
  padding: 7px 9px;
  background: rgb(255 255 255 / 12%);
  border-radius: 8px;
  color: var(--rep-white);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.rep-home-table-card .rep-section-head > a:hover,
.rep-home-table-card .rep-section-head > a:focus-visible {
  background: var(--rep-red);
}

.rep-home-columns--archive .rep-home-table-card {
  border-top: 4px solid #a5a29a;
}

.rep-home-columns--archive .rep-home-table-card .rep-section-head {
  background: var(--rep-white);
  border-bottom: 1px solid var(--rep-line);
  color: var(--rep-ink);
}

.rep-home-columns--archive .rep-home-table-card .rep-section-head .rep-kicker {
  color: var(--rep-muted);
}

.rep-home-columns--archive .rep-home-table-card .rep-section-head > a {
  background: #f1eee8;
  border: 1px solid var(--rep-line);
  color: var(--rep-ink);
}

.rep-home-columns--archive .rep-home-table-card .rep-section-head > a:hover,
.rep-home-columns--archive .rep-home-table-card .rep-section-head > a:focus-visible {
  background: var(--rep-ink);
  border-color: var(--rep-ink);
  color: var(--rep-white);
}

.rep-home-leaders {
  margin: 0;
  padding: 0;
  border-top: 0;
  list-style: none;
}

.rep-home-leaders li {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 49px;
  padding: 6px 12px;
  border-bottom: 1px solid var(--rep-line);
}

.rep-home-leaders span {
  color: var(--rep-muted);
  font-family: var(--rep-narrow);
  font-size: 12px;
}

.rep-home-leaders b {
  color: var(--rep-red);
  font-family: var(--rep-narrow);
  font-size: 20px;
}

.rep-home-leaders li > strong small {
  display: block;
  margin-top: 2px;
  color: var(--rep-muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.rep-home-player-stats {
  margin: 0;
  padding: 0;
  border-top: 0;
  list-style: none;
}

.rep-home-player-stats li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto 54px;
  gap: 10px;
  min-height: 49px;
  padding: 6px 12px;
  align-items: center;
  border-bottom: 1px solid var(--rep-line);
}

.rep-home-leaders li:last-child,
.rep-home-player-stats li:last-child {
  border-bottom: 0;
}

.rep-home-leaders li:hover,
.rep-home-player-stats li:hover {
  background: #f7f5f1;
}

.rep-home-leaders li.is-rank-1 {
  background: #fff0f1;
  box-shadow: inset 4px 0 0 var(--rep-red);
}

.rep-home-leaders li.is-rank-2 {
  background: #f0f1f2;
  box-shadow: inset 4px 0 0 #727780;
}

.rep-home-leaders li.is-rank-3 {
  background: #f8eee4;
  box-shadow: inset 4px 0 0 #b77a3e;
}

.rep-home-leaders li > span,
.rep-home-player-stats li > span {
  display: inline-grid;
  width: 26px;
  height: 26px;
  place-items: center;
  background: #e4e0d8;
  border-radius: 50%;
  color: var(--rep-ink);
  font-family: var(--rep-narrow);
  font-size: 13px;
  font-weight: 900;
}

.rep-home-leaders li > .is-rank-1,
.rep-home-player-stats li > .is-rank-1 {
  background: var(--rep-red);
  color: var(--rep-white);
}

.rep-home-leaders li > .is-rank-2,
.rep-home-player-stats li > .is-rank-2 {
  background: #727780;
  color: var(--rep-white);
}

.rep-home-leaders li > .is-rank-3,
.rep-home-player-stats li > .is-rank-3 {
  background: #b77a3e;
  color: var(--rep-white);
}

.rep-home-player-stats li > span {
  color: var(--rep-muted);
  font-family: var(--rep-narrow);
  font-size: 12px;
}

.rep-home-player-stats li > strong {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rep-home-player-stats li > strong small {
  display: block;
  margin-top: 2px;
  color: var(--rep-muted);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.rep-home-player-stats li > em {
  color: var(--rep-muted);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.rep-home-player-stats li > em b {
  color: var(--rep-ink);
  font-size: 13px;
}

.rep-home-player-stats li > i {
  display: block;
  padding: 5px 6px;
  background: #fff0ad;
  border: 1px solid #e4c951;
  border-radius: 8px;
  color: #594600;
  font-family: var(--rep-narrow);
  font-size: 16px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.rep-home-player-stats li > i small {
  display: block;
  margin-top: 3px;
  font-family: var(--rep-body);
  font-size: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rep-home-news-section {
  padding-bottom: 90px;
}

.rep-home-empty {
  margin: 0;
  padding: 22px 8px;
  color: var(--rep-muted);
  border-bottom: 1px solid var(--rep-line);
  font-size: 14px;
}

.rep-home-table-card li.rep-home-empty {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 112px;
  padding: 20px;
  place-items: center;
  border-bottom: 0;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.rep-competition-head {
  background: var(--rep-ink);
  color: var(--rep-white);
}

.rep-competition-head-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: end;
  min-height: 220px;
  padding-block: 38px 32px;
}

.rep-competition-head h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--rep-narrow);
  font-size: clamp(44px, 5.6vw, 72px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.92;
  text-transform: uppercase;
}

.rep-competition-head--view .rep-lead {
  margin-top: 14px;
}

.rep-competition-hero-bottom {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
}

.rep-competition-hero-bottom .rep-lead {
  margin: 0;
}

.rep-competition-context {
  color: #8f8d87;
}

.rep-lead {
  max-width: 720px;
  margin: 24px 0 0;
  color: #bdbab3;
  font-size: 16px;
}

.rep-state {
  width: 7px;
  height: 7px;
  background: var(--rep-muted);
  border-radius: 50%;
}

.rep-state--running {
  background: #32d17a;
  box-shadow: 0 0 0 4px rgb(50 209 122 / 15%);
}

.rep-state--upcoming {
  background: var(--rep-yellow);
}

.rep-competition-facts {
  display: grid;
  min-width: 280px;
  margin: 0;
  border-top: 1px solid #4a4a48;
}

.rep-competition-facts div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid #4a4a48;
}

.rep-competition-facts dt {
  color: #8f8d87;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rep-competition-facts dd {
  margin: 0;
  font-family: var(--rep-narrow);
  font-size: 16px;
  font-weight: 800;
}

.rep-subnav-wrap {
  position: sticky;
  z-index: 10;
  top: 0;
  overflow-x: auto;
  background: var(--rep-white);
  border-bottom: 1px solid var(--rep-line);
}

.rep-subnav-bar {
  display: flex;
  align-items: stretch;
}

.rep-competition-switch {
  display: flex;
  min-width: 235px;
  padding: 0 12px;
  align-items: center;
  margin-right: 18px;
  background: var(--rep-ink);
  border: 0;
  box-shadow: inset 4px 0 0 var(--rep-red);
  color: var(--rep-white);
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 150ms ease;
}

.rep-competition-switch > span {
  margin-right: 8px;
  color: #e79ba2;
  font-family: var(--rep-narrow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.rep-competition-switch strong {
  max-width: 145px;
  overflow: hidden;
  font-family: var(--rep-narrow);
  font-size: 12px;
  font-weight: 900;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.rep-competition-switch i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  margin-left: auto;
  background: var(--rep-red);
  border-radius: 50%;
  color: var(--rep-white);
  font-size: 15px;
  font-style: normal;
  transition: background 150ms ease, color 150ms ease;
}

.rep-competition-switch:hover,
.rep-competition-switch:focus-visible {
  background: #302f2c;
  outline: none;
}

.rep-competition-switch:hover i,
.rep-competition-switch:focus-visible i {
  background: var(--rep-yellow);
  color: var(--rep-ink);
}

.rep-subnav {
  display: flex;
  flex: 1;
  min-width: max-content;
}

.rep-subnav a {
  position: relative;
  padding: 18px 22px 16px 0;
  margin-right: 24px;
  color: var(--rep-muted);
  font-family: var(--rep-narrow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.rep-subnav a[aria-current="page"] {
  color: var(--rep-ink);
}

.rep-subnav a[aria-current="page"]::after {
  position: absolute;
  right: 22px;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--rep-red);
  content: "";
}

.rep-competition-dialog {
  width: min(620px, calc(100% - 30px));
  max-height: min(760px, calc(100dvh - 40px));
  padding: 0;
  overflow: hidden;
  background: var(--rep-white);
  border: 0;
  border-radius: 18px;
  box-shadow: 0 28px 90px rgb(0 0 0 / 35%);
  color: var(--rep-ink);
}

.rep-competition-dialog::backdrop {
  background: rgb(10 10 10 / 72%);
  backdrop-filter: blur(4px);
}

.rep-competition-dialog > header {
  display: flex;
  min-height: 108px;
  padding: 24px 26px 20px;
  align-items: flex-start;
  justify-content: space-between;
  background: var(--rep-ink);
  color: var(--rep-white);
}

.rep-competition-dialog .rep-kicker {
  margin-bottom: 7px;
}

.rep-competition-dialog h2 {
  margin: 0;
  font-family: var(--rep-narrow);
  font-size: 34px;
  letter-spacing: -0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.rep-competition-dialog > header button {
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0;
  place-items: center;
  background: rgb(255 255 255 / 9%);
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 50%;
  color: var(--rep-white);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.rep-competition-dialog > header button:hover {
  background: var(--rep-red);
  border-color: var(--rep-red);
}

.rep-competition-dialog-list {
  display: grid;
  gap: 8px;
  max-height: calc(min(760px, 100dvh - 40px) - 176px);
  padding: 14px;
  overflow-y: auto;
}

.rep-competition-dialog-item {
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) 34px;
  gap: 12px;
  min-height: 68px;
  padding: 12px 14px;
  align-items: center;
  background: #f5f3ee;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--rep-ink);
  text-decoration: none;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.rep-competition-dialog-item:hover {
  background: var(--rep-white);
  border-color: #c9c5bc;
  transform: translateX(2px);
}

.rep-competition-dialog-item.is-current {
  background: #fff6f6;
  border-color: rgb(209 35 42 / 35%);
}

.rep-competition-dialog-item > span:nth-child(2) {
  display: grid;
  gap: 4px;
}

.rep-competition-dialog-item strong {
  font-family: var(--rep-narrow);
  font-size: 18px;
  text-transform: uppercase;
}

.rep-competition-dialog-item small {
  color: var(--rep-muted);
  font-size: 10px;
}

.rep-competition-dialog-item > i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  background: var(--rep-white);
  border-radius: 50%;
  font-style: normal;
}

.rep-competition-dialog-item.is-current > i {
  background: var(--rep-red);
  color: var(--rep-white);
}

.rep-competition-dialog > footer {
  padding: 14px 26px 18px;
  border-top: 1px solid var(--rep-line);
}

.rep-competition-dialog > footer a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--rep-ink);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.rep-competition-dialog > footer a:hover {
  color: var(--rep-red);
}

.rep-competition-body {
  min-height: 540px;
  padding-block: 48px 90px;
}

.rep-competition-body > .rep-notice {
  margin: 0 0 28px;
}

.rep-callout {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 38px;
  padding: 18px 20px;
  background: #e4e1d9;
  border-left: 4px solid var(--rep-red);
}

.rep-callout div {
  display: flex;
  gap: 14px;
  align-items: baseline;
}

.rep-callout span {
  color: var(--rep-muted);
  font-size: 13px;
}

.rep-empty {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 40px;
  align-items: center;
  min-height: 240px;
  padding: 40px;
  background: var(--rep-white);
  border: 1px solid var(--rep-line);
}

.rep-empty > span {
  color: #dfdcd4;
  font-family: var(--rep-narrow);
  font-size: 110px;
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 1;
}

.rep-empty strong {
  display: block;
  font-family: var(--rep-narrow);
  font-size: 26px;
  text-transform: uppercase;
}

.rep-empty p {
  color: var(--rep-muted);
}

.rep-empty a {
  color: var(--rep-red);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.rep-upcoming-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.rep-upcoming-card {
  display: grid;
  min-width: 0;
  overflow: hidden;
  grid-template-rows: auto 1fr auto;
  background: var(--rep-white);
  border: 1px solid var(--rep-line);
  border-top: 3px solid var(--rep-red);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgb(25 25 25 / 6%);
}

.rep-upcoming-card.is-tipped {
  border-top-color: var(--rep-green);
}

.rep-upcoming-card > header {
  display: flex;
  min-height: 50px;
  gap: 5px;
  padding: 7px 8px;
  align-items: center;
  justify-content: space-between;
  background: var(--rep-ink);
  color: var(--rep-white);
}

.rep-upcoming-flags {
  display: flex;
  min-width: 0;
  gap: 3px;
  align-items: center;
  flex-wrap: nowrap;
}

.rep-upcoming-flags span,
.rep-upcoming-flags b {
  display: inline-flex;
  min-height: 20px;
  padding: 3px 4px;
  align-items: center;
  border-radius: 999px;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-transform: uppercase;
}

.rep-upcoming-flags span {
  background: rgb(255 255 255 / 10%);
}

.rep-upcoming-flags b {
  background: var(--rep-yellow);
  color: var(--rep-ink);
}

.rep-upcoming-time {
  display: flex;
  flex: 0 0 auto;
  gap: 5px;
  margin-top: 0;
  align-items: center;
  text-align: right;
  white-space: nowrap;
}

.rep-upcoming-time time,
.rep-upcoming-time small {
  display: inline;
}

.rep-upcoming-time time {
  font-family: var(--rep-narrow);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.rep-upcoming-time small {
  margin-top: 0;
  color: #aaa7a0;
  font-size: 7px;
  font-weight: 800;
  text-transform: uppercase;
}

.rep-upcoming-matchup {
  position: relative;
  display: grid;
  min-height: 118px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.rep-upcoming-club {
  display: flex;
  min-width: 0;
  padding: 8px 6px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.rep-upcoming-club:first-child {
  border-right: 1px solid #efede8;
}

.rep-upcoming-logo {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--rep-muted);
  font-family: var(--rep-narrow);
  font-size: 13px;
  font-weight: 900;
}

.rep-upcoming-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.rep-upcoming-club small {
  margin-top: 2px;
  color: var(--rep-muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rep-upcoming-club strong {
  max-width: 100%;
  margin-top: 2px;
  font-family: var(--rep-narrow);
  font-size: 14px;
  line-height: 1.05;
  text-transform: uppercase;
}

.rep-upcoming-versus {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: var(--rep-white);
  border: 1px solid var(--rep-line);
  border-radius: 50%;
  box-shadow: 0 3px 10px rgb(25 25 25 / 7%);
  transform: translate(-50%, -50%);
}

.rep-upcoming-versus b {
  font-family: var(--rep-narrow);
  font-size: 11px;
  line-height: 1;
}

.rep-upcoming-versus small {
  display: none;
}

.rep-team-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: hidden;
  background: #e4e1d9;
  color: var(--rep-muted);
  font-family: var(--rep-narrow);
  font-size: 10px;
  font-weight: 900;
}

.rep-team-mark img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.rep-team-mark--small {
  width: 32px;
  height: 32px;
}

.rep-team-mark--small img {
  width: 27px;
  height: 27px;
}

.rep-score-form {
  display: grid;
  width: 100%;
  min-width: 0;
  grid-template-columns: minmax(44px, 1fr) 8px minmax(44px, 1fr) 68px;
  gap: 5px;
  align-items: end;
}

.rep-score-form label span {
  display: block;
  margin-bottom: 3px;
  color: var(--rep-muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.rep-score-form input {
  width: 100%;
  height: 44px;
  background: var(--rep-white);
  border: 1px solid #c8c4bc;
  border-radius: 9px;
  font-family: var(--rep-narrow);
  font-size: 22px;
  font-weight: 900;
  text-align: center;
}

.rep-score-form b {
  padding-bottom: 12px;
  text-align: center;
}

.rep-score-form button {
  min-height: 44px;
  padding: 0 5px;
  background: var(--rep-red);
  border: 0;
  border-radius: 9px;
  color: var(--rep-white);
  cursor: pointer;
  font-size: 9px;
  font-weight: 800;
}

.rep-score-form button:hover,
.rep-score-form button:focus-visible {
  background: #a70d19;
  outline: none;
}

.rep-score-form button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.rep-locked-score {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.rep-locked-score span {
  color: var(--rep-muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.rep-locked-score strong {
  font-family: var(--rep-narrow);
  font-size: 28px;
}

.rep-upcoming-tip {
  display: block;
  min-height: 96px;
  padding: 10px 11px;
  background: #f3f0ea;
  border-top: 1px solid var(--rep-line);
}

.rep-upcoming-tip-copy {
  display: flex;
  gap: 8px;
  margin-bottom: 6px;
  align-items: baseline;
  justify-content: space-between;
}

.rep-upcoming-tip-copy span,
.rep-upcoming-tip-copy strong {
  display: inline;
  white-space: nowrap;
}

.rep-upcoming-tip-copy span {
  color: var(--rep-red);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rep-upcoming-tip-copy strong {
  margin-top: 0;
  font-family: var(--rep-narrow);
  font-size: 12px;
  line-height: 1.05;
  text-transform: uppercase;
}

.rep-ranking-private {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 18px;
  padding: 22px;
  align-items: center;
  background: var(--rep-white);
  border: 1px solid var(--rep-line);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgb(25 25 25 / 7%);
}

.rep-ranking-private > span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  background: var(--rep-ink);
  border-radius: 50%;
  color: var(--rep-white);
  font-family: var(--rep-narrow);
  font-size: 28px;
  font-weight: 900;
}

.rep-ranking-private .rep-kicker {
  margin-bottom: 3px;
}

.rep-ranking-private h2,
.rep-ranking-private p {
  margin: 0;
}

.rep-ranking-private h2 {
  font-family: var(--rep-narrow);
  font-size: 26px;
  text-transform: uppercase;
}

.rep-ranking-private div > p:last-child {
  margin-top: 4px;
  color: var(--rep-muted);
  font-size: 12px;
}

.rep-ranking-card {
  overflow: hidden;
  background: var(--rep-white);
  border: 1px solid var(--rep-line);
  border-radius: 16px;
  box-shadow: 0 12px 32px rgb(25 25 25 / 7%);
}

.rep-ranking-card-head {
  display: flex;
  min-height: 82px;
  padding: 15px 20px;
  align-items: center;
  justify-content: space-between;
  background: var(--rep-ink);
  color: var(--rep-white);
}

.rep-ranking-card-head .rep-kicker {
  margin-bottom: 4px;
  color: #e79ba2;
}

.rep-ranking-card-head h2 {
  margin: 0;
  font-family: var(--rep-narrow);
  font-size: 28px;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.rep-ranking-card-head > span {
  display: inline-flex;
  min-height: 28px;
  padding: 5px 9px;
  align-items: center;
  background: rgb(255 255 255 / 10%);
  border-radius: 999px;
  color: var(--rep-white);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rep-ranking-card.is-open .rep-ranking-card-head > span {
  background: var(--rep-yellow);
  color: var(--rep-ink);
}

.rep-ranking-card.is-evaluated .rep-ranking-card-head > span {
  background: var(--rep-green);
}

.rep-ranking-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #f3f0ea;
  border-bottom: 1px solid var(--rep-line);
}

.rep-ranking-card.is-evaluated .rep-ranking-summary {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rep-ranking-summary > div {
  min-height: 62px;
  padding: 11px 18px;
  border-right: 1px solid var(--rep-line);
}

.rep-ranking-summary > div:last-child {
  border-right: 0;
}

.rep-ranking-summary small,
.rep-ranking-summary strong {
  display: block;
}

.rep-ranking-summary small {
  margin-bottom: 3px;
  color: var(--rep-muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rep-ranking-summary strong {
  font-family: var(--rep-narrow);
  font-size: 18px;
}

.rep-ranking-summary .is-points {
  background: #e8f4e7;
}

.rep-ranking-summary .is-exact {
  background: #e8f0f8;
}

.rep-ranking-summary .is-exact strong {
  color: var(--rep-blue);
}

.rep-ranking-summary .is-points strong {
  color: var(--rep-green);
}

.rep-ranking-form {
  background: #f8f6f2;
}

.rep-ranking-tip {
  display: inline-flex;
  min-height: 32px;
  gap: 9px;
  margin: 12px 12px 0;
  padding: 6px 11px 6px 7px;
  align-items: center;
  background: #fff4c7;
  border: 1px solid #ead98f;
  border-radius: 999px;
  color: #5b4b12;
  font-size: 10px;
  font-weight: 800;
}

.rep-ranking-tip b {
  display: inline-grid;
  min-width: 34px;
  min-height: 20px;
  padding: 2px 7px;
  place-items: center;
  background: var(--rep-yellow);
  border-radius: 999px;
  color: var(--rep-ink);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.rep-ranking-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 8px;
  padding: 12px;
}

.rep-ranking-row {
  display: grid;
  min-width: 0;
  min-height: 66px;
  grid-template-columns: 30px 38px minmax(0, 1fr) auto;
  gap: 9px;
  padding: 8px 10px;
  align-items: center;
  background: var(--rep-white);
  border: 1px solid var(--rep-line);
  border-radius: 10px;
}

.rep-ranking-row[draggable="true"] {
  transition: border-color 160ms ease, box-shadow 160ms ease, opacity 160ms ease, transform 160ms ease;
}

.rep-ranking-row[draggable="true"]:hover {
  border-color: #aaa69e;
  box-shadow: 0 5px 14px rgb(25 25 25 / 7%);
}

.rep-ranking-row.is-dragging {
  z-index: 2;
  opacity: 0.62;
  transform: scale(0.995);
}

.rep-ranking-row.is-exact {
  border-left: 4px solid var(--rep-green);
}

.rep-ranking-row.is-difference {
  border-left: 4px solid var(--rep-blue);
}

.rep-ranking-row.is-outcome {
  border-left: 4px solid var(--rep-yellow);
}

.rep-ranking-row.is-miss {
  border-left: 4px solid var(--rep-red);
}

.rep-ranking-number {
  color: #aaa69e;
  font-family: var(--rep-narrow);
  font-size: 10px;
  font-weight: 900;
}

.rep-ranking-team {
  min-width: 0;
}

.rep-ranking-row .rep-team-mark {
  background: transparent;
}

.rep-ranking-team small,
.rep-ranking-team strong {
  display: block;
}

.rep-ranking-team small,
.rep-ranking-position > span,
.rep-ranking-result small {
  color: var(--rep-muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rep-ranking-team strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rep-ranking-other-exact {
  display: block;
  margin-top: 3px;
  color: var(--rep-muted);
  font-size: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.rep-ranking-other-exact b {
  color: var(--rep-blue);
  font-size: 10px;
}

.rep-ranking-controls {
  display: grid;
  grid-template-columns: auto repeat(3, 36px);
  gap: 5px;
  align-items: center;
}

.rep-ranking-position {
  display: grid;
  grid-template-columns: auto 50px;
  gap: 5px;
  align-items: center;
}

.rep-ranking-position > span {
  line-height: 1;
  text-align: right;
}

.rep-ranking-position input {
  appearance: textfield;
  width: 50px;
  height: 36px;
  padding: 0 3px;
  background: #f8f6f2;
  border: 1px solid #c9c5bd;
  border-radius: 9px;
  color: var(--rep-ink);
  font-family: var(--rep-narrow);
  font-size: 18px;
  font-weight: 900;
  text-align: center;
}

.rep-ranking-position input::-webkit-inner-spin-button,
.rep-ranking-position input::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
}

.rep-ranking-drag {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  background: #f3f0ea;
  border: 1px solid #d6d1c8;
  border-radius: 9px;
  color: #77736d;
  cursor: grab;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  touch-action: none;
  user-select: none;
  -webkit-touch-callout: none;
}

.rep-ranking-drag:hover,
.rep-ranking-drag:focus-visible,
.rep-ranking-row.is-dragging .rep-ranking-drag {
  background: var(--rep-ink);
  border-color: var(--rep-ink);
  color: var(--rep-white);
}

.rep-ranking-row.is-dragging .rep-ranking-drag {
  cursor: grabbing;
}

.rep-ranking-controls button {
  display: grid;
  width: 36px;
  height: 36px;
  padding: 0;
  place-items: center;
  background: #f3f0ea;
  border: 1px solid #d6d1c8;
  border-radius: 9px;
  color: var(--rep-ink);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.rep-ranking-controls button:hover:not(:disabled),
.rep-ranking-controls button:focus-visible {
  background: var(--rep-ink);
  border-color: var(--rep-ink);
  color: var(--rep-white);
}

.rep-ranking-controls button:disabled {
  cursor: default;
  opacity: 0.28;
}

.rep-ranking-result {
  display: flex;
  gap: 7px;
  align-items: center;
}

.rep-ranking-result > span {
  min-width: 42px;
  text-align: center;
}

.rep-ranking-result small,
.rep-ranking-result strong {
  display: block;
}

.rep-ranking-result strong {
  margin-top: 1px;
  font-family: var(--rep-narrow);
  font-size: 20px;
  line-height: 1;
}

.rep-ranking-result i {
  color: #aaa69e;
  font-size: 13px;
  font-style: normal;
}

.rep-ranking-result em {
  min-width: 42px;
  justify-content: center;
  font-style: normal;
  text-align: center;
}

.rep-ranking-form .rep-form-footer {
  margin: 0;
  padding: 14px 18px;
  background: var(--rep-white);
  border-top: 1px solid var(--rep-line);
}

.rep-ranking-save-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.rep-ranking-autosave {
  max-width: 220px;
  color: var(--rep-muted);
  font-size: 10px;
  font-weight: 900;
  text-align: right;
}

.rep-ranking-autosave[data-state="saved"] {
  color: var(--rep-green);
}

.rep-ranking-autosave[data-state="error"] {
  color: var(--rep-red);
}

.rep-ranking-wait {
  display: flex;
  gap: 10px;
  padding: 14px 18px;
  align-items: center;
  background: var(--rep-white);
  border-top: 1px solid var(--rep-line);
}

.rep-ranking-wait > span {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  background: #e5e1d9;
  border-radius: 50%;
  color: var(--rep-ink);
  font-weight: 900;
}

.rep-ranking-wait p {
  margin: 0;
  color: var(--rep-muted);
  font-size: 11px;
}

.rep-ranking-wait strong {
  color: var(--rep-ink);
}

.rep-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
}

.rep-form-footer p {
  max-width: 600px;
  margin: 0;
  color: var(--rep-muted);
  font-size: 12px;
}

.rep-table-wrap {
  overflow-x: auto;
  border-top: 3px solid var(--rep-ink);
}

.rep-table {
  width: 100%;
  border-collapse: collapse;
  background: transparent;
  font-size: 14px;
}

.rep-table th,
.rep-table td {
  padding: 13px 14px;
  border-bottom: 1px solid var(--rep-line);
  text-align: left;
  white-space: nowrap;
}

.rep-table th {
  color: var(--rep-muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.rep-table tbody tr:hover,
.rep-table .is-current-user {
  background: var(--rep-white);
}

.rep-table td a {
  display: block;
  color: var(--rep-red);
  font-size: 10px;
  font-weight: 800;
  text-decoration: none;
}

.rep-leaderboard-podium {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.rep-leaderboard-podium article {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 11px;
  min-height: 88px;
  padding: 15px 17px;
  align-items: center;
  background: var(--rep-white);
  border: 1px solid var(--rep-line);
  border-radius: 14px;
}

.rep-leaderboard-podium article.is-rank-1 {
  border-color: #dc9ca3;
  box-shadow: inset 0 3px 0 var(--rep-red);
}

.rep-leaderboard-podium article.is-current-user {
  background: #fff7f8;
}

.rep-leaderboard-podium article > span,
.rep-rank > span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  background: #e4e0d8;
  border-radius: 50%;
  color: var(--rep-ink);
  font-family: var(--rep-narrow);
  font-size: 16px;
  font-weight: 900;
}

.rep-leaderboard-podium article > span {
  width: 38px;
  height: 38px;
  background: #ded8cc;
  font-size: 20px;
}

.rep-leaderboard-podium article.is-rank-1 > span,
.rep-rank > .is-rank-1 {
  background: var(--rep-red);
  color: var(--rep-white);
}

.rep-leaderboard-podium article.is-rank-2 > span,
.rep-rank > .is-rank-2 {
  background: #727780;
  color: var(--rep-white);
}

.rep-leaderboard-podium article.is-rank-3 > span,
.rep-rank > .is-rank-3 {
  background: #b77a3e;
  color: var(--rep-white);
}

.rep-leaderboard-podium article > div {
  min-width: 0;
}

.rep-leaderboard-podium article > div small,
.rep-leaderboard-podium article > div strong {
  display: block;
}

.rep-leaderboard-podium article > div small {
  margin-bottom: 3px;
  color: var(--rep-muted);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.rep-leaderboard-podium article > div strong {
  overflow: hidden;
  font-family: var(--rep-narrow);
  font-size: 19px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rep-leaderboard-podium article > b {
  color: var(--rep-red);
  font-family: var(--rep-narrow);
  font-size: 25px;
  line-height: 1;
  text-align: right;
}

.rep-leaderboard-podium article > b small {
  display: block;
  margin-top: 4px;
  color: var(--rep-muted);
  font-family: var(--rep-body);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rep-leaderboard-podium article > em {
  grid-column: 2 / -1;
  margin-top: -15px;
  color: #665000;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.rep-leaderboard-card {
  overflow: hidden;
  background: var(--rep-white);
  border: 1px solid var(--rep-line);
  border-radius: 14px;
}

.rep-leaderboard-card .rep-table-wrap {
  border-top-color: var(--rep-ink);
}

.rep-leaderboard-card .rep-table tbody tr:hover > td {
  background: #f7f5f1;
}

.rep-leaderboard-card .rep-table .is-current-user > td {
  background: #ffe8eb;
}

.rep-leaderboard-card .rep-table .is-current-user > td:first-child {
  box-shadow: inset 4px 0 0 var(--rep-red);
}

.rep-leaderboard-tipper > div:first-child {
  display: flex;
  align-items: center;
  gap: 5px;
}

.rep-completion-flags {
  display: flex;
  margin-top: 5px;
  flex-wrap: wrap;
  gap: 4px;
}

.rep-completion-flag {
  display: inline-flex;
  min-height: 21px;
  padding: 2px 7px 2px 3px;
  align-items: center;
  gap: 4px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

.rep-completion-flag i {
  display: inline-grid;
  width: 15px;
  height: 15px;
  place-items: center;
  border-radius: 50%;
  color: var(--rep-white);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.rep-completion-flag b {
  font-size: 9px;
  font-weight: 900;
}

.rep-completion-flag.is-complete {
  background: #e5f6ea;
  border-color: #a9d9b7;
  color: #155d2d;
}

.rep-completion-flag.is-complete i {
  background: #218a45;
}

.rep-completion-flag.is-partial {
  background: #fff5d6;
  border-color: #e8cf7a;
  color: #705500;
}

.rep-completion-flag.is-partial i {
  background: #bd8b00;
}

.rep-completion-flag.is-empty {
  background: #fff0f1;
  border-color: #e6b3b8;
  color: #8b2530;
}

.rep-completion-flag.is-empty i {
  background: #b83240;
}

.rep-leaderboard-action-column {
  width: 1%;
  text-align: right !important;
}

.rep-table td .rep-leaderboard-action {
  display: inline-flex;
  min-height: 30px;
  padding: 6px 10px;
  align-items: center;
  justify-content: center;
  background: var(--rep-ink);
  border-radius: 8px;
  color: var(--rep-white);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.rep-table td .rep-leaderboard-action:hover,
.rep-table td .rep-leaderboard-action:focus-visible {
  background: var(--rep-red);
}

.rep-leaderboard th.rep-leaderboard-score-heading,
.rep-leaderboard td.rep-leaderboard-score {
  width: 84px;
  text-align: center;
}

.rep-leaderboard-score > .rep-leaderboard-score-value {
  display: inline-flex;
  width: 64px;
  min-height: 44px;
  padding: 7px 4px;
  align-items: center;
  justify-content: center;
  background: #f2f3f5;
  border: 1px solid #e5e7eb;
  border-radius: 7px;
  color: var(--rep-ink);
  font-size: 14px;
  font-weight: 800;
}

.rep-leaderboard-score > .rep-leaderboard-fantasy {
  background: #fff8d9;
  border-color: #eddda0;
  color: #594600;
}

.rep-leaderboard .rep-total > span {
  background: transparent;
  color: var(--rep-ink);
  font-size: 26px;
  line-height: 1;
}

.rep-leaderboard td .rep-leaderboard-action {
  min-height: 44px;
  padding: 9px 12px;
  background: var(--rep-red);
  border: 1px solid var(--rep-red);
  box-shadow: 0 2px 3px #00000012;
  font-size: 10px;
}

.rep-leaderboard td .rep-leaderboard-action::after {
  margin-left: 4px;
  font-size: 16px;
  content: "›";
}

.rep-leaderboard td .rep-leaderboard-action:hover,
.rep-leaderboard td .rep-leaderboard-action:focus-visible {
  background: #a30819;
  border-color: #a30819;
}

.rep-leaderboard-action-short {
  display: none;
}

.rep-tipper-overview-actions {
  display: flex;
  min-height: 50px;
  margin-bottom: 14px;
  padding: 9px 12px;
  align-items: center;
  justify-content: space-between;
  background: var(--rep-white);
  border: 1px solid var(--rep-line);
  border-radius: 12px;
}

.rep-tipper-overview-actions a {
  display: inline-flex;
  min-height: 30px;
  padding: 6px 11px;
  align-items: center;
  background: var(--rep-ink);
  border-radius: 8px;
  color: var(--rep-white);
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.rep-tipper-overview-actions a:hover,
.rep-tipper-overview-actions a:focus-visible {
  background: var(--rep-red);
}

.rep-tipper-overview-points {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.rep-tipper-overview-points span {
  display: inline-flex;
  min-height: 30px;
  padding: 4px 9px;
  align-items: center;
  gap: 5px;
  background: #f0ede7;
  border-radius: 8px;
  color: var(--rep-muted);
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.rep-tipper-overview-points strong {
  color: var(--rep-ink);
  font-family: var(--rep-narrow);
  font-size: 17px;
}

.rep-tipper-overview-points .is-fantasy {
  background: #fff0ad;
  color: #665000;
}

.rep-tipper-overview-points .is-total {
  background: var(--rep-ink);
  color: #c9c5bd;
}

.rep-tipper-overview-points .is-total strong {
  color: var(--rep-white);
}

.rep-tipper-overview-tables {
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
}

.rep-tipper-overview-tables .rep-table td a {
  color: var(--rep-ink);
}

.rep-tipper-overview-tables .rep-table td a:hover,
.rep-tipper-overview-tables .rep-table td a:focus-visible {
  color: var(--rep-red);
}

.rep-fantasy-rules {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.rep-fantasy-rules span {
  display: inline-flex;
  min-height: 32px;
  padding: 6px 11px;
  align-items: center;
  gap: 5px;
  background: var(--rep-white);
  border: 1px solid var(--rep-line);
  border-radius: 999px;
  color: var(--rep-muted);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.rep-fantasy-rules b {
  color: var(--rep-ink);
  font-family: var(--rep-narrow);
  font-size: 16px;
}

.rep-fantasy-rules .is-budget {
  background: #fff0ad;
  border-color: #e7cf67;
  color: #665000;
}

.rep-fantasy-rules .is-scoring {
  margin-left: auto;
  background: var(--rep-ink);
  border-color: var(--rep-ink);
  color: #d8d4cc;
  letter-spacing: 0.02em;
  text-transform: none;
}

.rep-fantasy-rules .is-scoring b {
  color: var(--rep-white);
  font-family: var(--rep-body);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rep-fantasy-rounds {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.rep-fantasy-round {
  min-width: 0;
  overflow: hidden;
  background: var(--rep-white);
  border: 1px solid var(--rep-line);
  border-radius: 16px;
}

.rep-fantasy-round.is-editable {
  border-top: 3px solid var(--rep-red);
}

.rep-fantasy-round.is-locked {
  border-top: 3px solid #77746e;
}

.rep-fantasy-round.is-editable > header {
  background: var(--rep-ink);
  border-bottom-color: var(--rep-ink);
  color: var(--rep-white);
}

.rep-fantasy-round.is-editable > header .rep-kicker {
  color: #e79ba2;
}

.rep-fantasy-round.is-editable > header > span {
  color: #bbb8b1;
}

.rep-fantasy-round > header {
  display: flex;
  min-height: 68px;
  padding: 12px;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--rep-line);
}

.rep-fantasy-round > header .rep-kicker {
  margin-bottom: 4px;
}

.rep-fantasy-round > header h2 {
  margin: 0;
  font-family: var(--rep-narrow);
  font-size: 19px;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.rep-fantasy-round > header > span {
  color: var(--rep-muted);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.rep-fantasy-round-meta {
  display: flex;
  min-height: 39px;
  padding: 8px 12px;
  align-items: flex-start;
  flex-direction: column;
  gap: 3px;
  background: #f4f1eb;
  color: var(--rep-muted);
  font-size: 9px;
  font-weight: 800;
}

.rep-fantasy-round-meta strong {
  color: var(--rep-ink);
}

.rep-fantasy-budget {
  padding: 12px;
  border-bottom: 1px solid var(--rep-line);
}

.rep-fantasy-budget > div:first-child,
.rep-fantasy-budget p {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rep-fantasy-budget span {
  color: var(--rep-muted);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.rep-fantasy-budget strong {
  font-family: var(--rep-narrow);
  font-size: 18px;
}

.rep-fantasy-budget-track {
  overflow: hidden;
  height: 7px;
  margin-top: 9px;
  background: #e5e1d9;
  border-radius: 999px;
}

.rep-fantasy-budget-track i {
  display: block;
  height: 100%;
  background: var(--rep-red);
  border-radius: inherit;
}

.rep-fantasy-budget p {
  margin: 8px 0 0;
  color: var(--rep-muted);
  font-size: 9px;
}

.rep-fantasy-budget p b {
  color: #665000;
}

.rep-fantasy-lineup {
  display: grid;
  gap: 12px;
  padding: 13px 12px 15px;
}

.rep-fantasy-lineup section h3 {
  margin: 0 0 7px;
  color: var(--rep-muted);
  font-size: 9px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.rep-fantasy-lineup section > div {
  display: grid;
  gap: 6px;
}

.rep-fantasy-slot {
  display: grid;
  width: 100%;
  min-height: 48px;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 7px;
  padding: 6px 7px;
  align-items: center;
  background: #faf8f4;
  border: 1px dashed #c9c5bd;
  border-radius: 10px;
  color: var(--rep-ink);
  font: inherit;
  text-align: left;
}

button.rep-fantasy-slot {
  cursor: pointer;
}

button.rep-fantasy-slot:hover,
button.rep-fantasy-slot:focus-visible {
  background: var(--rep-white);
  border-color: var(--rep-red);
  outline: none;
}

.rep-fantasy-slot.is-filled {
  background: var(--rep-white);
  border-style: solid;
}

.rep-fantasy-slot > span {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  background: var(--rep-ink);
  border-radius: 50%;
  color: var(--rep-white);
  font-family: var(--rep-narrow);
  font-size: 12px;
  font-weight: 900;
}

.rep-fantasy-slot div,
.rep-fantasy-slot strong,
.rep-fantasy-slot small {
  min-width: 0;
}

.rep-fantasy-slot strong,
.rep-fantasy-slot small {
  display: block;
}

.rep-fantasy-slot strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rep-fantasy-slot small {
  margin-top: 2px;
  color: var(--rep-muted);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.rep-fantasy-slot > b {
  color: var(--rep-red);
  font-family: var(--rep-narrow);
  font-size: 12px;
  white-space: nowrap;
}

.rep-fantasy-dialog {
  width: min(calc(100% - 30px), 760px);
  max-height: min(820px, calc(100vh - 36px));
  padding: 0;
  overflow: hidden;
  background: var(--rep-white);
  border: 0;
  border-radius: 18px;
  color: var(--rep-ink);
  box-shadow: 0 24px 70px rgb(0 0 0 / 34%);
}

.rep-fantasy-dialog::backdrop {
  background: rgb(18 18 18 / 72%);
  backdrop-filter: blur(3px);
}

.rep-fantasy-dialog form {
  display: grid;
  max-height: min(820px, calc(100vh - 36px));
  grid-template-rows: auto auto minmax(0, 1fr) auto;
}

.rep-fantasy-dialog header,
.rep-fantasy-dialog footer,
.rep-fantasy-dialog-budget {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rep-fantasy-dialog header {
  min-height: 82px;
  padding: 16px 20px;
  background: var(--rep-ink);
  color: var(--rep-white);
}

.rep-fantasy-dialog header .rep-kicker {
  margin-bottom: 4px;
  color: #e79ba2;
}

.rep-fantasy-dialog h2 {
  margin: 0;
  font-family: var(--rep-narrow);
  font-size: 28px;
  text-transform: uppercase;
}

.rep-fantasy-dialog header > button {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1px solid #5d5b57;
  border-radius: 50%;
  color: var(--rep-white);
  cursor: pointer;
  font-size: 22px;
}

.rep-fantasy-dialog-budget {
  min-height: 48px;
  padding: 8px 20px;
  background: #fff0ad;
  color: #665000;
  font-size: 10px;
  font-weight: 800;
}

.rep-fantasy-dialog-budget strong {
  color: var(--rep-ink);
}

.rep-fantasy-player-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 14px 20px;
  overflow-y: auto;
}

.rep-fantasy-player-option {
  display: grid;
  min-height: 58px;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  padding: 8px 10px;
  align-items: center;
  background: #faf8f4;
  border: 1px solid var(--rep-line);
  border-radius: 10px;
  cursor: pointer;
}

.rep-fantasy-player-option[hidden] {
  display: none;
}

.rep-fantasy-player-option.is-disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.rep-fantasy-player-option:has(input:checked) {
  background: #fff0ad;
  border-color: #d8ae00;
}

.rep-fantasy-player-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rep-fantasy-player-option > span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  background: var(--rep-ink);
  border-radius: 50%;
  color: var(--rep-white);
  font-family: var(--rep-narrow);
  font-size: 12px;
  font-weight: 900;
}

.rep-fantasy-player-option strong,
.rep-fantasy-player-option small {
  display: block;
}

.rep-fantasy-player-option strong {
  font-size: 12px;
}

.rep-fantasy-player-option small {
  margin-top: 2px;
  color: var(--rep-muted);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
}

.rep-fantasy-dialog footer {
  gap: 8px;
  min-height: 64px;
  padding: 10px 20px;
  border-top: 1px solid var(--rep-line);
  justify-content: flex-end;
}

.rep-fantasy-dialog footer button {
  min-height: 38px;
  padding: 8px 15px;
  background: var(--rep-white);
  border: 1px solid #c9c5bd;
  border-radius: 9px;
  color: var(--rep-ink);
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.rep-fantasy-dialog footer button[type="submit"] {
  background: var(--rep-red);
  border-color: var(--rep-red);
  color: var(--rep-white);
}

.rep-rank {
  width: 52px;
  color: var(--rep-muted);
  font-family: var(--rep-narrow);
  font-size: 18px;
}

.rep-leaderboard-fantasy {
  display: inline-flex;
  min-width: 48px;
  min-height: 25px;
  padding: 3px 8px;
  align-items: center;
  justify-content: center;
  background: #fff0ad;
  border: 1px solid #e7cf67;
  border-radius: 999px;
  color: #594600;
  font-size: 11px;
  font-weight: 900;
}

.rep-total {
  color: var(--rep-red);
  font-family: var(--rep-narrow);
  font-size: 20px;
  font-weight: 900;
}

.rep-total > span {
  display: inline-flex;
  min-width: 56px;
  min-height: 32px;
  padding: 4px 9px;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
  background: var(--rep-ink);
  border-radius: 8px;
  color: var(--rep-white);
}

.rep-total small {
  font-family: var(--rep-body);
  font-size: 8px;
  text-transform: uppercase;
}

.rep-hitline {
  font-size: 11px;
}

.rep-hitline b,
.rep-hitline span,
.rep-hitline i,
.rep-hitline em {
  display: inline-grid;
  min-width: 23px;
  height: 23px;
  place-items: center;
  margin-right: 3px;
  background: var(--rep-green);
  color: var(--rep-white);
  font-style: normal;
}

.rep-hitline span {
  background: var(--rep-blue);
}

.rep-hitline i {
  background: var(--rep-yellow);
  color: var(--rep-ink);
}

.rep-hitline em {
  background: var(--rep-red);
}

.rep-results-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.rep-result-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  padding-inline: 16px;
  padding-bottom: 8px;
  background: var(--rep-white);
  border: 1px solid var(--rep-line);
  border-top: 3px solid var(--rep-ink);
  border-radius: 14px;
  flex-direction: column;
  font-size: 12px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.rep-result-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 3px;
  background: var(--rep-red);
  content: "";
}

.rep-result-card:hover {
  border-color: #c7c2b8;
  box-shadow: 0 10px 28px rgb(25 25 25 / 8%);
  transform: translateY(-2px);
}

.rep-result-card > header,
.rep-result-data,
.rep-result-data > div {
  display: flex;
  align-items: center;
}

.rep-result-card > header {
  min-height: 42px;
  justify-content: space-between;
  border-bottom: 1px solid var(--rep-line);
}

.rep-result-card > header span {
  color: var(--rep-red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.rep-result-card > header .rep-result-fantasy {
  display: inline-flex;
  min-height: 22px;
  margin-left: auto;
  margin-right: 10px;
  padding: 3px 7px;
  align-items: center;
  gap: 4px;
  background: #fff0ad;
  border: 1px solid #e7cf67;
  border-radius: 999px;
  color: #594600;
  font-size: 8px;
  letter-spacing: 0.04em;
}

.rep-result-fantasy b {
  color: var(--rep-ink);
  font-size: 10px;
  letter-spacing: 0;
}

.rep-result-card time,
.rep-result-data small {
  color: var(--rep-muted);
}

.rep-result-card time {
  font-size: 10px;
  font-weight: 700;
}

.rep-result-matchup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 96px;
  padding-block: 10px;
}

.rep-result-club {
  display: flex;
  min-width: 0;
  align-self: stretch;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.rep-result-logo {
  width: 52px;
  height: 52px;
  background: transparent;
  border-bottom: 3px solid #d9d5cc;
}

.rep-result-logo img {
  width: 43px;
  height: 43px;
}

.rep-result-club.is-winner .rep-result-logo {
  border-bottom-color: var(--rep-red);
}

.rep-result-club strong {
  display: -webkit-box;
  overflow: hidden;
  min-height: 27px;
  font-size: 11px;
  line-height: 1.2;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.rep-result-score {
  display: grid;
  height: 64px;
  align-self: center;
  place-content: center;
  border-inline: 1px solid var(--rep-line);
  text-align: center;
}

.rep-result-score small {
  color: var(--rep-muted);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rep-result-score strong {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 6px;
  align-items: center;
  margin-top: 2px;
  font-family: var(--rep-narrow);
  font-size: 34px;
  line-height: 1;
}

.rep-result-score i {
  color: #aaa69e;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
}

.rep-result-score .is-winner {
  color: var(--rep-red);
}

.rep-result-data {
  gap: 12px;
  justify-content: space-between;
  min-height: 50px;
  padding-inline: 10px;
  background: #f7f5f1;
  border-top: 1px solid var(--rep-line);
}

.rep-result-data > span {
  display: inline-flex;
  align-items: center;
  color: var(--rep-muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.rep-result-data > .tip-count {
  gap: 7px;
  color: var(--rep-ink);
}

.rep-result-data > .tip-count b {
  white-space: nowrap;
}

.rep-tip-breakdown {
  display: inline-flex;
  gap: 3px;
}

.rep-tip-breakdown i {
  display: inline-grid;
  min-width: 18px;
  height: 18px;
  padding-inline: 3px;
  place-items: center;
  color: var(--rep-white);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.rep-tip-breakdown .is-exact {
  background: var(--rep-green);
}

.rep-tip-breakdown .is-difference {
  background: var(--rep-blue);
}

.rep-tip-breakdown .is-outcome {
  background: var(--rep-yellow);
  color: var(--rep-ink);
}

.rep-tip-breakdown .is-miss {
  background: var(--rep-red);
}

.rep-result-data > div {
  gap: 7px;
  min-height: 30px;
  padding-left: 12px;
  border-left: 1px solid var(--rep-line);
  white-space: nowrap;
}

.rep-result-data small {
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.rep-result-data strong {
  font-family: var(--rep-narrow);
  font-size: 18px;
}

.rep-result-data em {
  padding: 4px 6px;
  background: var(--rep-ink);
  border-radius: 999px;
  color: var(--rep-white);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
}

.rep-result-data > .rep-tip-evaluation--exact {
  border-left-color: var(--rep-green);
}

.rep-result-data > .rep-tip-evaluation--difference {
  border-left-color: var(--rep-blue);
}

.rep-result-data > .rep-tip-evaluation--outcome {
  border-left-color: var(--rep-yellow);
}

.rep-result-data > .rep-tip-evaluation--miss {
  border-left-color: var(--rep-red);
}

.rep-tip-evaluation--exact em {
  background: var(--rep-green);
}

.rep-tip-evaluation--difference em {
  background: var(--rep-blue);
}

.rep-tip-evaluation--outcome em {
  background: var(--rep-yellow);
  color: var(--rep-ink);
}

.rep-tip-evaluation--miss em {
  background: var(--rep-red);
}

.rep-result-card > a {
  display: flex;
  min-height: 40px;
  padding-inline: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  background: var(--rep-ink);
  border-radius: 8px;
  color: var(--rep-white);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease;
}

.rep-result-card > a span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  background: var(--rep-white);
  border-radius: 50%;
  color: var(--rep-ink);
  transition: background 160ms ease, transform 160ms ease;
}

.rep-result-card > a:hover {
  background: var(--rep-red);
  color: var(--rep-white);
}

.rep-result-card > a:hover span {
  background: var(--rep-white);
  color: var(--rep-red);
  transform: translateX(2px);
}

.rep-player-statistics {
  margin-top: 42px;
}

.rep-player-statistics > header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 14px;
}

.rep-player-statistics h3,
.rep-detail-subtitle {
  margin: 0;
  font-family: var(--rep-narrow);
  font-size: 28px;
  text-transform: uppercase;
}

.rep-player-statistics > header > span {
  color: var(--rep-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.rep-detail-subtitle {
  margin-top: 42px;
  margin-bottom: 14px;
}

.rep-match-detail-card {
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--rep-white);
  border: 1px solid var(--rep-line);
  border-top: 3px solid var(--rep-ink);
  border-radius: 14px;
}

.rep-match-detail-card > header {
  display: flex;
  min-height: 44px;
  padding-inline: 20px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--rep-line);
}

.rep-match-detail-meta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.rep-match-detail-card > header span {
  color: var(--rep-red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.rep-match-detail-card > header .rep-match-detail-fantasy {
  display: inline-flex;
  min-height: 22px;
  padding: 3px 8px;
  align-items: center;
  background: #fff0ad;
  border: 1px solid #e7cf67;
  border-radius: 999px;
  color: #594600;
  font-size: 8px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.rep-match-detail-meta a {
  display: inline-flex;
  min-height: 28px;
  padding: 5px 10px;
  align-items: center;
  background: var(--rep-white);
  border: 1px solid #c9c5bd;
  border-radius: 7px;
  color: var(--rep-ink);
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.rep-match-detail-meta a:hover,
.rep-match-detail-meta a:focus-visible {
  background: var(--rep-ink);
  border-color: var(--rep-ink);
  color: var(--rep-white);
}

.rep-match-detail-card > header time {
  color: var(--rep-muted);
  font-size: 10px;
  font-weight: 700;
}

.rep-match-detail-scoreboard {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px minmax(0, 1fr);
  gap: 28px;
  min-height: 138px;
  padding: 18px 40px;
  align-items: center;
}

.rep-match-detail-club {
  display: flex;
  min-width: 0;
  gap: 16px;
  align-items: center;
  font-family: var(--rep-narrow);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.rep-match-detail-club:last-child {
  justify-content: flex-end;
  text-align: right;
}

.rep-match-detail-club:last-child .rep-match-detail-logo {
  order: 2;
}

.rep-match-detail-logo {
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  background: transparent;
  border-bottom: 3px solid #d9d5cc;
}

.rep-match-detail-logo img {
  width: 56px;
  height: 56px;
}

.rep-match-detail-club.is-winner .rep-match-detail-logo {
  border-bottom-color: var(--rep-red);
}

.rep-match-detail-score {
  padding-inline: 18px;
  border-inline: 1px solid var(--rep-line);
  text-align: center;
}

.rep-match-detail-score small {
  color: var(--rep-muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rep-match-detail-score strong {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 9px;
  align-items: center;
  margin-top: 3px;
  font-family: var(--rep-narrow);
  font-size: 50px;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.rep-match-detail-score i {
  color: #aaa69e;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
}

.rep-match-detail-score .is-winner {
  color: var(--rep-red);
}

.rep-match-tip-metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #f7f5f1;
  border-top: 1px solid var(--rep-line);
}

.rep-match-tip-metrics > div {
  min-height: 68px;
  padding: 13px 16px;
  background: var(--rep-ink);
  border-right: 1px solid rgb(255 255 255 / 25%);
  color: var(--rep-white);
}

.rep-match-tip-metrics > div:last-child {
  border-right: 0;
}

.rep-match-tip-metrics .is-exact {
  background: var(--rep-green);
}

.rep-match-tip-metrics .is-difference {
  background: var(--rep-blue);
}

.rep-match-tip-metrics .is-outcome {
  background: var(--rep-yellow);
  color: var(--rep-ink);
}

.rep-match-tip-metrics .is-miss {
  background: var(--rep-red);
}

.rep-match-tip-metrics strong {
  display: block;
  font-family: var(--rep-narrow);
  font-size: 27px;
  line-height: 1;
}

.rep-match-tip-metrics span {
  color: inherit;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.rep-match-detail-tables {
  display: grid;
  grid-template-columns: minmax(320px, 0.7fr) minmax(0, 1.3fr);
  gap: 14px;
}

.rep-detail-table-card {
  min-width: 0;
  overflow: hidden;
  background: var(--rep-white);
  border: 1px solid var(--rep-line);
  border-radius: 14px;
}

.rep-detail-table-card > header {
  display: flex;
  min-height: 78px;
  padding: 15px 18px;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid var(--rep-line);
}

.rep-detail-table-card > header .rep-kicker {
  margin-bottom: 4px;
}

.rep-detail-table-card h2 {
  margin: 0;
  font-family: var(--rep-narrow);
  font-size: 25px;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.rep-detail-table-card > header > span {
  color: var(--rep-muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.rep-detail-table-card .rep-table-wrap {
  max-height: 560px;
  overflow: auto;
  border-top: 0;
}

.rep-detail-table-card .rep-table {
  background: var(--rep-white);
  font-size: 12px;
}

.rep-detail-table-card .rep-table th,
.rep-detail-table-card .rep-table td {
  padding: 10px 8px;
}

.rep-detail-table-card .rep-table th {
  position: sticky;
  z-index: 1;
  top: 0;
  background: var(--rep-ink);
  color: var(--rep-white);
  font-size: 8px;
  letter-spacing: 0.06em;
  box-shadow: none;
}

.rep-detail-table-card .rep-table tbody tr:hover {
  background: #f7f5f1;
}

.rep-detail-table-card .rep-table .is-current-user > td {
  background: #ffe8eb;
}

.rep-detail-table-card .rep-table .is-current-user > td:first-child {
  box-shadow: inset 4px 0 0 var(--rep-red);
}

.rep-me-label {
  display: inline-block;
  margin-left: 4px;
  padding: 2px 5px;
  background: var(--rep-red);
  border-radius: 999px;
  color: var(--rep-white);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rep-detail-table-card .rep-table .is-my-fantasy-player > td {
  background: #fff4c7;
}

.rep-detail-table-card .rep-table .is-my-fantasy-player > td:first-child {
  box-shadow: inset 4px 0 0 #d8ae00;
}

.rep-fantasy-table-points {
  display: inline-flex;
  min-width: 34px;
  min-height: 22px;
  padding: 2px 6px;
  align-items: center;
  justify-content: center;
  background: #fff0ad;
  border: 1px solid #e7cf67;
  border-radius: 999px;
  color: #594600;
  font-size: 9px;
  font-weight: 900;
}

.rep-tip-result-badge {
  display: inline-flex;
  min-height: 24px;
  padding: 4px 7px;
  align-items: center;
  border-radius: 6px;
  color: var(--rep-white);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.rep-tip-result-badge.is-exact {
  background: var(--rep-green);
}

.rep-tip-result-badge.is-difference {
  background: var(--rep-blue);
}

.rep-tip-result-badge.is-outcome {
  background: var(--rep-yellow);
  color: var(--rep-ink);
}

.rep-tip-result-badge.is-miss {
  background: var(--rep-red);
}

.rep-tip-result-badge.is-pending {
  background: #727780;
}

.rep-tip-result-badge.is-no-tip {
  background: #e4e0d8;
  color: #5c5a55;
}

.rep-detail-table-empty {
  padding: 30px 20px;
  color: var(--rep-muted);
  font-size: 13px;
}

.rep-stat-score {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  padding: 36px;
  background: var(--rep-ink);
  color: var(--rep-white);
  font-family: var(--rep-narrow);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

.rep-stat-score span:last-child {
  text-align: right;
}

.rep-stat-score strong {
  font-size: 46px;
}

.rep-stat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-bottom: 38px;
  border-top: 3px solid var(--rep-ink);
}

.rep-stat-score + .rep-stat-grid {
  margin-top: 28px;
}

.rep-stat-grid > div {
  position: relative;
  min-height: 135px;
  padding: 22px 18px;
  overflow: hidden;
  border-right: 1px solid var(--rep-line);
  border-bottom: 1px solid var(--rep-line);
}

.rep-stat-grid strong {
  display: block;
  font-family: var(--rep-narrow);
  font-size: 42px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.rep-stat-grid span {
  color: var(--rep-muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.rep-stat-grid i {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: var(--value);
  height: 4px;
  background: var(--rep-red);
}

.rep-stat-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

.rep-stat-highlight {
  display: flex;
  min-width: 0;
  min-height: 150px;
  padding: 18px;
  flex-direction: column;
  background: var(--rep-white);
  border: 1px solid var(--rep-line);
  border-top: 4px solid var(--rep-red);
  border-radius: 14px;
  color: var(--rep-ink);
  text-decoration: none;
  transition: box-shadow 160ms ease, transform 160ms ease;
}

.rep-stat-highlight.is-exact {
  border-top-color: var(--rep-green);
}

.rep-stat-highlight.is-ranking {
  border-top-color: var(--rep-yellow);
}

.rep-stat-highlight:hover,
.rep-stat-highlight:focus-visible {
  box-shadow: 0 10px 25px rgb(25 25 25 / 10%);
  transform: translateY(-2px);
}

.rep-stat-highlight small {
  color: var(--rep-muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rep-stat-highlight strong {
  display: block;
  margin-top: 7px;
  overflow: hidden;
  font-family: var(--rep-narrow);
  font-size: clamp(27px, 2.7vw, 41px);
  letter-spacing: -0.035em;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.rep-stat-highlight > span {
  margin-top: 5px;
  color: var(--rep-muted);
  font-size: 11px;
  font-weight: 700;
}

.rep-stat-highlight em {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  color: var(--rep-ink);
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rep-stat-highlight em b {
  display: inline-grid;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  place-items: center;
  background: var(--rep-ink);
  border-radius: 50%;
  color: var(--rep-white);
  font-size: 13px;
}

.rep-statistics-card {
  overflow: hidden;
  margin-top: 14px;
  background: var(--rep-white);
  border: 1px solid var(--rep-line);
  border-radius: 14px;
}

.rep-statistics-card > header,
.rep-statistics-disclosure > summary {
  display: flex;
  min-height: 76px;
  padding: 14px 18px;
  align-items: flex-end;
  justify-content: space-between;
  background: var(--rep-ink);
  color: var(--rep-white);
}

.rep-statistics-card > header .rep-kicker,
.rep-statistics-disclosure > summary .rep-kicker {
  margin-bottom: 4px;
  color: #f09aa1;
}

.rep-statistics-card > header h2,
.rep-statistics-disclosure > summary h2 {
  margin: 0;
  font-family: var(--rep-narrow);
  font-size: 27px;
  letter-spacing: -0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.rep-statistics-card > header > span,
.rep-statistics-disclosure > summary > span {
  padding: 5px 8px;
  background: rgb(255 255 255 / 12%);
  border-radius: 999px;
  color: #d9d7d2;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.rep-statistics-disclosure > summary {
  gap: 12px;
  align-items: center;
  cursor: pointer;
  list-style: none;
}

.rep-statistics-disclosure > summary::-webkit-details-marker {
  display: none;
}

.rep-statistics-disclosure > summary > div {
  margin-right: auto;
}

.rep-statistics-disclosure > summary > b {
  display: inline-flex;
  min-height: 34px;
  padding: 6px 10px;
  gap: 7px;
  align-items: center;
  background: var(--rep-white);
  border-radius: 8px;
  color: var(--rep-ink);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.rep-statistics-disclosure > summary > b i {
  font-size: 16px;
  font-style: normal;
  line-height: 1;
  transition: transform 160ms ease;
}

.rep-statistics-disclosure > summary:hover > b,
.rep-statistics-disclosure > summary:focus-visible > b {
  background: var(--rep-red);
  color: var(--rep-white);
}

.rep-statistics-disclosure .is-open {
  display: none;
}

.rep-statistics-disclosure[open] > summary > b i {
  transform: rotate(180deg);
}

.rep-statistics-disclosure[open] .is-closed {
  display: none;
}

.rep-statistics-disclosure[open] .is-open {
  display: inline;
}

.rep-statistics-card .rep-table-wrap {
  border-top: 0;
}

.rep-statistics-card .rep-table tbody tr:hover > td {
  background: #f7f5f1;
}

.rep-statistics-card .rep-table .is-current-user > td {
  background: #ffe8eb;
}

.rep-statistics-card .rep-table .is-current-user > td:first-child {
  box-shadow: inset 4px 0 0 var(--rep-red);
}

.rep-stat-count,
.rep-season-fantasy-points,
.rep-player-team-level {
  display: inline-flex;
  min-width: 32px;
  min-height: 24px;
  padding: 3px 8px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  white-space: nowrap;
}

.rep-stat-count.is-exact {
  background: var(--rep-green);
  color: var(--rep-white);
}

.rep-stat-count.is-difference {
  background: var(--rep-blue);
  color: var(--rep-white);
}

.rep-stat-count.is-outcome {
  background: var(--rep-yellow);
  color: var(--rep-ink);
}

.rep-stat-count.is-miss {
  background: var(--rep-red);
  color: var(--rep-white);
}

.rep-table td .rep-table-action {
  display: inline-flex;
  min-height: 30px;
  padding: 6px 10px;
  align-items: center;
  justify-content: center;
  background: var(--rep-ink);
  border-radius: 8px;
  color: var(--rep-white);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.rep-table td .rep-table-action:hover,
.rep-table td .rep-table-action:focus-visible {
  background: var(--rep-red);
}

.rep-season-player-note {
  display: flex;
  gap: 12px;
  padding: 10px 16px;
  align-items: center;
  background: #fff5c9;
  border-bottom: 1px solid #e4d791;
}

.rep-season-player-note span {
  padding: 4px 7px;
  flex: 0 0 auto;
  background: var(--rep-yellow);
  border-radius: 999px;
  color: var(--rep-ink);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rep-season-player-note p {
  margin: 0;
  color: #554b2a;
  font-size: 10px;
  font-weight: 700;
}

.rep-table-sort {
  display: inline-flex;
  min-height: 36px;
  padding: 3px 0;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  white-space: nowrap;
  cursor: pointer;
}

.rep-table-sort::after {
  color: #7b8189;
  font-size: 12px;
  content: "↕";
}

[aria-sort="ascending"] > .rep-table-sort::after {
  color: var(--rep-red);
  content: "↑";
}

[aria-sort="descending"] > .rep-table-sort::after {
  color: var(--rep-red);
  content: "↓";
}

.rep-table-sort:hover {
  color: var(--rep-red);
}

.rep-table-sort:focus-visible {
  outline: 2px solid var(--rep-red);
  outline-offset: 3px;
  border-radius: 2px;
}

.rep-season-player-table {
  min-width: 1040px;
  font-size: 12px;
}

.rep-season-player-table th,
.rep-season-player-table td {
  padding: 10px 9px;
}

.rep-player-team-level {
  min-width: 26px;
  min-height: 22px;
  padding-inline: 7px;
  background: var(--rep-ink);
  color: var(--rep-white);
}

.rep-player-team-level.is-b {
  background: var(--rep-blue);
}

.rep-season-fantasy-points {
  background: #fff0ad;
  border: 1px solid #e4c951;
  color: #594600;
}

.rep-prose {
  max-width: 790px;
  padding: 42px;
  background: var(--rep-white);
  border-top: 4px solid var(--rep-red);
  font-size: 17px;
  line-height: 1.75;
}

.rep-prose-date {
  color: var(--rep-muted);
  font-size: 11px;
}

.rep-prose h2,
.rep-prose h3,
.rep-prose h4 {
  margin: 1.5em 0 0.5em;
  font-family: var(--rep-narrow);
  line-height: 1.1;
  text-transform: uppercase;
}

.rep-prose h3 {
  margin-top: 0;
  font-size: 36px;
}

.rep-prose a {
  color: var(--rep-red);
}

.rep-page-title {
  display: grid;
  grid-template-columns: 1fr 340px;
  align-items: end;
  padding: 70px 0 46px;
  border-bottom: 3px solid var(--rep-ink);
}

.rep-page-title .rep-kicker {
  grid-column: 1 / -1;
}

.rep-page-title h1,
.rep-account-page > header h1,
.rep-empty-page h1 {
  margin: 0;
  font-family: var(--rep-narrow);
  font-size: clamp(54px, 7vw, 90px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.9;
  text-transform: uppercase;
}

.rep-page-title > p:last-child {
  margin: 0;
  color: var(--rep-muted);
}

.rep-list-page {
  padding-bottom: 100px;
}

.rep-competition-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding-top: 24px;
}

.rep-competition-card {
  display: grid;
  grid-template-areas:
    "header header"
    "copy facts"
    "footer footer";
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 22px;
  min-height: 245px;
  overflow: hidden;
  padding: 18px;
  background: var(--rep-white);
  border: 1px solid var(--rep-line);
  border-top: 4px solid #a5a29a;
  border-radius: 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.rep-competition-card:hover {
  box-shadow: 0 10px 28px rgb(25 25 25 / 8%);
  transform: translateY(-2px);
}

.rep-competition-card--running {
  background: var(--rep-ink);
  color: var(--rep-white);
  border-color: var(--rep-ink);
  border-top-color: var(--rep-red);
}

.rep-competition-card--upcoming {
  border-top-color: var(--rep-yellow);
}

.rep-competition-card > header {
  display: flex;
  grid-area: header;
  align-items: center;
  justify-content: space-between;
}

.rep-competition-card-flags {
  display: flex;
  gap: 7px;
  align-items: center;
  justify-content: flex-end;
}

.rep-list-index {
  color: #a5a29a;
  font-family: var(--rep-narrow);
  font-size: 12px;
}

.rep-competition-status {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  padding: 5px 8px;
  background: #ece9e2;
  border-radius: 999px;
  color: #66635d;
  font-family: var(--rep-narrow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rep-competition-card--running .rep-competition-status {
  background: rgb(255 255 255 / 9%);
  color: var(--rep-white);
}

.rep-competition-card-copy {
  grid-area: copy;
}

.rep-competition-card small,
.rep-competition-card p {
  color: var(--rep-muted);
}

.rep-competition-card--running small,
.rep-competition-card--running p {
  color: #bbb8b1;
}

.rep-competition-card small {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rep-competition-card h2 {
  margin: 6px 0 8px;
  font-family: var(--rep-narrow);
  font-size: 34px;
  letter-spacing: -0.03em;
  line-height: 0.98;
  text-transform: uppercase;
}

.rep-competition-card h2 a {
  color: inherit;
  text-decoration: none;
}

.rep-competition-card h2 a:hover {
  color: var(--rep-red);
}

.rep-hall-hero {
  color: var(--rep-white);
  background:
    linear-gradient(105deg, rgb(16 20 26 / 98%) 0 58%, rgb(16 20 26 / 88%)),
    radial-gradient(circle at 82% 15%, rgb(214 25 43 / 34%), transparent 34%);
}

.rep-hall-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.8fr);
  gap: 70px;
  align-items: end;
  min-height: 300px;
  padding-block: 64px 54px;
}

.rep-hall-hero .rep-kicker {
  color: #d2cec7;
}

.rep-hall-hero h1 {
  margin: 0;
  font-family: var(--rep-narrow);
  font-size: clamp(58px, 8vw, 104px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.84;
  text-transform: uppercase;
}

.rep-hall-hero-inner > div > p:last-child {
  max-width: 600px;
  margin: 24px 0 0;
  color: #c5c2bc;
}

.rep-hall-hero dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 0;
  overflow: hidden;
  background: rgb(255 255 255 / 15%);
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 14px;
}

.rep-hall-hero dl div {
  min-width: 0;
  padding: 16px 18px;
  background: rgb(255 255 255 / 6%);
}

.rep-hall-hero dl div:last-child {
  grid-column: 1 / -1;
}

.rep-hall-hero dt {
  color: #b8b5af;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rep-hall-hero dd {
  margin: 4px 0 0;
  overflow: hidden;
  color: var(--rep-white);
  font-family: var(--rep-narrow);
  font-size: 27px;
  font-weight: 900;
  line-height: 1;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.rep-hall-page {
  padding-block: 42px 100px;
}

.rep-hall-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.rep-hall-card {
  position: relative;
  overflow: hidden;
  background: var(--rep-white);
  border: 1px solid var(--rep-line);
  border-top: 4px solid #a5a29a;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgb(25 25 25 / 5%);
}

.rep-hall-card > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 0;
  color: var(--rep-muted);
  font-family: var(--rep-narrow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rep-hall-card > h2 {
  margin: 9px 18px 16px;
  font-family: var(--rep-narrow);
  font-size: 30px;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.rep-hall-winner {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-inline: 18px;
  padding: 13px 14px;
  background: #fff0f1;
  border-radius: 10px;
  box-shadow: inset 4px 0 0 var(--rep-red);
}

.rep-hall-medal,
.rep-hall-runners li > span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--rep-white);
  background: var(--rep-red);
  border-radius: 50%;
  font-family: var(--rep-narrow);
  font-size: 15px;
  font-weight: 900;
}

.rep-hall-winner div {
  min-width: 0;
}

.rep-hall-winner div small,
.rep-hall-winner div strong,
.rep-hall-winner > b small {
  display: block;
}

.rep-hall-winner div small,
.rep-hall-winner > b small {
  color: var(--rep-muted);
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rep-hall-winner div strong {
  overflow: hidden;
  font-size: 17px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rep-hall-winner > b {
  color: var(--rep-red);
  font-family: var(--rep-narrow);
  font-size: 25px;
  line-height: 0.8;
  text-align: right;
}

.rep-hall-winner > b small {
  margin-top: 6px;
}

.rep-hall-breakdown {
  margin: 9px 20px 13px;
  color: var(--rep-muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.rep-hall-runners {
  margin: 0;
  padding: 0 18px;
  list-style: none;
}

.rep-hall-runners li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  border-top: 1px solid var(--rep-line);
}

.rep-hall-runners li > span {
  width: 25px;
  height: 25px;
  font-size: 12px;
}

.rep-hall-runners li > .is-rank-2 {
  background: #727780;
}

.rep-hall-runners li > .is-rank-3 {
  background: #b77a3e;
}

.rep-hall-runners li > strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rep-hall-runners li > b {
  color: var(--rep-muted);
  font-family: var(--rep-narrow);
  font-size: 17px;
}

.rep-hall-card > footer {
  padding: 0 18px 17px;
}

.rep-hall-card > footer a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  margin-top: 13px;
  padding: 0 13px;
  color: var(--rep-ink);
  background: #f1eee8;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.rep-hall-card > footer a:hover,
.rep-hall-card > footer a:focus-visible {
  color: var(--rep-white);
  background: var(--rep-ink);
}

.rep-hall-empty {
  padding: 46px;
  text-align: center;
  background: var(--rep-white);
  border: 1px solid var(--rep-line);
  border-radius: 14px;
}

.rep-hall-empty strong {
  font-family: var(--rep-narrow);
  font-size: 32px;
  text-transform: uppercase;
}

.rep-hall-empty p {
  margin-bottom: 0;
  color: var(--rep-muted);
}

.rep-competition-card p {
  max-width: 680px;
  margin: 0;
  font-size: 14px;
}

.rep-competition-disciplines {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: flex-end;
}

.rep-competition-disciplines span {
  display: inline-flex;
  min-height: 22px;
  padding: 3px 7px;
  align-items: center;
  background: var(--rep-blue);
  border: 1px solid var(--rep-blue);
  border-radius: 999px;
  color: var(--rep-white);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rep-competition-disciplines .is-ranking {
  background: #62c9dd;
  border-color: #62c9dd;
  color: var(--rep-ink);
}

.rep-competition-disciplines .is-fantasy {
  background: var(--rep-yellow);
  border-color: var(--rep-yellow);
  color: var(--rep-ink);
}

.rep-competition-card dl {
  display: grid;
  grid-area: facts;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-self: end;
  min-width: 150px;
  margin: 0;
}

.rep-competition-card dt {
  color: var(--rep-muted);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.rep-competition-card dd {
  margin: 0;
  font-family: var(--rep-narrow);
  font-size: 27px;
  font-weight: 900;
}

.rep-competition-card footer {
  display: flex;
  grid-area: footer;
  gap: 10px;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid var(--rep-line);
}

.rep-competition-card--running footer {
  border-color: #3e3e3c;
}

.rep-competition-card footer a {
  display: inline-flex;
  min-height: 36px;
  padding: 8px 11px;
  align-items: center;
  justify-content: center;
  background: #f2f0eb;
  border: 1px solid #c9c6bf;
  border-radius: 8px;
  color: var(--rep-ink);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 150ms ease, border-color 150ms ease, color 150ms ease;
}

.rep-competition-card--running footer a {
  background: rgb(255 255 255 / 5%);
  border-color: #5a5a57;
  color: var(--rep-white);
}

.rep-competition-card footer a:hover {
  background: var(--rep-red);
  border-color: var(--rep-red);
  color: var(--rep-white);
}

.rep-competition-card footer .rep-competition-primary {
  margin-right: auto;
  background: var(--rep-ink);
  border-color: var(--rep-ink);
  color: var(--rep-white);
}

.rep-competition-card--running footer .rep-competition-primary {
  background: var(--rep-red);
  border-color: var(--rep-red);
}

.rep-competition-primary span {
  margin-left: 8px;
}

.rep-news-list-hero,
.rep-news-hero {
  padding: 45px 0 42px;
  background: #ebe9e4;
  border-bottom: 1px solid var(--rep-line);
}

.rep-news-list-hero h1,
.rep-news-hero h1 {
  max-width: 950px;
  margin: 5px 0 10px;
  font-family: var(--rep-narrow);
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.94;
  text-transform: uppercase;
}

.rep-news-list-hero p:last-child,
.rep-news-hero > .rep-shell > p:not(.rep-kicker) {
  max-width: 760px;
  margin: 0;
  color: var(--rep-muted);
  font-size: 15px;
  line-height: 1.6;
}

.rep-news-list {
  padding-block: 38px 90px;
}

.rep-news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.rep-news-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  min-height: 242px;
  padding-inline: 16px;
  padding-bottom: 8px;
  background: var(--rep-white);
  border: 1px solid var(--rep-line);
  border-top: 3px solid var(--rep-ink);
  border-radius: 14px;
  flex-direction: column;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.rep-news-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 72px;
  height: 3px;
  background: var(--rep-red);
  content: "";
}

.rep-news-card:hover {
  border-color: #c7c2b8;
  box-shadow: 0 10px 28px rgb(25 25 25 / 8%);
  transform: translateY(-2px);
}

.rep-news-card > header {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--rep-line);
}

.rep-news-card > header span {
  overflow: hidden;
  color: var(--rep-red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.rep-news-card > header time {
  flex: 0 0 auto;
  color: var(--rep-muted);
  font-size: 10px;
  font-weight: 700;
}

.rep-news-card-image {
  display: block;
  overflow: hidden;
  margin-inline: -16px;
  aspect-ratio: 16 / 7;
  background: #efede8;
  border-bottom: 1px solid var(--rep-line);
}

.rep-news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms ease;
}

.rep-news-card:hover .rep-news-card-image img {
  transform: scale(1.025);
}

.rep-news-card-body {
  display: flex;
  min-height: 150px;
  padding: 14px 2px 12px;
  flex: 1;
  flex-direction: column;
}

.rep-news-card-image + .rep-news-card-body {
  min-height: 146px;
}

.rep-news-card-body > small {
  margin-bottom: 7px;
  color: #aaa69e;
  font-family: var(--rep-narrow);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rep-news-card h2 {
  margin: 0 0 8px;
  font-family: var(--rep-narrow);
  font-size: 25px;
  line-height: 1.1;
  text-transform: uppercase;
}

.rep-news-card p {
  margin: 0;
  color: var(--rep-muted);
  font-size: 12px;
  line-height: 1.5;
}

.rep-news-card-link {
  display: flex;
  min-height: 36px;
  margin-top: auto;
  padding-inline: 12px;
  align-items: center;
  justify-content: space-between;
  background: var(--rep-ink);
  border-radius: 8px;
  color: var(--rep-white);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease;
}

.rep-news-card-link span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  background: var(--rep-white);
  border-radius: 50%;
  color: var(--rep-ink);
  font-size: 14px;
  transition: color 160ms ease, transform 160ms ease;
}

.rep-news-card-link:hover {
  background: var(--rep-red);
  color: var(--rep-white);
}

.rep-news-card-link:hover span {
  color: var(--rep-red);
  transform: translateX(2px);
}

.rep-news-back {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--rep-ink);
  font-size: 11px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.rep-news-tags {
  display: flex;
  margin-top: 16px;
  flex-wrap: wrap;
  gap: 6px;
}

.rep-news-tags span {
  padding: 5px 9px;
  background: #dedbd4;
  border-radius: 999px;
  color: #504e49;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}

.rep-news-detail {
  max-width: 960px;
  padding-block: 42px 90px;
}

.rep-news-detail-image {
  display: block;
  width: 100%;
  max-height: 470px;
  margin-bottom: 24px;
  object-fit: cover;
  border-radius: 18px;
}

.rep-news-content {
  padding: clamp(24px, 5vw, 58px);
  background: var(--rep-white);
  border: 1px solid var(--rep-line);
  border-radius: 18px;
  box-shadow: 0 8px 28px rgb(28 27 25 / 6%);
  font-size: 15px;
  line-height: 1.75;
}

.rep-news-content > :first-child {
  margin-top: 0;
}

.rep-news-content > :last-child {
  margin-bottom: 0;
}

.rep-news-content h2,
.rep-news-content h3,
.rep-news-content h4,
.rep-news-content h5 {
  margin: 1.6em 0 0.55em;
  font-family: var(--rep-narrow);
  line-height: 1.1;
  text-transform: uppercase;
}

.rep-news-content h2 { font-size: 34px; }

.rep-news-content h3 { font-size: 28px; }

.rep-news-content h4,
.rep-news-content h5 { font-size: 23px; }

.rep-news-content a {
  color: var(--rep-red);
  font-weight: 800;
}

.rep-news-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 24px auto;
  border-radius: 12px;
}

.rep-news-content table {
  display: block;
  overflow-x: auto;
  width: 100%;
  border-collapse: collapse;
}

.rep-news-content th,
.rep-news-content td {
  padding: 9px 12px;
  border: 1px solid var(--rep-line);
  text-align: left;
}

.rep-news-content blockquote {
  margin: 24px 0;
  padding: 4px 0 4px 20px;
  border-left: 4px solid var(--rep-red);
  color: var(--rep-muted);
}

.rep-news-detail > footer {
  margin-top: 22px;
}

.rep-auth-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 670px;
  padding-block: 72px 100px;
}

.rep-auth-copy {
  padding: 48px 10vw 48px 0;
  border-right: 1px solid var(--rep-line);
}

.rep-auth-copy h1 {
  margin: 0;
  font-family: var(--rep-narrow);
  font-size: clamp(58px, 6.5vw, 94px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.88;
  text-transform: uppercase;
}

.rep-auth-copy > p:not(.rep-kicker) {
  max-width: 590px;
  margin: 32px 0;
  color: var(--rep-muted);
}

.rep-auth-copy dl {
  display: flex;
  gap: 50px;
  margin-top: 48px;
}

.rep-auth-copy dl div {
  max-width: 130px;
}

.rep-auth-copy dt {
  font-family: var(--rep-narrow);
  font-size: 34px;
  font-weight: 900;
}

.rep-auth-copy dd {
  margin: 0;
  color: var(--rep-muted);
  font-size: 11px;
  text-transform: uppercase;
}

.rep-auth-form,
.rep-settings-form,
.rep-account-grid aside {
  align-self: center;
  padding: 48px;
  background: var(--rep-white);
  border-top: 4px solid var(--rep-red);
}

.rep-form-no {
  color: var(--rep-muted);
  font-family: var(--rep-narrow);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.rep-auth-form h2,
.rep-settings-form h2,
.rep-account-grid aside h2 {
  margin: 10px 0 28px;
  font-family: var(--rep-narrow);
  font-size: 32px;
  text-transform: uppercase;
}

.rep-auth-form label,
.rep-settings-form > label:not(.rep-check) {
  display: block;
  margin-bottom: 18px;
  color: var(--rep-muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rep-auth-form input,
.rep-settings-form input[type="password"] {
  width: 100%;
  height: 50px;
  margin-top: 7px;
  padding: 0 14px;
  background: var(--rep-paper);
  border: 1px solid var(--rep-line);
  border-radius: 0;
}

.rep-auth-form input:focus,
.rep-settings-form input:focus,
.rep-score-form input:focus,
.rep-ranking-row input:focus {
  border-color: var(--rep-red);
  outline: 2px solid rgb(200 16 30 / 12%);
}

.rep-form-note,
.rep-settings-form small {
  display: block;
  margin-top: 18px;
  color: var(--rep-muted);
  font-size: 11px;
}

.rep-oauth-button {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.rep-oauth-mark {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  background: var(--rep-white);
  color: var(--rep-red);
  font-family: var(--rep-narrow);
  font-size: 12px;
  font-weight: 900;
}

.rep-auth-unavailable,
.rep-connected-account {
  padding: 18px;
  background: var(--rep-paper);
  border-left: 3px solid var(--rep-red);
}

.rep-auth-unavailable p,
.rep-connected-account span {
  display: block;
  margin: 5px 0 0;
  color: var(--rep-muted);
  font-size: 12px;
}

.rep-local-login {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--rep-line);
}

.rep-local-login summary {
  color: var(--rep-muted);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.rep-local-login form {
  margin-top: 20px;
}

.rep-connected-account {
  margin-bottom: 24px;
}

.rep-account-page,
.rep-empty-page {
  min-height: 650px;
  padding-block: 80px 110px;
}

.rep-account-page > header {
  margin-bottom: 48px;
}

.rep-account-page > header p:last-child,
.rep-empty-page > p:not(.rep-kicker) {
  color: var(--rep-muted);
}

.rep-account-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 30px;
  align-items: start;
}

.rep-settings-form {
  align-self: auto;
}

.rep-check {
  display: flex;
  gap: 12px;
  align-items: center;
  margin: 26px 0;
}

.rep-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--rep-red);
}

.rep-account-grid aside p {
  color: var(--rep-muted);
  font-size: 13px;
}

.rep-text-button {
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--rep-red);
  cursor: pointer;
  font-weight: 800;
}

.rep-contact-page {
  padding-bottom: 100px;
}

.rep-contact-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 70px;
  padding-top: 48px;
}

.rep-contact-grid aside {
  padding: 34px 0;
  border-top: 4px solid var(--rep-ink);
}

.rep-contact-grid aside h2 {
  margin: 10px 0 20px;
  font-family: var(--rep-narrow);
  font-size: 31px;
  text-transform: uppercase;
}

.rep-contact-grid aside p {
  max-width: 420px;
  color: var(--rep-muted);
}

.rep-contact-grid aside a {
  display: block;
  margin-top: 10px;
  color: var(--rep-red);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.rep-contact-form {
  padding: 38px;
  background: var(--rep-white);
  border-top: 4px solid var(--rep-red);
}

.rep-contact-form label {
  display: block;
  margin-bottom: 17px;
  color: var(--rep-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.rep-contact-form input,
.rep-contact-form select,
.rep-contact-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px 14px;
  background: var(--rep-paper);
  border: 1px solid var(--rep-line);
  border-radius: 0;
  color: var(--rep-ink);
  font: 15px var(--rep-body);
  text-transform: none;
}

.rep-contact-form input,
.rep-contact-form select {
  height: 48px;
}

.rep-contact-form textarea {
  resize: vertical;
}

.rep-contact-form input:focus,
.rep-contact-form select:focus,
.rep-contact-form textarea:focus {
  border-color: var(--rep-red);
  outline: 2px solid rgb(200 16 30 / 12%);
}

.rep-honeypot {
  position: absolute;
  left: -10000px;
}

.rep-site-footer {
  background: var(--rep-ink);
  color: var(--rep-white);
}

.rep-site-footer .rep-shell {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  gap: 50px;
  align-items: start;
  padding-block: 58px 34px;
}

.rep-site-footer img {
  width: 210px;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.rep-site-footer p,
.rep-site-footer small {
  color: #8f8d87;
  font-size: 12px;
}

.rep-site-footer nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 28px;
}

.rep-site-footer nav a {
  font-family: var(--rep-narrow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.rep-site-footer small {
  grid-column: 1 / -1;
  padding-top: 26px;
  border-top: 1px solid #363634;
}

@media (max-width: 980px) {
  .rep-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rep-hall-hero-inner {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 30px;
  }

  .rep-fantasy-rounds {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rep-masthead {
    grid-template-columns: 210px 1fr auto;
  }

  .rep-main-nav a {
    padding-inline: 13px;
  }

  .rep-main-nav .rep-mobile-account {
    display: block;
  }

  .rep-account-nav {
    margin-left: 12px;
  }

  .rep-home-hero::after {
    display: none;
  }

  .rep-home-grid {
    grid-template-columns: 1fr 280px;
  }

  .rep-home-intro {
    padding-right: 40px;
  }

  .rep-featured {
    margin-left: 18px;
  }

  .rep-home-columns {
    gap: 40px;
  }

  .rep-home-results {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rep-home-results > article:nth-child(2n) {
    border-right: 0;
  }

  .rep-home-results > article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--rep-line);
  }

  .rep-upcoming-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rep-results-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rep-match-detail-scoreboard {
    grid-template-columns: minmax(0, 1fr) 120px minmax(0, 1fr);
    gap: 16px;
    padding-inline: 22px;
  }

  .rep-match-detail-club {
    font-size: 18px;
  }

  .rep-match-detail-tables {
    grid-template-columns: 1fr;
  }

  .rep-stat-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .rep-auth-copy {
    padding-right: 50px;
  }

  .rep-competition-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .rep-leaderboard-card .rep-table-wrap {
    overflow: visible;
  }

  .rep-leaderboard,
  .rep-leaderboard tbody {
    display: block;
  }

  .rep-leaderboard thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
  }

  .rep-leaderboard tbody tr {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(35px, 60px)) minmax(76px, 1fr) 56px;
    gap: 10px 3px;
    padding: 12px;
    border-bottom: 1px solid var(--rep-line);
  }

  .rep-leaderboard tbody tr:last-child {
    border-bottom: 0;
  }

  .rep-leaderboard-card .rep-leaderboard .is-current-user {
    background: #ffe8eb;
    box-shadow: inset 3px 0 0 var(--rep-red);
  }

  .rep-leaderboard-card .rep-leaderboard tbody tr > td {
    min-width: 0;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    white-space: normal;
  }

  .rep-leaderboard .rep-leaderboard-person {
    grid-column: 1 / -1;
    order: 1;
  }

  .rep-leaderboard .rep-leaderboard-tipper > div:first-child {
    min-height: 34px;
    padding-inline: 39px 68px;
    font-size: 13px;
    line-height: 1.3;
  }

  .rep-leaderboard-tipper strong {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .rep-leaderboard .rep-completion-flags {
    gap: 3px;
    margin-top: 7px;
  }

  .rep-leaderboard .rep-completion-flag {
    padding-right: 5px;
    gap: 3px;
  }

  .rep-leaderboard .rep-rank {
    position: absolute;
    top: 13px;
    left: 12px;
    width: auto;
  }

  .rep-leaderboard .rep-total {
    position: absolute;
    top: 10px;
    right: 12px;
    text-align: center;
  }

  .rep-leaderboard .rep-total > span {
    min-width: 52px;
    min-height: 27px;
    padding: 2px 6px;
    background: transparent;
    color: var(--rep-ink);
    font-size: 26px;
    line-height: 1;
  }

  .rep-leaderboard td[data-label]::before {
    display: block;
    margin-bottom: 3px;
    color: var(--rep-muted);
    font-family: var(--rep-body);
    font-size: 9px;
    font-weight: 700;
    line-height: 1.2;
    content: attr(data-label);
  }

  .rep-leaderboard-card .rep-leaderboard tbody tr > .rep-leaderboard-score {
    order: 2;
    width: auto;
    padding: 7px 0;
    background: #f2f3f5;
    border: 1px solid #e5e7eb;
    border-radius: 7px;
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.5;
  }

  .rep-leaderboard-card .rep-leaderboard tbody tr > .rep-leaderboard-score[data-label="Fantasy"] {
    background: #fff8d9;
    border-color: #eddda0;
    color: #594600;
  }

  .rep-leaderboard td.rep-leaderboard-score::before {
    font-size: 8px;
  }

  .rep-leaderboard .rep-hitline {
    order: 3;
    place-self: center end;
  }

  .rep-leaderboard .rep-leaderboard-action-column {
    width: auto;
    order: 4;
    align-self: center;
  }

  .rep-leaderboard .rep-hitline b,
  .rep-leaderboard .rep-hitline span,
  .rep-leaderboard .rep-hitline i,
  .rep-leaderboard .rep-hitline em {
    min-width: 17px;
    height: 23px;
    margin-right: 2px;
    font-size: 10px;
  }

  .rep-leaderboard .rep-hitline::before {
    content: "Trefy 3/2/1/0";
  }

  .rep-leaderboard .rep-leaderboard-score[data-label="Pořadí týmů"]::before {
    content: "Pořadí";
  }

  .rep-leaderboard .rep-leaderboard-score-value {
    display: inline;
    width: auto;
    min-width: 0;
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: inherit;
  }

  .rep-leaderboard .rep-leaderboard-action-full {
    display: none;
  }

  .rep-leaderboard .rep-leaderboard-action-short {
    display: inline;
  }

  .rep-leaderboard td .rep-leaderboard-action {
    width: 100%;
    min-height: 44px;
    padding: 7px 4px;
    background: var(--rep-red);
    border: 1px solid var(--rep-red);
    border-radius: 8px;
    box-shadow: 0 2px 3px #00000012;
    font-size: 10px;
    line-height: 1.3;
    white-space: normal;
  }

  .rep-leaderboard td .rep-leaderboard-action::after {
    margin-left: 4px;
    font-size: 16px;
    content: "›";
  }

  .rep-leaderboard td .rep-leaderboard-action:hover,
  .rep-leaderboard td .rep-leaderboard-action:focus-visible {
    background: #a30819;
    border-color: #a30819;
  }

  .rep-hall-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: 0;
    padding-block: 48px 34px;
  }

  .rep-hall-hero h1 {
    font-size: clamp(54px, 18vw, 78px);
  }

  .rep-hall-hero-inner > div > p:last-child {
    margin-top: 18px;
  }

  .rep-hall-hero dl {
    grid-template-columns: 1fr 1fr;
  }

  .rep-hall-grid {
    grid-template-columns: 1fr;
  }

  .rep-hall-page {
    padding-block: 30px 70px;
  }

  .rep-upcoming-list {
    grid-template-columns: 1fr;
  }

  .rep-fantasy-rounds {
    grid-template-columns: 1fr;
  }

  .rep-leaderboard-podium {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .rep-leaderboard-podium article {
    min-height: 74px;
    padding-block: 11px;
  }

  .rep-tipper-overview-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .rep-tipper-overview-points {
    justify-content: flex-start;
  }

  .rep-fantasy-round-meta,
  .rep-fantasy-dialog-budget {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .rep-fantasy-player-list {
    grid-template-columns: 1fr;
  }

  .rep-fantasy-rules .is-scoring {
    width: 100%;
    margin-left: 0;
  }

  .rep-shell {
    width: min(calc(100% - 30px), var(--rep-shell));
  }

  .rep-topline-inner span {
    display: none;
  }

  .rep-topline-inner {
    justify-content: flex-end;
  }

  .rep-masthead {
    position: relative;
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .rep-brand img {
    width: 185px;
    height: 42px;
  }

  .rep-nav-toggle {
    display: inline-flex;
    min-width: 88px;
    min-height: 38px;
    gap: 9px;
    padding: 0 13px;
    align-items: center;
    justify-content: center;
    appearance: none;
    background: var(--rep-white);
    border: 1px solid rgb(255 255 255 / 55%);
    border-radius: 999px;
    box-shadow: 0 4px 12px rgb(25 25 25 / 18%);
    color: var(--rep-ink);
    cursor: pointer;
    font-family: var(--rep-narrow);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    -webkit-tap-highlight-color: transparent;
  }

  .rep-nav-toggle i,
  .rep-nav-toggle i::before,
  .rep-nav-toggle i::after {
    width: 16px;
    height: 2px;
    background: currentcolor;
    border-radius: 999px;
    content: "";
    transition: transform 160ms ease, opacity 160ms ease;
  }

  .rep-nav-toggle i {
    position: relative;
    display: block;
  }

  .rep-nav-toggle i::before,
  .rep-nav-toggle i::after {
    position: absolute;
    left: 0;
  }

  .rep-nav-toggle i::before {
    top: -5px;
  }

  .rep-nav-toggle i::after {
    top: 5px;
  }

  .rep-nav-toggle[aria-expanded="true"] {
    background: var(--rep-yellow);
    border-color: var(--rep-yellow);
  }

  .rep-nav-toggle[aria-expanded="true"] i {
    background: transparent;
  }

  .rep-nav-toggle[aria-expanded="true"] i::before {
    top: 0;
    transform: rotate(45deg);
  }

  .rep-nav-toggle[aria-expanded="true"] i::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .rep-nav-toggle:hover,
  .rep-nav-toggle:focus-visible {
    background: var(--rep-yellow);
    border-color: var(--rep-yellow);
    outline: none;
  }

  .rep-main-nav {
    position: absolute;
    z-index: 30;
    top: 76px;
    right: -15px;
    left: -15px;
    display: none;
    align-self: auto;
    background: var(--rep-ink);
  }

  .rep-main-nav.is-open {
    display: grid;
  }

  .rep-main-nav a {
    display: block;
    padding: 18px 24px;
    color: var(--rep-white);
    border-bottom: 1px solid #373735;
  }

  .rep-main-nav a::after {
    display: none;
  }

  .rep-account-nav {
    display: none;
  }

  .rep-notice {
    align-items: start;
    flex-direction: column;
  }

  .rep-home-grid {
    display: block;
    min-height: 0;
  }

  .rep-home-hero {
    min-height: 410px;
    background-position: 62% center;
  }

  .rep-home-hero::before {
    background: rgb(13 19 27 / 84%);
    clip-path: polygon(0 0, 92% 0, 76% 100%, 0 100%);
  }

  .rep-home-intro {
    max-width: 88%;
    padding: 48px 0 108px;
  }

  .rep-home-intro::before {
    display: none;
  }

  .rep-home-intro h1 {
    font-size: clamp(45px, 13.2vw, 60px);
    line-height: 0.9;
  }

  .rep-featured {
    display: none;
  }

  .rep-section-head {
    display: block;
  }

  .rep-section-head > p,
  .rep-section-head > a {
    display: block;
    margin-top: 12px;
  }

  .rep-home-score {
    margin-top: -58px;
    margin-bottom: 28px;
  }

  .rep-home-results,
  .rep-home-columns {
    grid-template-columns: 1fr;
  }

  .rep-home-results > article {
    border-right: 0;
    border-bottom: 1px solid var(--rep-line);
  }

  .rep-home-results > article:last-child {
    border-bottom: 0;
  }

  .rep-home-columns {
    gap: 55px;
    padding-bottom: 50px;
  }

  .rep-home-columns--current {
    padding-bottom: 18px;
  }

  .rep-home-news-section {
    padding-bottom: 65px;
  }

  .rep-competition-head-grid {
    display: block;
    min-height: 0;
    padding-block: 34px 28px;
  }

  .rep-competition-head h1 {
    font-size: 44px;
  }

  .rep-competition-facts {
    margin-top: 38px;
  }

  .rep-subnav-bar {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    margin: 0;
  }

  .rep-subnav {
    width: 100%;
    min-width: 0;
    margin-left: 0;
    padding-inline: 15px;
    overflow-x: auto;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
  }

  .rep-subnav::-webkit-scrollbar {
    display: none;
  }

  .rep-subnav a {
    flex: 0 0 auto;
    padding: 13px 0 12px;
    margin-right: 20px;
  }

  .rep-subnav a[aria-current="page"]::after {
    right: 0;
  }

  .rep-competition-switch {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    padding-inline: 15px;
    margin-right: 0;
    box-shadow: inset 0 3px 0 var(--rep-red);
  }

  .rep-competition-switch strong {
    max-width: none;
  }

  .rep-competition-switch i {
    width: 22px;
    height: 22px;
  }

  .rep-competition-dialog > header {
    min-height: 98px;
    padding: 21px 20px 18px;
  }

  .rep-competition-dialog h2 {
    font-size: 30px;
  }

  .rep-competition-dialog > footer {
    padding-inline: 20px;
  }

  .rep-competition-body {
    padding-block: 38px 60px;
  }

  .rep-callout,
  .rep-callout div {
    align-items: stretch;
    flex-direction: column;
  }

  .rep-empty {
    grid-template-columns: 75px 1fr;
    gap: 18px;
    padding: 28px 18px;
  }

  .rep-empty > span {
    font-size: 62px;
  }

  .rep-upcoming-card > header {
    min-height: 50px;
  }

  .rep-upcoming-time {
    max-width: none;
  }

  .rep-upcoming-matchup {
    min-height: 128px;
  }

  .rep-upcoming-club {
    padding: 10px 14px;
  }

  .rep-upcoming-logo {
    width: 50px;
    height: 50px;
  }

  .rep-upcoming-logo img {
    width: 46px;
    height: 46px;
  }

  .rep-upcoming-club strong {
    font-size: 15px;
  }

  .rep-upcoming-tip {
    display: block;
    min-height: 0;
    padding: 10px 13px 12px;
  }

  .rep-upcoming-tip-copy {
    margin-bottom: 5px;
  }

  .rep-score-form {
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) 10px minmax(0, 1fr) 70px;
  }

  .rep-score-form input {
    width: 100%;
    height: 46px;
  }

  .rep-score-form b {
    padding-bottom: 13px;
  }

  .rep-score-form button {
    grid-column: auto;
    min-height: 46px;
    margin-top: 0;
  }

  .rep-ranking-private {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 18px;
  }

  .rep-ranking-private > span {
    width: 48px;
    height: 48px;
  }

  .rep-ranking-private > a {
    grid-column: 1 / -1;
    justify-self: stretch;
    text-align: center;
  }

  .rep-ranking-card-head {
    min-height: 74px;
    padding: 13px 15px;
  }

  .rep-ranking-card-head h2 {
    font-size: 22px;
  }

  .rep-ranking-card-head > span {
    max-width: 92px;
    justify-content: center;
    text-align: center;
  }

  .rep-ranking-summary > div {
    min-height: 58px;
    padding: 9px;
  }

  .rep-ranking-card.is-evaluated .rep-ranking-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rep-ranking-card.is-evaluated .rep-ranking-summary > div {
    border-bottom: 1px solid var(--rep-line);
  }

  .rep-ranking-card.is-evaluated .rep-ranking-summary > div:nth-child(2n) {
    border-right: 0;
  }

  .rep-ranking-card.is-evaluated .rep-ranking-summary > div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .rep-ranking-summary strong {
    font-size: 15px;
  }

  .rep-ranking-list {
    grid-template-columns: 1fr;
    padding: 8px;
  }

  .rep-ranking-row {
    grid-template-columns: 22px 32px minmax(0, 1fr) auto;
    gap: 7px;
    padding-inline: 8px;
  }

  .rep-ranking-controls {
    grid-template-columns: auto repeat(3, 34px);
  }

  .rep-ranking-position {
    grid-template-columns: auto 46px;
  }

  .rep-ranking-position input {
    width: 46px;
  }

  .rep-ranking-controls button {
    width: 34px;
    height: 36px;
  }

  .rep-ranking-drag {
    width: 34px;
    height: 36px;
  }

  .rep-ranking-result {
    gap: 4px;
  }

  .rep-ranking-result > span {
    min-width: 35px;
  }

  .rep-ranking-result strong {
    font-size: 18px;
  }

  .rep-ranking-result em {
    min-width: 37px;
    padding-inline: 4px;
  }

  .rep-form-footer {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .rep-ranking-save-actions {
    justify-content: space-between;
  }

  .rep-ranking-save-actions .rep-button {
    flex: 0 0 auto;
  }

  .rep-results-list {
    grid-template-columns: 1fr;
  }

  .rep-match-detail-scoreboard {
    grid-template-columns: minmax(0, 1fr) 88px minmax(0, 1fr);
    gap: 8px;
    min-height: 128px;
    padding-inline: 10px;
  }

  .rep-match-detail-club,
  .rep-match-detail-club:last-child {
    gap: 7px;
    justify-content: center;
    flex-direction: column;
    font-size: 13px;
    text-align: center;
  }

  .rep-match-detail-club:last-child .rep-match-detail-logo {
    order: 0;
  }

  .rep-match-detail-logo {
    width: 52px;
    height: 52px;
  }

  .rep-match-detail-logo img {
    width: 43px;
    height: 43px;
  }

  .rep-match-detail-score {
    padding-inline: 9px;
  }

  .rep-match-detail-score strong {
    gap: 5px;
    font-size: 36px;
  }

  .rep-match-tip-metrics > div {
    min-width: 0;
    min-height: 70px;
    padding: 12px 7px;
  }

  .rep-match-tip-metrics strong {
    font-size: 23px;
  }

  .rep-match-tip-metrics span {
    font-size: 8px;
  }

  .rep-match-detail-tables {
    grid-template-columns: 1fr;
  }

  .rep-stat-score {
    grid-template-columns: 1fr;
    gap: 7px;
    padding: 24px;
    text-align: center;
  }

  .rep-stat-score span:last-child {
    text-align: center;
  }

  .rep-stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .rep-stat-grid > div {
    min-height: 110px;
  }

  .rep-stat-highlights {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .rep-stat-highlight {
    min-height: 124px;
    padding: 14px 16px;
  }

  .rep-stat-highlight strong {
    font-size: 30px;
  }

  .rep-stat-highlight em {
    padding-top: 10px;
  }

  .rep-statistics-card > header,
  .rep-statistics-disclosure > summary {
    min-height: 68px;
    padding: 12px 14px;
  }

  .rep-statistics-card > header h2,
  .rep-statistics-disclosure > summary h2 {
    font-size: 23px;
  }

  .rep-statistics-disclosure > summary > span {
    display: none;
  }

  .rep-statistics-disclosure > summary > b .is-closed,
  .rep-statistics-disclosure > summary > b .is-open {
    display: none;
  }

  .rep-statistics-disclosure > summary > b {
    width: 34px;
    padding: 0;
    justify-content: center;
  }

  .rep-tipper-statistics {
    min-width: 630px;
  }

  .rep-season-player-note {
    display: block;
  }

  .rep-season-player-note p {
    margin-top: 7px;
  }

  .rep-prose {
    padding: 28px 22px;
    font-size: 15px;
  }

  .rep-page-title {
    display: block;
    padding: 58px 0 35px;
  }

  .rep-page-title > p:last-child {
    margin-top: 20px;
  }

  .rep-competition-card {
    grid-template-areas:
      "header"
      "copy"
      "facts"
      "footer";
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 16px;
  }

  .rep-competition-card h2 {
    font-size: 31px;
  }

  .rep-competition-card dl {
    place-self: auto start;
  }

  .rep-competition-card footer {
    flex-wrap: wrap;
  }

  .rep-competition-card footer .rep-competition-primary {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin: 0;
  }

  .rep-news-grid {
    grid-template-columns: 1fr;
  }

  .rep-news-grid article {
    min-height: 0;
    border-right: 0;
  }

  .rep-news-grid article > span {
    margin-bottom: 25px;
  }

  .rep-auth-layout {
    display: block;
    padding-block: 45px 70px;
  }

  .rep-auth-copy {
    padding: 20px 0 48px;
    border-right: 0;
  }

  .rep-auth-copy h1 {
    font-size: 58px;
  }

  .rep-auth-copy dl {
    gap: 30px;
  }

  .rep-auth-form,
  .rep-settings-form,
  .rep-account-grid aside {
    padding: 30px 22px;
  }

  .rep-account-grid {
    grid-template-columns: 1fr;
  }

  .rep-contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .rep-contact-form {
    padding: 28px 20px;
  }

  .rep-site-footer .rep-shell {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .rep-site-footer small {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
