:root {
  --ff-red: #1b4d8a;
  --ff-red-deep: #0a1830;
  --ff-black: #0a1120;
  --ff-paper: #f2f5fa;
  --ff-white: #fff;
  --ff-ink-soft: #4a5670;
  --ff-line: rgba(255, 255, 255, .36);
  --ff-line-dark: rgba(9, 9, 9, .14);
  --ff-display: "Archivo Black", Impact, sans-serif;
  --ff-body: "DM Sans", Arial, sans-serif;
  --ff-mono: "Roboto Mono", monospace;
}

html {
  scroll-behavior: smooth;
}

.ff-home,
.ff-roster {
  min-width: 320px;
  margin: 0;
  color: var(--ff-black);
  background: var(--ff-paper);
  font-family: var(--ff-body);
  line-height: 1.5;
  overflow-x: hidden;
}

.ff-home *,
.ff-roster * {
  box-sizing: border-box;
}

.ff-home a,
.ff-roster a {
  color: inherit;
  text-decoration: none;
}

.ff-home img,
.ff-roster img {
  display: block;
  max-width: 100%;
}

.ff-home button,
.ff-home input,
.ff-roster button,
.ff-roster input {
  font: inherit;
}

.ff-content {
  position: relative;
  width: min(100% - clamp(32px, 9vw, 180px), 1480px);
  margin-inline: auto;
}

.ff-glass {
  border: 1px solid var(--ff-line);
  background: rgba(18, 5, 7, .28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .48), 0 18px 44px rgba(55, 0, 7, .2);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
}

.ff-home :focus-visible,
.ff-roster :focus-visible {
  outline: 3px solid #fff;
  outline-offset: 4px;
}

.ff-roster main :focus-visible,
.ff-home main :focus-visible {
  outline-color: var(--ff-red);
}

.ff-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  width: 100%;
  color: var(--ff-white);
  background: linear-gradient(112deg, var(--ff-red) 0 70%, var(--ff-black) 70%);
  overflow: hidden;
}

.ff-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .17;
  background-image: repeating-linear-gradient(0deg, transparent 0 11px, rgba(255, 255, 255, .12) 12px 13px);
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 75%);
  mask-image: linear-gradient(to bottom, #000, transparent 75%);
}

.ff-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -28%;
  right: 19%;
  width: 1px;
  height: 150%;
  opacity: .35;
  background: #fff;
  transform: rotate(22deg);
}

.ff-orb,
.ff-roster-orb {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, .38), transparent 17%),
    repeating-radial-gradient(circle at 52% 48%, transparent 0 34px, rgba(255, 255, 255, .08) 35px 36px),
    radial-gradient(circle at 67% 70%, rgba(80, 0, 7, .6), rgba(255, 45, 58, .13) 54%, rgba(0, 0, 0, .18));
  box-shadow: inset -28px -38px 70px rgba(0, 0, 0, .3), inset 18px 18px 36px rgba(255, 255, 255, .12), 0 42px 80px rgba(77, 0, 6, .24);
  transform-style: preserve-3d;
  animation: ff-float 11s ease-in-out infinite;
}

.ff-orb-one {
  top: 16%;
  right: 25%;
  width: clamp(150px, 20vw, 340px);
  aspect-ratio: 1;
}

.ff-orb-two {
  bottom: -11%;
  left: -7%;
  width: clamp(190px, 27vw, 450px);
  aspect-ratio: 1;
  opacity: .4;
  animation-delay: -5s;
}

@keyframes ff-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-8deg); }
  50% { transform: translate3d(0, -18px, 0) rotate(3deg); }
}

.ff-public-header,
.ff-roster-header {
  position: relative;
  z-index: 5;
  padding-top: 20px;
}

.ff-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 72px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .36);
}

.ff-brand,
.ff-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.ff-brand img {
  width: 54px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 9px 16px rgba(0, 0, 0, .28));
}

.ff-brand span,
.ff-footer-brand span {
  display: grid;
  line-height: 1.03;
}

.ff-brand b,
.ff-footer-brand b {
  font-family: var(--ff-display);
  font-size: 1rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.ff-brand small,
.ff-footer-brand small {
  margin-top: 6px;
  font-family: var(--ff-mono);
  font-size: .64rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ff-main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2.2vw, 36px);
  min-width: 0;
  font-size: .82rem;
  font-weight: 700;
}

.ff-main-nav a {
  position: relative;
  white-space: nowrap;
}

.ff-main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.ff-main-nav a:hover::after,
.ff-main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.ff-main-nav i {
  margin-left: 5px;
  font-size: .72rem;
}

.ff-instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 11px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .54);
  border-radius: 999px;
  background: rgba(9, 9, 9, .28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15);
  white-space: nowrap;
  transition: transform .25s ease, color .25s ease, background .25s ease, border-color .25s ease;
}

.ff-main-nav .ff-instagram-link::after {
  display: none;
}

.ff-instagram-link i {
  margin: 0;
  font-size: .96rem;
}

.ff-instagram-link:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .85);
  background: var(--ff-black);
  transform: translateY(-2px);
}

.ff-access-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-block: 14px;
}

.ff-access-card {
  display: flex;
  align-items: center;
  gap: 13px;
  min-height: 66px;
  padding: 12px 15px;
  color: #fff;
  border-radius: 16px;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.ff-access-card:hover {
  border-color: rgba(255, 255, 255, .74);
  background: rgba(255, 255, 255, .17);
  transform: translateY(-3px);
}

.ff-access-card > i {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  color: var(--ff-red);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(45, 0, 3, .18);
}

.ff-access-card span {
  display: grid;
  min-width: 0;
}

.ff-access-card b {
  font-size: .84rem;
  line-height: 1.2;
}

.ff-access-card small {
  margin-top: 3px;
  overflow: hidden;
  color: rgba(255, 255, 255, .72);
  font-size: .68rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ff-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  align-items: center;
  gap: clamp(36px, 7vw, 110px);
  min-height: calc(100svh - 190px);
  padding-block: clamp(52px, 8vh, 110px) 90px;
}

.ff-hero-copy {
  position: relative;
  z-index: 2;
}

.ff-eyebrow,
.ff-section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--ff-mono);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ff-eyebrow {
  padding: 8px 11px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
  background: rgba(85, 0, 5, .16);
}

.ff-hero-copy h1,
.ff-roster-hero h1 {
  max-width: 830px;
  margin: 24px 0 20px;
  font-family: var(--ff-display);
  font-size: clamp(3.9rem, 7.4vw, 8.2rem);
  font-weight: 400;
  line-height: .89;
  letter-spacing: -.06em;
  text-transform: uppercase;
  text-wrap: balance;
}

.ff-hero-copy p,
.ff-roster-hero p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.55;
}

.ff-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.ff-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 52px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, color .25s ease, background .25s ease;
}

.ff-button:hover {
  transform: translateY(-3px);
}

.ff-button-light {
  color: #fff;
  border-color: rgba(255, 255, 255, .58);
  background: var(--ff-black);
  box-shadow: 0 16px 36px rgba(35, 0, 4, .32);
}

.ff-button-light:hover {
  background: #270005;
}

.ff-button-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .58);
  background: rgba(20, 0, 2, .12);
}

.ff-button-dark {
  color: #fff;
  background: var(--ff-black);
  box-shadow: 0 14px 32px rgba(9, 9, 9, .2);
}

.ff-roster-cta .ff-button-dark {
  color: #fff !important;
}

.ff-roster-cta .ff-button-dark i {
  color: #fff !important;
  opacity: 1;
}

.ff-crest-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: min(53vw, 640px);
  perspective: 1100px;
}

.ff-crest-stage::before,
.ff-crest-stage::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .18);
  transform: rotate(-12deg) skewY(8deg);
}

.ff-crest-stage::before {
  inset: 12% 5%;
  border-radius: 42% 58% 46% 54%;
  background: linear-gradient(145deg, rgba(255, 255, 255, .16), rgba(0, 0, 0, .18));
  box-shadow: inset 26px 18px 45px rgba(255, 255, 255, .1), 0 42px 80px rgba(0, 0, 0, .22);
}

.ff-crest-stage::after {
  inset: 21% 12%;
  border-radius: 50%;
}

.ff-crest-stage img {
  position: relative;
  z-index: 2;
  width: min(46%, 271px);
  filter: drop-shadow(0 45px 40px rgba(0, 0, 0, .36));
  transform: rotateY(-8deg) rotateX(4deg);
}

.ff-stage-word {
  position: absolute;
  z-index: 1;
  top: 2%;
  right: -8%;
  color: rgba(255, 255, 255, .08);
  font-family: var(--ff-display);
  font-size: clamp(5rem, 11vw, 12rem);
  line-height: 1;
  letter-spacing: -.07em;
  writing-mode: vertical-rl;
}

.ff-stage-label {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 10%;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  color: var(--ff-black);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .24);
  font-family: var(--ff-mono);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

.ff-stage-label i {
  color: var(--ff-red);
}

.ff-scroll-cue {
  position: absolute;
  z-index: 3;
  right: clamp(16px, 4.5vw, 90px);
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .72);
  font-family: var(--ff-mono);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ff-live-rail {
  position: relative;
  z-index: 3;
  padding-block: clamp(58px, 8vw, 105px);
  background: #fff;
}

.ff-live-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.45fr 1fr;
  border: 1px solid var(--ff-line-dark);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(68, 19, 21, .09);
  overflow: hidden;
}

.ff-live-card {
  min-width: 0;
  padding: clamp(26px, 3.4vw, 50px);
}

.ff-live-card + .ff-live-card {
  border-left: 1px solid var(--ff-line-dark);
}

.ff-live-next {
  color: #fff;
  background: var(--ff-red);
}

.ff-live-next .ff-section-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, .15);
  animation: ff-pulse 2s ease-in-out infinite;
}

@keyframes ff-pulse {
  50% { box-shadow: 0 0 0 11px rgba(255, 255, 255, 0); }
}

.ff-live-main {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}

.ff-live-main strong {
  font-family: var(--ff-display);
  font-size: clamp(1.65rem, 2.7vw, 3rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.ff-live-main time,
.ff-live-main span {
  color: rgba(255, 255, 255, .78);
  font-family: var(--ff-mono);
  font-size: .72rem;
  line-height: 1.45;
  letter-spacing: .05em;
}

.ff-card-heading h2 {
  margin: 7px 0 26px;
  font-family: var(--ff-display);
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.ff-result-list {
  display: grid;
}

.ff-result-list > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 12px;
  border-top: 1px solid var(--ff-line-dark);
}

.ff-result-list span {
  display: grid;
  font-size: .84rem;
  font-weight: 700;
}

.ff-result-list time {
  margin-bottom: 3px;
  color: var(--ff-ink-soft);
  font-family: var(--ff-mono);
  font-size: .62rem;
  font-weight: 500;
}

.ff-result-list strong {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  white-space: nowrap;
}

.ff-partners-card {
  background: var(--ff-paper);
}

.ff-partner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ff-partner-list span {
  padding: 8px 10px;
  border: 1px solid var(--ff-line-dark);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
}

.ff-muted {
  margin: 0;
  color: var(--ff-ink-soft);
  font-size: .82rem;
}

.ff-roster-showcase {
  padding-block: clamp(70px, 10vw, 150px);
  background: var(--ff-paper);
}

.ff-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 460px);
  align-items: end;
  gap: 42px;
  margin-bottom: clamp(38px, 6vw, 78px);
}

.ff-section-heading h2,
.ff-categories-intro h2 {
  margin: 10px 0 0;
  font-family: var(--ff-display);
  font-size: clamp(3rem, 6.4vw, 7rem);
  font-weight: 400;
  line-height: .88;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.ff-section-heading > p,
.ff-categories-intro p {
  margin: 0;
  color: var(--ff-ink-soft);
  font-size: clamp(.96rem, 1.25vw, 1.15rem);
  line-height: 1.65;
}

.ff-featured-grid,
.ff-roster-player-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 28px);
}

.ff-player-card,
.ff-roster-player-card {
  position: relative;
  border: 1px solid var(--ff-line-dark);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(42, 12, 14, .07);
  overflow: hidden;
  transition: transform .32s ease, box-shadow .32s ease;
}

.ff-player-card:hover,
.ff-roster-player-card:hover {
  box-shadow: 0 28px 70px rgba(42, 12, 14, .14);
  transform: translateY(-7px);
}

.ff-player-image,
.ff-roster-player-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .1), transparent 40%),
    linear-gradient(132deg, var(--ff-red) 0 66%, var(--ff-black) 66%);
  overflow: hidden;
}

.ff-player-image > img:not(.ff-player-fallback),
.ff-roster-player-photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.ff-player-image::after,
.ff-roster-player-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 36%;
  background: linear-gradient(to top, rgba(9, 9, 9, .52), transparent);
  pointer-events: none;
}

.ff-player-fallback {
  width: 58%;
  height: 58%;
  margin: 22% auto 0;
  object-fit: contain;
  filter: drop-shadow(0 24px 28px rgba(0, 0, 0, .34));
}

.ff-shirt-number,
.ff-roster-number {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ff-red);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .22);
  font-family: var(--ff-display);
  font-size: 1rem;
}

.ff-player-copy,
.ff-roster-player-copy {
  padding: 20px;
}

.ff-player-copy h3,
.ff-roster-player-copy h3 {
  margin: 0;
  font-family: var(--ff-display);
  font-size: clamp(1.05rem, 1.7vw, 1.5rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.ff-player-copy p,
.ff-roster-player-copy p {
  margin: 8px 0 0;
  color: var(--ff-red);
  font-family: var(--ff-mono);
  font-size: .65rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ff-empty-card,
.ff-roster-empty {
  display: grid;
  justify-items: center;
  padding: clamp(42px, 7vw, 86px) 24px;
  text-align: center;
  border: 1px solid var(--ff-line-dark);
  border-radius: 26px;
  background: #fff;
}

.ff-empty-card img,
.ff-roster-empty img {
  width: 95px;
  height: 98px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .42;
}

.ff-empty-card span,
.ff-roster-empty > span {
  margin-top: 24px;
  color: var(--ff-red);
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ff-empty-card h3,
.ff-roster-empty h2 {
  max-width: 700px;
  margin: 10px 0 0;
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.ff-empty-card p,
.ff-roster-empty p {
  margin: 13px 0 0;
  color: var(--ff-ink-soft);
}

.ff-roster-empty .ff-button {
  margin-top: 25px;
}

.ff-roster-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--ff-line-dark);
}

.ff-roster-cta p {
  margin: 0;
  color: var(--ff-ink-soft);
}

.ff-categories {
  color: #fff;
  background: var(--ff-red);
}

.ff-categories-layout {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(45px, 9vw, 140px);
  padding-block: clamp(70px, 10vw, 150px);
}

.ff-categories-intro {
  align-self: start;
  position: sticky;
  top: 30px;
}

.ff-categories-intro p {
  margin-top: 26px;
  color: rgba(255, 255, 255, .75);
}

.ff-category-list {
  display: grid;
}

.ff-category-list a {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 18px;
  padding-block: clamp(18px, 2.5vw, 32px);
  border-top: 1px solid rgba(255, 255, 255, .38);
  transition: padding-left .25s ease, background .25s ease;
}

.ff-category-list a:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .38);
}

.ff-category-list a:hover {
  padding-left: 12px;
  background: rgba(90, 0, 6, .12);
}

.ff-category-list span {
  font-family: var(--ff-mono);
  font-size: .65rem;
  opacity: .68;
}

.ff-category-list strong {
  font-family: var(--ff-display);
  font-size: clamp(1.35rem, 3vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -.04em;
  text-transform: uppercase;
}

.ff-stories {
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 90% 0, rgba(227, 6, 19, .2), transparent 28%),
    var(--ff-black);
  padding-block: clamp(70px, 10vw, 145px);
}

.ff-section-heading-light > p {
  color: rgba(255, 255, 255, .62);
}

.ff-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ff-story-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 280px;
  padding: 25px;
  border-radius: 22px;
  overflow: hidden;
  transition: transform .28s ease, border-color .28s ease;
}

.ff-story-card::before {
  content: "";
  position: absolute;
  top: -55px;
  right: -46px;
  width: 160px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  box-shadow: inset -24px -20px 46px rgba(0, 0, 0, .2);
}

.ff-story-card:hover {
  border-color: rgba(255, 255, 255, .78);
  transform: translateY(-6px);
}

.ff-story-card span {
  color: rgba(255, 255, 255, .65);
  font-family: var(--ff-mono);
  font-size: .65rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ff-story-card h3 {
  max-width: 330px;
  margin: 10px 40px 0 0;
  font-family: var(--ff-display);
  font-size: clamp(1.45rem, 2.7vw, 2.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.ff-story-card > i {
  position: absolute;
  right: 25px;
  bottom: 27px;
}

.ff-footer {
  padding-top: 50px;
  color: #fff;
  background: var(--ff-black);
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.ff-footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding-bottom: 42px;
}

.ff-footer-brand img {
  width: auto;
  height: 74px;
  padding: 0;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

.ff-footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 28px;
  color: rgba(255, 255, 255, .72);
  font-size: .76rem;
  font-weight: 700;
}

.ff-footer-main nav a:hover {
  color: #fff;
}

.ff-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
  color: rgba(255, 255, 255, .44);
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-family: var(--ff-mono);
  font-size: .61rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Página de elencos */
.ff-roster-header {
  color: #fff;
  background: var(--ff-black);
}

.ff-roster-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 31%;
  height: 4px;
  background: var(--ff-red);
}

.ff-roster-header .ff-access-card {
  background: rgba(255, 255, 255, .07);
}

.ff-roster-hero {
  position: relative;
  isolation: isolate;
  min-height: 62svh;
  color: #fff;
  background: linear-gradient(112deg, var(--ff-red) 0 70%, var(--ff-black) 70%);
  overflow: hidden;
}

.ff-roster-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .15;
  background: repeating-linear-gradient(0deg, transparent 0 13px, rgba(255, 255, 255, .14) 14px 15px);
}

.ff-roster-orb {
  right: 19%;
  bottom: -34%;
  width: min(38vw, 560px);
  aspect-ratio: 1;
}

.ff-roster-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .48fr);
  align-items: center;
  gap: 50px;
  min-height: 62svh;
  padding-block: clamp(58px, 8vw, 110px);
}

.ff-roster-hero h1 {
  max-width: 1000px;
  font-size: clamp(4.2rem, 10vw, 9.5rem);
}

.ff-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-family: var(--ff-mono);
  font-size: .66rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ff-back-link:hover i {
  transform: translateX(-4px);
}

.ff-back-link i {
  transition: transform .2s ease;
}

.ff-roster-emblem {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 400px;
  perspective: 1000px;
}

.ff-roster-emblem::before {
  content: "";
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 44% 56% 48% 52%;
  background: linear-gradient(145deg, rgba(255, 255, 255, .15), rgba(0, 0, 0, .24));
  box-shadow: inset 22px 22px 40px rgba(255, 255, 255, .08), 0 40px 70px rgba(0, 0, 0, .24);
  transform: rotate(-9deg) rotateY(-8deg);
}

.ff-roster-emblem img {
  position: relative;
  z-index: 2;
  width: min(47%, 190px);
  filter: drop-shadow(0 34px 32px rgba(0, 0, 0, .38));
  transform: rotateY(-8deg);
}

.ff-roster-emblem > span {
  position: absolute;
  z-index: 1;
  top: 4%;
  right: -9%;
  color: rgba(255, 255, 255, .1);
  font-family: var(--ff-display);
  font-size: clamp(5rem, 9vw, 10rem);
  letter-spacing: -.07em;
  writing-mode: vertical-rl;
}

.ff-alert {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 24px;
  padding: 14px 17px;
  border: 1px solid;
  border-radius: 14px;
  font-size: .82rem;
  font-weight: 700;
}

.ff-alert-success {
  color: #0c6f3d;
  border-color: rgba(12, 111, 61, .24);
  background: #eaf8f0;
}

.ff-alert-error {
  color: #9d0610;
  border-color: rgba(157, 6, 16, .24);
  background: #fff0f1;
}

.ff-roster-categories {
  padding-block: clamp(54px, 7vw, 100px);
  background: #fff;
}

.ff-roster-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}

.ff-roster-section-head h2 {
  margin: 7px 0 0;
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.ff-roster-section-head > span {
  color: var(--ff-ink-soft);
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ff-roster-category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ff-roster-category-grid a {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto 18px;
  align-items: center;
  gap: 15px;
  min-height: 92px;
  padding: 15px 18px;
  border: 1px solid var(--ff-line-dark);
  border-radius: 18px;
  background: var(--ff-paper);
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.ff-roster-category-grid a:hover,
.ff-roster-category-grid a.active {
  color: #fff;
  background: var(--ff-red);
  transform: translateY(-3px);
}

.ff-category-index,
.ff-category-count {
  font-family: var(--ff-mono);
  font-size: .67rem;
}

.ff-roster-category-grid a > span:nth-child(2) {
  display: grid;
}

.ff-roster-category-grid small {
  color: var(--ff-ink-soft);
  font-size: .62rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ff-roster-category-grid a:hover small,
.ff-roster-category-grid a.active small {
  color: rgba(255, 255, 255, .72);
}

.ff-roster-category-grid strong {
  font-family: var(--ff-display);
  font-size: 1.18rem;
  font-weight: 400;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.ff-category-count {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  color: var(--ff-red);
}

.ff-roster-content {
  padding-block: clamp(55px, 8vw, 120px);
  background: var(--ff-paper);
}

.ff-admin-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
  padding: 15px 17px;
  color: #fff;
  border-radius: 16px;
  background: rgba(9, 9, 9, .88);
}

.ff-admin-bar > span,
.ff-admin-bar > span > span {
  display: flex;
  align-items: center;
  gap: 11px;
}

.ff-admin-bar > span > span {
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
}

.ff-admin-bar small {
  color: rgba(255, 255, 255, .62);
  font-size: .68rem;
}

.ff-admin-bar > a {
  flex: 0 0 auto;
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--ff-black);
  background: #fff;
  font-size: .72rem;
  font-weight: 800;
}

.ff-position-group + .ff-position-group {
  margin-top: clamp(65px, 9vw, 125px);
}

.ff-position-heading {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: end;
  gap: 18px;
  margin-bottom: 27px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--ff-line-dark);
}

.ff-position-heading > span,
.ff-position-heading em {
  color: var(--ff-red);
  font-family: var(--ff-mono);
  font-size: .67rem;
  font-style: normal;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ff-position-heading h2 {
  margin: 0;
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5.5vw, 6rem);
  font-weight: 400;
  line-height: .86;
  letter-spacing: -.06em;
  text-transform: uppercase;
}

.ff-roster-player-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ff-roster-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  height: 100%;
}

.ff-roster-placeholder img {
  width: 54%;
  max-height: 58%;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(0, 0, 0, .34));
}

.ff-roster-placeholder span {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, .74);
  font-family: var(--ff-mono);
  font-size: .6rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .ff-main-nav {
    gap: 15px;
    overflow-x: auto;
  }

  .ff-hero-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  }

  .ff-roster-player-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  .ff-topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .ff-main-nav {
    justify-content: flex-start;
    width: 100%;
    padding-bottom: 7px;
  }

  .ff-access-card small {
    white-space: normal;
  }

  .ff-hero-layout {
    grid-template-columns: 1fr;
  }

  .ff-hero-copy {
    padding-top: 24px;
  }

  .ff-crest-stage {
    min-height: 480px;
  }

  .ff-crest-stage img {
    width: min(32.8vw, 246px);
  }

  .ff-live-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ff-live-next {
    grid-column: 1 / -1;
  }

  .ff-results-card {
    border-left: 0 !important;
  }

  .ff-roster-hero-grid {
    grid-template-columns: minmax(0, 1fr) 280px;
  }

  .ff-featured-grid,
  .ff-roster-player-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .ff-content {
    width: min(100% - 28px, 1480px);
  }

  .ff-public-header,
  .ff-roster-header {
    padding-top: 12px;
  }

  .ff-brand img {
    width: 46px;
    height: 48px;
  }

  .ff-access-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ff-access-card {
    min-height: 58px;
    border-radius: 14px;
  }

  .ff-hero {
    background: linear-gradient(156deg, var(--ff-red) 0 77%, var(--ff-black) 77%);
  }

  .ff-hero-layout {
    min-height: auto;
    gap: 14px;
    padding-block: 46px 105px;
  }

  .ff-hero-copy h1,
  .ff-roster-hero h1 {
    margin-top: 20px;
    font-size: clamp(3.35rem, 16vw, 5.6rem);
    line-height: .89;
  }

  .ff-hero-actions,
  .ff-roster-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .ff-button {
    width: 100%;
  }

  .ff-crest-stage {
    min-height: 360px;
  }

  .ff-crest-stage::before {
    inset: 9% 13%;
  }

  .ff-crest-stage img {
    width: min(44vw, 208px);
  }

  .ff-stage-label {
    right: 6%;
  }

  .ff-scroll-cue {
    right: 14px;
  }

  .ff-live-grid {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .ff-live-card,
  .ff-live-next {
    grid-column: auto;
  }

  .ff-live-card + .ff-live-card {
    border-top: 1px solid var(--ff-line-dark);
    border-left: 0;
  }

  .ff-section-heading,
  .ff-categories-layout {
    grid-template-columns: 1fr;
  }

  .ff-section-heading {
    gap: 25px;
  }

  .ff-featured-grid,
  .ff-roster-player-grid,
  .ff-story-grid,
  .ff-roster-category-grid {
    grid-template-columns: 1fr;
  }

  .ff-player-card,
  .ff-roster-player-card {
    display: grid;
    grid-template-columns: minmax(130px, 42%) 1fr;
    min-height: 190px;
  }

  .ff-player-image,
  .ff-roster-player-photo {
    height: 100%;
    min-height: 190px;
    aspect-ratio: auto;
  }

  .ff-player-copy,
  .ff-roster-player-copy {
    align-self: end;
    padding: 18px;
  }

  .ff-player-fallback {
    width: 70%;
    height: 70%;
    margin-top: 16%;
  }

  .ff-categories-layout {
    gap: 42px;
  }

  .ff-categories-intro {
    position: static;
  }

  .ff-footer-main,
  .ff-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .ff-footer-main nav {
    justify-content: flex-start;
  }

  .ff-roster-hero {
    background: linear-gradient(156deg, var(--ff-red) 0 77%, var(--ff-black) 77%);
  }

  .ff-roster-hero-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ff-roster-emblem {
    min-height: 320px;
  }

  .ff-roster-emblem img {
    width: min(43vw, 170px);
  }

  .ff-roster-section-head,
  .ff-admin-bar {
    align-items: flex-start;
    flex-direction: column;
  }

  .ff-position-heading {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .ff-position-heading em {
    grid-column: 2;
  }

  .ff-dialog-body {
    grid-template-columns: 1fr;
  }

  .ff-dialog-photo {
    max-width: 210px;
    margin-inline: auto;
  }
}

@media (max-width: 470px) {
  .ff-main-nav a {
    font-size: .74rem;
  }

  .ff-eyebrow {
    font-size: .58rem;
  }

  .ff-player-card,
  .ff-roster-player-card {
    grid-template-columns: 1fr;
  }

  .ff-player-image,
  .ff-roster-player-photo {
    min-height: 320px;
  }

  .ff-roster-category-grid a {
    grid-template-columns: 31px minmax(0, 1fr) auto 14px;
    gap: 10px;
    padding-inline: 13px;
  }

  .ff-story-card {
    min-height: 230px;
  }

  .ff-dialog-actions {
    flex-direction: column-reverse;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .ff-home *, .ff-roster * { animation: none !important; transition: none !important; }
}

/* =====================================================================
   Páginas públicas de calendário, estatísticas e perfil de atleta
   Reutiliza os tokens --ff-* e os componentes .ff-content / .ff-position-*
   ===================================================================== */

/* Item de navegação da página atual */
.ff-main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Cards de atleta agora são links — não podem parecer texto de link */
a.ff-player-card,
a.ff-roster-player-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

a.ff-player-card:focus-visible,
a.ff-roster-player-card:focus-visible,
.ff-rank-player:focus-visible {
  outline: 3px solid var(--ff-red);
  outline-offset: 3px;
}

.ff-live-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: inherit;
  font-family: var(--ff-mono);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  opacity: .85;
}

.ff-live-more:hover { opacity: 1; }

/* ── Faixa de números ───────────────────────────────────────────────── */
.ff-stat-strip {
  padding-block: clamp(26px, 4vw, 44px);
  color: #fff;
  background: var(--ff-black);
}

.ff-stat-strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 18px 12px;
  text-align: center;
}

.ff-stat-strip-grid strong {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  line-height: 1;
}

.ff-stat-strip-grid small {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, .62);
  font-family: var(--ff-mono);
  font-size: .64rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ── Lista de jogos ─────────────────────────────────────────────────── */
.ff-match-list {
  display: grid;
  gap: 12px;
  margin-bottom: clamp(44px, 6vw, 74px);
}

.ff-match-row {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(0, 2fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border: 1px solid var(--ff-line-dark);
  border-radius: 18px;
  background: #fff;
  transition: box-shadow .28s ease, transform .28s ease;
}

.ff-match-row:hover {
  box-shadow: 0 20px 48px rgba(42, 12, 14, .1);
  transform: translateY(-2px);
}

.ff-match-next {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(120deg, var(--ff-red), var(--ff-red-deep));
}

.ff-match-date time {
  display: block;
  font-family: var(--ff-mono);
  font-size: .78rem;
  font-weight: 600;
}

.ff-match-date small {
  display: block;
  margin-top: 5px;
  color: var(--ff-ink-soft);
  font-size: .72rem;
}

.ff-match-next .ff-match-date small { color: rgba(255, 255, 255, .78); }

.ff-match-teams {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  font-size: 1.02rem;
}

.ff-match-teams em {
  color: var(--ff-ink-soft);
  font-family: var(--ff-mono);
  font-style: normal;
  font-size: .76rem;
}

.ff-match-next .ff-match-teams em { color: rgba(255, 255, 255, .7); }

.ff-match-score {
  min-width: 66px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--ff-black);
  color: #fff;
  font-family: var(--ff-mono);
  font-size: .94rem;
  font-weight: 600;
  text-align: center;
}

.ff-match-pending {
  background: rgba(255, 255, 255, .18);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ff-match-row:not(.ff-match-next) .ff-match-pending {
  background: var(--ff-paper);
  color: var(--ff-ink-soft);
}

/* ── Rankings ───────────────────────────────────────────────────────── */
.ff-stat-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(30px, 5vw, 60px);
  margin-bottom: clamp(44px, 6vw, 74px);
}

.ff-rank-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ff-rank-list li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 11px 16px;
  border: 1px solid var(--ff-line-dark);
  border-radius: 16px;
  background: #fff;
}

.ff-rank-pos {
  color: var(--ff-red);
  font-family: var(--ff-mono);
  font-size: .84rem;
  font-weight: 600;
  text-align: center;
}

.ff-rank-player {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.ff-rank-player img {
  width: 42px;
  height: 42px;
  flex: none;
  border-radius: 50%;
  object-fit: cover;
  background: var(--ff-paper);
}

.ff-rank-player strong {
  display: block;
  overflow: hidden;
  font-size: .96rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ff-rank-player small {
  display: block;
  color: var(--ff-ink-soft);
  font-size: .74rem;
}

.ff-rank-value {
  font-family: var(--ff-display);
  font-size: 1.32rem;
  text-align: right;
}

.ff-rank-value small {
  display: block;
  color: var(--ff-ink-soft);
  font-family: var(--ff-mono);
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── Tabela do elenco ───────────────────────────────────────────────── */
.ff-table-scroll {
  overflow-x: auto;
  border: 1px solid var(--ff-line-dark);
  border-radius: 18px;
  background: #fff;
}

.ff-stat-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
}

.ff-stat-table th,
.ff-stat-table td {
  padding: 12px 14px;
  text-align: center;
  white-space: nowrap;
}

.ff-stat-table thead th {
  color: var(--ff-ink-soft);
  border-bottom: 1px solid var(--ff-line-dark);
  font-family: var(--ff-mono);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ff-stat-table tbody th {
  text-align: left;
}

.ff-stat-table tbody th a {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.ff-stat-table tbody th a:hover { color: var(--ff-red); }

.ff-stat-table tbody th b {
  display: inline-block;
  min-width: 26px;
  margin-right: 9px;
  color: var(--ff-red);
  font-family: var(--ff-mono);
  font-size: .78rem;
}

.ff-stat-table tbody tr + tr th,
.ff-stat-table tbody tr + tr td {
  border-top: 1px solid var(--ff-line-dark);
}

.ff-stat-table tbody tr:hover { background: var(--ff-paper); }

.ff-card-yellow,
.ff-card-red {
  display: inline-block;
  width: 11px;
  height: 15px;
  border-radius: 2px;
  font-size: 0;
  vertical-align: middle;
}

.ff-card-yellow { background: #f2c200; }
.ff-card-red { background: var(--ff-red); }

/* ── Perfil de atleta ───────────────────────────────────────────────── */
.ff-player-hero {
  position: relative;
  isolation: isolate;
  color: #fff;
  background: linear-gradient(112deg, var(--ff-red) 0 62%, var(--ff-black) 62%);
  overflow: hidden;
}

.ff-player-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr);
  align-items: end;
  gap: clamp(28px, 5vw, 62px);
  padding-block: clamp(46px, 7vw, 92px);
}

.ff-player-hero-copy h1 {
  margin: 12px 0 6px;
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5.4vw, 4.6rem);
  line-height: .94;
}

.ff-player-role {
  color: rgba(255, 255, 255, .82);
  font-family: var(--ff-mono);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ff-player-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 34px;
  margin: 28px 0 0;
}

.ff-player-facts dt {
  color: rgba(255, 255, 255, .62);
  font-family: var(--ff-mono);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ff-player-facts dd {
  margin: 5px 0 0;
  font-family: var(--ff-display);
  font-size: 1.4rem;
}

.ff-player-hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 26px;
  background: rgba(0, 0, 0, .22);
  overflow: hidden;
}

.ff-player-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ff-player-hero-number {
  position: absolute;
  right: 14px;
  bottom: 6px;
  color: rgba(255, 255, 255, .3);
  font-family: var(--ff-display);
  font-size: clamp(3.4rem, 7vw, 6rem);
  line-height: 1;
  pointer-events: none;
}

.ff-player-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.ff-player-cta > div {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ff-button-outline-dark {
  color: var(--ff-black);
  border: 1px solid var(--ff-line-dark);
  background: transparent;
}

.ff-button-outline-dark:hover {
  border-color: var(--ff-black);
}

/* ── Responsivo ─────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .ff-match-row {
    grid-template-columns: minmax(0, 1fr) auto;
    row-gap: 12px;
  }

  .ff-match-date { grid-column: 1 / -1; }

  .ff-player-hero-grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .ff-player-hero-photo {
    max-width: 320px;
    aspect-ratio: 1;
  }
}

@media (max-width: 520px) {
  .ff-stat-strip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ff-match-teams { font-size: .92rem; }

  .ff-player-cta > div { width: 100%; }

  .ff-player-cta .ff-button { flex: 1 1 100%; justify-content: center; }
}

/* ───────────────── Identidade Marialvas · liquid glass 3D ───────────────── */
.mv-home { background: #f4ede2; }
.mv-hero {
  min-height: 100svh;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 221, 45, .24), transparent 28%),
    radial-gradient(circle at 78% 34%, rgba(255, 120, 64, .27), transparent 30%),
    linear-gradient(132deg, #180d0a 0%, #35130d 42%, #9b2618 70%, #1b4d8a 100%);
  perspective: 1200px;
}
.mv-hero::before {
  opacity: .42;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0 72%, transparent);
  mask-image: linear-gradient(to bottom, #000 0 72%, transparent);
}
.mv-hero::after { width: 42%; height: 140%; top: -25%; right: -14%; border-radius: 50%; background: rgba(255,210,32,.1); filter: blur(2px); transform: rotate(18deg); }
.mv-topbar { top: 18px; width: min(100% - clamp(24px, 6vw, 100px), 1500px); min-height: 78px; padding: 10px 18px; border-radius: 24px; border-bottom: 1px solid rgba(255,255,255,.32); background: rgba(29,14,10,.34); box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 24px 64px rgba(17,4,0,.2); }
.mv-topbar .ff-brand img { width: 58px; height: 58px; }
.mv-liquid-orb { position:absolute; z-index:-1; border:1px solid rgba(255,255,255,.2); border-radius:45% 55% 62% 38% / 42% 35% 65% 58%; background: radial-gradient(circle at 28% 24%, rgba(255,255,255,.75), transparent 15%), radial-gradient(circle at 66% 68%, rgba(255,211,27,.58), transparent 32%), linear-gradient(135deg, rgba(255,115,62,.5), rgba(109,24,11,.14)); box-shadow: inset -24px -32px 52px rgba(56,7,0,.34), inset 18px 18px 34px rgba(255,255,255,.16), 0 42px 90px rgba(50,8,1,.36); backdrop-filter: blur(18px); animation: mv-morph 12s ease-in-out infinite; }
.mv-liquid-orb-one { width: clamp(180px,25vw,430px); aspect-ratio:1; right:20%; top:15%; }
.mv-liquid-orb-two { width:clamp(230px,32vw,540px); aspect-ratio:1; left:-12%; bottom:-20%; opacity:.38; animation-delay:-6s; }
@keyframes mv-morph { 0%,100%{border-radius:45% 55% 62% 38% / 42% 35% 65% 58%;transform:translate3d(0,0,0) rotate(-4deg)} 50%{border-radius:62% 38% 36% 64% / 55% 58% 42% 45%;transform:translate3d(0,-18px,36px) rotate(5deg)} }
.mv-grid-floor { position:absolute; left:5%; right:5%; bottom:-5%; height:42%; opacity:.24; background-image:linear-gradient(rgba(255,214,45,.36) 1px,transparent 1px),linear-gradient(90deg,rgba(255,214,45,.36) 1px,transparent 1px); background-size:52px 52px; transform:rotateX(68deg); transform-origin:bottom; mask-image:linear-gradient(to top,#000,transparent 78%); }
.mv-hero-layout { min-height:calc(100svh - 108px); padding-top:clamp(110px,15vh,170px); }
.mv-hero-copy h1 { max-width:900px; font-size:clamp(3rem,7vw,7.6rem); line-height:.88; letter-spacing:-.065em; text-shadow:0 12px 44px rgba(22,4,0,.35); }
.mv-hero-copy > p { max-width:710px; font-size:clamp(1rem,1.5vw,1.3rem); }
.mv-hero-facts { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:10px; max-width:720px; margin:38px 0 0; }
.mv-hero-facts div { padding:14px 16px; border:1px solid rgba(255,255,255,.25); border-radius:18px; background:rgba(31,11,5,.24); box-shadow:inset 0 1px 0 rgba(255,255,255,.22); backdrop-filter:blur(18px); }
.mv-hero-facts dt { font-family:var(--ff-display); font-size:clamp(.92rem,1.5vw,1.25rem); }
.mv-hero-facts dd { margin:4px 0 0; color:rgba(255,255,255,.68); font-size:.68rem; }
.mv-crest-stage { transform-style:preserve-3d; }
.mv-crest-stage > img { max-width:min(88%,610px); filter:drop-shadow(0 44px 40px rgba(15,1,0,.48)); transform:translateZ(80px) rotateY(-7deg) rotateX(2deg); animation:mv-crest-float 7s ease-in-out infinite; }
.mv-crest-stage .ff-crest-halo { background:radial-gradient(circle,rgba(255,213,28,.42),rgba(255,93,48,.12) 48%,transparent 70%); }
.mv-stage-word { right:-15%; color:rgba(255,255,255,.07); font-size:clamp(3rem,8.3vw,9rem); writing-mode:vertical-rl; }
@keyframes mv-crest-float { 0%,100%{transform:translate3d(0,0,80px) rotateY(-7deg) rotateX(2deg)} 50%{transform:translate3d(0,-16px,110px) rotateY(4deg) rotateX(-2deg)} }
.mv-passage { color:#1c100c; background:linear-gradient(100deg,#ffcf26,#ffe66b 52%,#f6b400); }
.mv-live-rail { background:linear-gradient(180deg,#1a0e0a,#29100a); }
.mv-live-rail .ff-live-grid { align-items:stretch; }
.mv-glass-card { border:1px solid rgba(90,42,26,.14); background:linear-gradient(145deg,rgba(255,255,255,.82),rgba(255,248,238,.58)); box-shadow:inset 0 1px 0 rgba(255,255,255,.95),0 28px 80px rgba(56,21,9,.12); backdrop-filter:blur(26px) saturate(135%); }
.mv-live-rail .mv-glass-card { color:#fff; border-color:rgba(255,255,255,.18); background:linear-gradient(145deg,rgba(255,255,255,.13),rgba(255,255,255,.055)); box-shadow:inset 0 1px 0 rgba(255,255,255,.22),0 28px 70px rgba(0,0,0,.23); }
.mv-result-score { justify-self:end; color:#ffd327; font-family:var(--ff-display); }
.mv-club-story { position:relative; padding:clamp(90px,12vw,180px) 0; overflow:hidden; background:radial-gradient(circle at 90% 15%,rgba(27,77,138,.16),transparent 32%),#f4ede2; }
.mv-club-story::before { content:"CANTANHEDE"; position:absolute; left:-2vw; bottom:-.18em; color:rgba(78,34,20,.045); font-family:var(--ff-display); font-size:clamp(5rem,16vw,16rem); line-height:1; }
.mv-story-grid { display:grid; grid-template-columns:minmax(0,1.25fr) minmax(300px,.75fr); align-items:center; gap:clamp(50px,9vw,140px); }
.mv-story-copy h2 { max-width:980px; margin:20px 0 28px; font-family:var(--ff-display); font-size:clamp(2.4rem,5.5vw,6.4rem); line-height:.93; letter-spacing:-.055em; }
.mv-story-copy p { max-width:780px; color:#62564e; font-size:clamp(1rem,1.3vw,1.18rem); }
.mv-story-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:30px; }
.mv-story-actions a { padding:12px 16px; border:1px solid rgba(58,28,17,.17); border-radius:999px; background:rgba(255,255,255,.54); font-weight:700; }
.mv-story-emblem { position:relative; display:grid; place-items:center; min-height:590px; padding:40px; border-radius:46px; transform:rotate(2.5deg); }
.mv-story-emblem::before { content:""; position:absolute; inset:20px; border:1px solid rgba(90,42,26,.12); border-radius:34px; }
.mv-story-emblem span,.mv-story-emblem small { position:relative; font-family:var(--ff-mono); letter-spacing:.15em; text-transform:uppercase; }
.mv-story-emblem strong { position:absolute; top:45px; right:42px; color:rgba(27,77,138,.19); font-family:var(--ff-display); font-size:6rem; }
.mv-story-emblem img { position:relative; width:min(90%,380px); filter:drop-shadow(0 35px 30px rgba(72,28,12,.22)); }
.mv-categories { background:#1b4d8a; }
.mv-categories .ff-category-list a { border-color:rgba(255,255,255,.35); }
.mv-roster { background:linear-gradient(180deg,#f6f0e7,#fff9ef); }
.mv-player-card { box-shadow:0 25px 70px rgba(70,31,15,.13); }
.mv-instagram { padding:clamp(70px,9vw,130px) 0; color:#fff; background:linear-gradient(125deg,#25100b,#8e2418 55%,#1b4d8a); }
.mv-instagram-shell { display:grid; grid-template-columns:auto minmax(0,1fr) auto; align-items:center; gap:32px; padding:clamp(28px,5vw,60px); border-radius:38px; background:rgba(255,255,255,.1); }
.mv-instagram-icon { display:grid; place-items:center; width:92px; height:92px; border-radius:28px; background:linear-gradient(145deg,#ffda35,#f13d4e 52%,#9538cf); box-shadow:inset 0 1px 0 rgba(255,255,255,.5),0 24px 44px rgba(28,2,0,.25); font-size:2.4rem; transform:rotate(-6deg); }
.mv-instagram h2 { margin:10px 0 6px; font-family:var(--ff-display); font-size:clamp(2rem,4vw,4.5rem); line-height:.95; }
.mv-instagram p { margin:0; color:rgba(255,255,255,.72); }
.mv-links { background:#17100d; }
.mv-platform { padding:clamp(80px,10vw,150px) 0; background:#f4ede2; }
.mv-platform-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:20px; }
.mv-platform-card { display:grid; grid-template-columns:auto 1fr; gap:18px; min-height:220px; padding:28px; border-radius:30px; transition:transform .3s ease,box-shadow .3s ease; }
.mv-platform-card:hover { transform:translateY(-8px) rotateX(2deg); box-shadow:inset 0 1px 0 #fff,0 38px 90px rgba(56,21,9,.18); }
.mv-platform-card > i { display:grid; place-items:center; width:58px; height:58px; color:#fff; border-radius:18px; background:linear-gradient(145deg,#1b4d8a,#851d14); box-shadow:0 16px 26px rgba(167,45,27,.26); }
.mv-platform-card span { display:grid; align-content:start; gap:7px; }
.mv-platform-card b { font-family:var(--ff-display); font-size:1.1rem; }
.mv-platform-card small { color:#706158; }
.mv-platform-card em { grid-column:1/-1; align-self:end; font-style:normal; font-weight:800; }
.mv-footer { background:#100c0a; }

@media (max-width: 1050px) {
  .mv-topbar { align-items:flex-start; }
  .mv-topbar .ff-main-nav { flex-wrap:wrap; }
  .mv-story-grid { grid-template-columns:1fr; }
  .mv-story-emblem { min-height:430px; }
  .mv-platform-grid { grid-template-columns:1fr; }
}
@media (max-width: 760px) {
  .mv-topbar { top:10px; border-radius:20px; }
  .mv-topbar .ff-main-nav a:not(.ff-instagram-link) { display:none; }
  .mv-hero-layout { padding-top:120px; }
  .mv-hero-copy h1 { font-size:clamp(2.7rem,13vw,5rem); }
  .mv-hero-facts { grid-template-columns:1fr; }
  .mv-crest-stage { min-height:390px; }
  .mv-story-emblem { min-height:360px; }
  .mv-story-emblem strong { font-size:4rem; }
  .mv-instagram-shell { grid-template-columns:1fr; text-align:left; }
  .mv-instagram-icon { width:74px; height:74px; }
}
@media (prefers-reduced-motion: reduce) {
  .mv-liquid-orb,.mv-crest-stage>img { animation:none; }
}

/* Escudos dos clubes e emblemas de competição na vitrine */
.ff-escudo {
  width: 26px;
  height: 26px;
  flex: none;
  object-fit: contain;
}

.ff-escudo-vazio {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(9, 9, 9, .08);
  color: var(--ff-ink-soft);
  font-size: .7rem;
  font-weight: 800;
}

.ff-match-next .ff-escudo-vazio {
  background: rgba(255, 255, 255, .22);
  color: #fff;
}

.ff-emblema-comp {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  vertical-align: -7px;
  object-fit: contain;
}

.ff-confronto {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ff-confronto em {
  font-style: normal;
  font-family: var(--ff-mono);
  font-size: .72rem;
  opacity: .7;
}

/* ── Placar ao vivo na landing ───────────────────────────────────────── */
.ff-live-agora {
  background: linear-gradient(120deg, var(--ff-red), var(--ff-red-deep));
  box-shadow: 0 22px 60px rgba(227, 6, 19, .32);
}

.ff-pulso {
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-right: 7px;
  border-radius: 50%;
  background: #fff;
  animation: ff-pulsar 1.4s ease-in-out infinite;
}

@keyframes ff-pulsar {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .35; transform: scale(.72); }
}

.ff-live-confronto {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.ff-live-time {
  display: flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  font-size: .94rem;
}

.ff-live-time:last-of-type {
  flex-direction: row-reverse;
  text-align: right;
}

.ff-live-time b {
  overflow: hidden;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ff-live-time.e-nosso b {
  font-weight: 900;
}

.ff-placar {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  font-family: var(--ff-display);
  font-size: 1.9rem;
  line-height: 1;
}

.ff-placar i {
  font-size: .78rem;
  font-style: normal;
  opacity: .6;
}

.ff-placar-vs {
  font-family: var(--ff-mono);
  font-size: .82rem;
  opacity: .65;
}

.ff-live-contexto {
  display: block;
  font-family: var(--ff-mono);
  font-size: .66rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  opacity: .78;
}

.ff-lances {
  margin-top: 15px;
  padding-top: 13px;
  border-top: 1px solid rgba(255, 255, 255, .22);
}

.ff-lances-titulo {
  display: block;
  margin-bottom: 8px;
  font-family: var(--ff-mono);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .7;
}

.ff-lance {
  display: grid;
  grid-template-columns: 38px auto minmax(0, 1fr);
  gap: 9px;
  padding: 4px 0;
  font-size: .8rem;
  opacity: .72;
}

/* Os lances do Flamengo saltam à vista; os do adversário ficam discretos. */
.ff-lance.e-nosso {
  font-weight: 700;
  opacity: 1;
}

.ff-lance-min {
  font-family: var(--ff-mono);
  font-size: .72rem;
}

.ff-lance-quem {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 520px) {
  .ff-live-confronto { gap: 8px; }
  .ff-live-time { font-size: .82rem; }
  .ff-placar { font-size: 1.5rem; }
}

/* ── Faixa AO VIVO no topo ───────────────────────────────────────────── */
.ff-faixa-aovivo {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 11px 18px;
  color: #fff;
  background: linear-gradient(90deg, var(--ff-red-deep), var(--ff-red));
  box-shadow: 0 6px 22px rgba(151, 0, 10, .38);
  font-family: var(--ff-mono);
  font-size: .76rem;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.ff-faixa-aovivo b {
  font-weight: 800;
  letter-spacing: .16em;
}

.ff-faixa-jogo {
  font-family: var(--ff-body);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.ff-faixa-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 13px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
}

.ff-faixa-aovivo:hover .ff-faixa-cta {
  color: var(--ff-red);
  background: #fff;
  border-color: #fff;
}

/* ── Competição no card e nos resultados ─────────────────────────────── */
.ff-live-competicao,
.ff-resultado-comp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  font-family: var(--ff-mono);
  font-size: .64rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .82;
}

.ff-live-competicao {
  margin-bottom: 13px;
}

/* Nomes longos ("Red Bull Bragantino (F)") não podem ser cortados a meio:
   o card do próximo jogo empilha os dois lados e deixa-os respirar. */
.ff-live-next .ff-live-confronto {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
}

.ff-live-next .ff-live-time b {
  overflow: hidden;
  font-size: .92rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ff-live-next time {
  display: block;
  margin-top: 12px;
  font-family: var(--ff-mono);
  font-size: .74rem;
  opacity: .85;
}

.ff-emblema-mini {
  width: 20px;
  height: 20px;
  flex: none;
  object-fit: contain;
}

/* ── Lista de resultados ─────────────────────────────────────────────
   Uma linha por equipa. Com três colunas os nomes não cabiam na largura
   deste card e saíam truncados; empilhados, cabem inteiros e o confronto
   lê-se como um placar de verdade. */
.ff-resultado + .ff-resultado {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid var(--ff-line-dark);
}

.ff-resultado-topo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  color: var(--ff-ink-soft);
  font-family: var(--ff-mono);
  font-size: .62rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.ff-resultado-topo time {
  flex: none;
}

/* A competição fica numa linha só; um nome longo corta com reticências
   em vez de empurrar a data e partir o alinhamento. */
.ff-resultado-comp {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.ff-resultado-comp > span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ff-confronto-linhas {
  display: grid;
  gap: 6px;
}

.ff-time-linha {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 11px;
}

.ff-time-nome {
  overflow: hidden;
  font-size: .92rem;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ff-time-gols {
  font-family: var(--ff-mono);
  font-size: 1.05rem;
  font-weight: 600;
  text-align: right;
}

/* Quem venceu fica a cheio; o outro lado esbate. */
.ff-time-linha.venceu .ff-time-nome,
.ff-time-linha.venceu .ff-time-gols {
  font-weight: 800;
}

.ff-confronto-linhas .ff-time-linha:not(.venceu) {
  opacity: .72;
}

/* Empate: nenhum dos lados esbate. */
.ff-confronto-linhas:not(:has(.venceu)) .ff-time-linha {
  opacity: 1;
}

/* O card do próximo jogo é vermelho: aqui o texto é claro. */
.ff-live-next .ff-live-time b { font-size: .95rem; }

@media (max-width: 520px) {
  .ff-faixa-aovivo { flex-wrap: wrap; gap: 8px; font-size: .68rem; }
  .ff-faixa-jogo { width: 100%; text-align: center; }
  .ff-resultado-linha { flex-direction: column; align-items: flex-start; gap: 8px; }
}
