.wfi-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.wfi-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.wfi-section {
  padding: 3.5rem 0;
}
.wfi-section--alt {
  background: var(--c-card);
}
.wfi-section__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0 0 0.5rem;
  text-align: center;
}
.wfi-section__subtitle {
  text-align: center;
  color: var(--c-muted);
  max-width: 640px;
  margin: 0 auto 2rem;
}
.wfi-btn {
  --btn-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  transition:
    transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1),
    box-shadow 0.28s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
  box-shadow: var(--btn-shadow);
}

.wfi-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 70%
  );
  transform: translateX(-120%);
  transition: transform 0.55s ease;
  z-index: 0;
}

.wfi-btn:hover::before {
  transform: translateX(120%);
}

.wfi-btn > * {
  position: relative;
  z-index: 1;
}

.wfi-btn--primary {
  background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
}

.wfi-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.45);
  background: linear-gradient(135deg, #f04a56 0%, #d41f2d 100%);
}

.wfi-btn--primary:active {
  transform: translateY(0);
}

.wfi-btn--secondary {
  background: transparent;
  color: var(--c-gold);
  border-color: var(--c-gold);
  box-shadow: none;
}

.wfi-btn--secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.2);
  color: #fff;
}

.wfi-btn--gold {
  background: linear-gradient(135deg, #ffd700 0%, #f4a261 100%);
  color: #141110;
  border-color: rgba(255, 255, 255, 0.25);
}

.wfi-btn--gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 28px rgba(255, 215, 0, 0.35);
  background: linear-gradient(135deg, #ffe566 0%, #ffb347 100%);
}
.wfi-btn:disabled,
.wfi-btn[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.wfi-btn--block {
  width: 100%;
}
.wfi-nav {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.25rem;
}
.wfi-nav a {
  color: var(--c-text);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.wfi-nav a:hover,
.wfi-nav a[aria-current="page"] {
  color: var(--c-red);
}
.wfi-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: transparent;
  border: 2px solid var(--c-border);
  border-radius: 8px;
  cursor: pointer;
}
.wfi-menu-toggle span {
  display: block;
  height: 2px;
  background: #fff;
  transition: transform 0.3s;
}
.wfi-mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 85vw);
  height: 100vh;
  background: var(--c-card);
  z-index: 2001;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  padding: 5rem 1.5rem 2rem;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.15);
}
.wfi-mobile-nav.is-open {
  transform: translateX(0);
}
.wfi-mobile-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wfi-mobile-nav__list a {
  display: block;
  padding: 0.85rem 0;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--c-text);
  text-decoration: none;
  border-bottom: 1px solid var(--c-border);
}
.wfi-mobile-nav__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  border: 2px solid var(--c-border);
  background: var(--c-card);
  border-radius: 8px;
  cursor: pointer;
  color: #fff;
}
.wfi-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s;
}
.wfi-nav-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}
.wfi-advantages-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.wfi-advantage {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--c-red);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s,
    transform 0.6s;
}
.wfi-advantage.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.wfi-advantage__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: block;
  object-fit: contain;
}
.wfi-advantage h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
}
.wfi-play-zone {
  background: var(--c-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.5rem;
  margin-top: 1rem;
}
.wfi-play-layout {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.wfi-squad-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.wfi-squad-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--c-bg);
  border-radius: var(--radius);
  padding: 1rem;
  text-align: center;
  border: 2px solid transparent;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.wfi-squad-card .wfi-btn {
  margin-top: auto;
}
.wfi-squad-card.is-selected {
  border-color: var(--c-gold);
}
.wfi-squad-card:focus-within {
  outline: none;
}
.wfi-squad-card.is-hidden {
  display: none;
}
.wfi-squad-card__photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.75rem;
  border: 3px solid var(--c-gold);
}
.wfi-squad-card__name {
  font-weight: 700;
  font-size: 0.95rem;
  margin: 0 0 0.25rem;
}
.wfi-squad-card__meta {
  font-size: 0.8rem;
  color: var(--c-muted);
  margin: 0 0 0.5rem;
}
.wfi-squad-card__price {
  font-weight: 700;
  color: var(--c-red);
  margin: 0 0 0.75rem;
}
.wfi-squad-card .wfi-btn {
  padding: 0.5rem 0.75rem;
  font-size: 0.8rem;
  width: 100%;
}
.wfi-team-panel {
  background: var(--c-text);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.25rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.wfi-team-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.wfi-team-panel h2 {
  font-size: 1.1rem;
  margin: 0;
}
.wfi-team-reset {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 0.35rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
}
.wfi-team-list {
  overflow-x: hidden;
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 320px;
  overflow-y: auto;
}
.wfi-team-list__empty {
  text-align: center;
  color: #aaa;
  padding: 2rem 1rem;
  font-size: 0.9rem;
}
.wfi-team-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  animation: teamIn 0.35s ease;
}
@keyframes teamIn {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.wfi-team-item__thumb {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.wfi-team-item__info {
  flex: 1;
  min-width: 0;
}
.wfi-team-item__name {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  margin: 0;
}
.wfi-team-item__meta {
  font-size: 0.75rem;
  color: #ccc;
  margin: 0;
}
.wfi-team-item__remove {
  width: 32px;
  height: 32px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}
.wfi-team-budget {
  margin: 1rem 0;
  padding: 0.75rem;
  background: rgba(255, 206, 0, 0.15);
  border-radius: 8px;
  font-size: 0.9rem;
}
.wfi-team-hint {
  font-size: 0.8rem;
  color: var(--c-gold);
  margin: 0.5rem 0 0;
  min-height: 1.2em;
}
.wfi-show-all-wrap {
  text-align: center;
  margin-top: 1rem;
}
.wfi-show-all-wrap.is-hidden {
  display: none;
}
.wfi-forecasts-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (max-width: 767px) {
  .wfi-fantasy__actions {
    justify-content: center !important;
    align-items: center !important;
    flex-direction: column !important;
  }
}

.wfi-forecast {
  background: var(--c-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--c-border);
  flex-direction: column;
  display: flex;
}
.wfi-reviews-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wfi-forecast__body {
  padding: 1.25rem;
  background: var(--c-card-alt);
  flex-grow: 1;
}
.wfi-forecast__img {
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
}
.wfi-forecast h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}
.wfi-forecast__label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--c-red);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.wfi-subscribe-box {
  max-width: 520px;
  margin: 0 auto;
  background: var(--c-card);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--c-gold);
}
.wfi-subscribe {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.wfi-subscribe input {
  padding: 0.85rem 1rem;
  border: 2px solid var(--c-border);
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  background: var(--c-card-alt);
  color: var(--c-text);
}
.wfi-subscribe input:invalid:not(:placeholder-shown) {
  border-color: var(--c-red);
}
.wfi-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 520px;
}
.wfi-contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--c-text);
}
.wfi-contact-form input,
.wfi-contact-form textarea {
  padding: 0.85rem 1rem;
  border: 2px solid var(--c-border);
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
  background: var(--c-card-alt);
  color: var(--c-text);
  font-family: inherit;
  resize: vertical;
  min-height: 120px;
}
.wfi-contact-form input {
  min-height: auto;
}
.wfi-contact-form input:invalid:not(:placeholder-shown),
.wfi-contact-form textarea:invalid:not(:placeholder-shown) {
  border-color: var(--c-red);
}
.wfi-footer {
  background: var(--c-footer);
  color: #e0e0e0;
  padding: 3rem 0 1.5rem;
}
.wfi-footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}
.wfi-footer-grid h3 {
  color: #fff;
  font-size: 1rem;
  margin: 0 0 1rem;
}
.wfi-footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wfi-footer-grid a {
  color: #ccc;
  text-decoration: none;
}
.wfi-footer-grid a:hover {
  color: var(--c-gold);
}
.wfi-footer-payments {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.wfi-footer-payments svg {
  height: 28px;
  width: auto;
}
.wfi-footer-legal {
  border-top: 1px solid #333;
  margin-top: 2rem;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: #999;
}
.wfi-footer-legal p {
  margin: 0.5rem 0;
}
.wfi-cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3000;
  background: var(--c-card);
  border-top: 3px solid var(--c-red);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
  padding: 1rem 1rem 1.25rem;
  transform: translateY(0);
  opacity: 1;
  transition:
    transform 0.4s,
    opacity 0.4s;
}
.wfi-cookie.is-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.wfi-cookie__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.wfi-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.wfi-overlay {
  position: fixed;
  inset: 0;
  z-index: 4000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s;
}
.wfi-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.wfi-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.wfi-overlay__panel {
  position: relative;
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 480px;
  width: 100%;
  max-height: calc(100dvh - 2rem);
  overflow-x: auto;
  overflow-y: auto;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
  transform: scale(0.95);
  transition: transform 0.3s;
}
.wfi-overlay.is-open .wfi-overlay__panel {
  transform: scale(1);
}
.wfi-overlay__panel:focus {
  outline: none;
}
.page-wfi-hero {
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, var(--c-card-alt) 0%, var(--c-bg) 100%);
  border-bottom: 3px solid var(--c-gold);
}
.page-wfi-hero h1 {
  margin: 0 0 0.5rem;
}
.wfi-policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
}
.wfi-policy-hero-img {
  width: 100%;
  max-width: 960px;
  height: auto;
  border-radius: 12px;
  margin: 0 auto 2rem;
  display: block;
  object-fit: cover;
}
.wfi-policy-content h2 {
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
  color: var(--c-text);
  border-left: 4px solid var(--c-red);
  padding-left: 0.75rem;
}
.wfi-policy-content p,
.wfi-policy-content li {
  color: var(--c-muted);
}
.wfi-policy-content ul {
  padding-left: 1.25rem;
}
.wfi-contact-grid {
  display: grid;
  gap: 2rem;
}
.wfi-contact-card {
  background: var(--c-card);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.wfi-news-grid {
  display: grid;
  gap: 1.5rem;
}
.wfi-news-card {
  background: var(--c-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.wfi-news-card__img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.wfi-news-card__body {
  padding: 1.25rem;
}
.wfi-news-card time {
  font-size: 0.8rem;
  color: var(--c-muted);
}
.wfi-about-features {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
.wfi-about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--c-card);
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
@media (max-width: 566.98px) {
  .wfi-squad-card.is-mobile-hidden {
    display: none;
  }
}
@media (min-width: 567px) {
  .wfi-squad-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .wfi-squad-card.is-mobile-hidden {
    display: block;
  }
  .wfi-show-all-wrap {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .wfi-nav {
    display: flex;
  }
  .wfi-menu-toggle {
    display: none;
  }
  .wfi-advantages-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .wfi-forecasts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .wfi-footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .wfi-play-layout {
    grid-template-columns: 1fr 340px;
  }
  .wfi-squad-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .wfi-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wfi-contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  .wfi-cookie__inner {
    flex-direction: row;
    align-items: center;
  }
  .wfi-cookie__actions {
    margin-left: auto;
    flex-shrink: 0;
  }
}
@media (min-width: 992px) {
  .wfi-hero {
    min-height: 80vh;
  }
}

@media (max-width: 1136px) {
  .wfi-squad-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .wfi-squad-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* —— Extended blocks (Live-Rangliste, Transfer, etc.) —— */
.wfi-ranking-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  list-style: none;
  padding: 0;
}
.wfi-ranking-tabs button {
  padding: 0.55rem 1.15rem;
  border: 2px solid var(--c-border);
  background: var(--c-card-alt);
  color: var(--c-text);
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.wfi-ranking-tabs button:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
}
.wfi-ranking-tabs button[aria-selected="true"] {
  background: linear-gradient(135deg, #e63946 0%, #c1121f 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(230, 57, 70, 0.35);
}
.wfi-ranking-table-wrap {
  overflow-x: auto;
  background: var(--c-surface, var(--c-card-alt));
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.wfi-ranking-grid {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 360px;
}
.wfi-ranking-grid thead {
  position: sticky;
  top: 0;
  z-index: 1;
}
.wfi-ranking-grid th {
  padding: 0.9rem 1.1rem;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-gold);
  background: var(--c-black);
  border-bottom: 2px solid var(--c-gold);
}
.wfi-ranking-grid th:first-child {
  border-radius: var(--radius) 0 0 0;
}
.wfi-ranking-grid th:last-child {
  border-radius: 0 var(--radius) 0 0;
  text-align: center;
}
.wfi-ranking-grid td {
  padding: 0.85rem 1.1rem;
  text-align: left;
  color: var(--c-text);
  border-bottom: 1px solid var(--c-border);
  vertical-align: middle;
}
.wfi-ranking-grid td:last-child {
  text-align: center;
}
.wfi-ranking-grid tbody tr:last-child td {
  border-bottom: none;
}
.wfi-ranking-grid tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.03);
}
.wfi-ranking-row {
  transition: background 0.2s ease;
}
.wfi-ranking-row:hover {
  background: rgba(232, 197, 71, 0.08) !important;
}
.wfi-ranking-row--top1 {
  background: rgba(232, 197, 71, 0.1) !important;
}
.wfi-ranking-row--top2 {
  background: rgba(192, 192, 192, 0.06) !important;
}
.wfi-ranking-row--top3 {
  background: rgba(205, 127, 50, 0.08) !important;
}
.wfi-ranking-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.4rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.9rem;
  background: var(--c-card-alt);
  color: var(--c-text);
  border: 1px solid var(--c-border);
}
.wfi-ranking-rank--gold {
  background: linear-gradient(135deg, #e8c547, #c9a227);
  color: #1a1208;
  border-color: #f0d878;
}
.wfi-ranking-rank--silver {
  background: linear-gradient(135deg, #d4d4d4, #a8a8a8);
  color: #1a1a1a;
  border-color: #e8e8e8;
}
.wfi-ranking-rank--bronze {
  background: linear-gradient(135deg, #cd7f32, #a05a20);
  color: #fff;
  border-color: #e09a5a;
}
.wfi-ranking-name {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
}
.wfi-ranking-points {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--c-gold);
  font-variant-numeric: tabular-nums;
}
.wfi-ranking-avatar {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-red), #a01020);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--c-border);
}
.wfi-ranking-trend {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1rem;
}
.wfi-ranking-trend.trend--up {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.12);
}
.wfi-ranking-trend.trend--down {
  color: #f87171;
  background: rgba(248, 113, 113, 0.12);
}
.wfi-ranking-more {
  text-align: center;
  margin-top: 1.25rem;
}
.wfi-market-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: hidden;
  padding-bottom: 0.5rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.wfi-market-scroll::-webkit-scrollbar {
  display: none;
}
.wfi-market-card {
  flex: 0 0 min(260px, 85vw);
  scroll-snap-align: start;
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--c-red);
  text-decoration: none;
  color: inherit;
  position: relative;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.wfi-market-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}
.wfi-market-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 0.75rem;
  background: var(--c-gold);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
  font-weight: 700;
}
.wfi-market-card__player {
  font-weight: 700;
  margin: 0 0 0.25rem;
}
.wfi-market-card__club {
  font-size: 0.85rem;
  color: var(--c-muted);
  margin: 0 0 0.5rem;
}
.wfi-market-card__delta.delta--up {
  color: #0a7a0a;
  font-weight: 700;
}
.wfi-market-card__delta.delta--down {
  color: var(--c-red);
  font-weight: 700;
}
.wfi-market-card__time {
  font-size: 0.8rem;
  color: var(--c-muted);
  margin: 0.5rem 0 0;
}
.wfi-status-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.wfi-status-filters button {
  padding: 0.45rem 0.9rem;
  border: 2px solid #ddd;
  background: var(--c-card);
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  color: #ffffff7b;
}
.wfi-status-filters button[aria-pressed="true"] {
  border-color: var(--c-text);
  background: var(--c-card-alt);
  color: #fff;
}
.wfi-status-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.wfi-status-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: var(--c-card);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.wfi-status-card__photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
  border: 2px solid var(--c-gold);
}
.wfi-status-card h3 {
  margin: 0 0 0.25rem;
  font-size: 1rem;
}
.wfi-status-card__status {
  margin: 0;
  font-size: 0.9rem;
}
.wfi-status-card__return {
  margin: 0.25rem 0 0;
  font-size: 0.85rem;
  color: var(--c-muted);
}
.wfi-status-meta {
  text-align: center;
  font-size: 0.85rem;
  color: var(--c-muted);
  margin-top: 1rem;
}
.wfi-plans-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
.wfi-plan {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--c-black);
  text-align: center;
}
.wfi-plan--featured {
  border-top-color: var(--c-red);
  transform: scale(1);
}
.wfi-plan__price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--c-red);
  margin: 0.5rem 0 1rem;
}
.wfi-plan ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  text-align: left;
}
.wfi-plan li {
  padding: 0.35rem 0;
  font-size: 0.9rem;
}
.wfi-plan li::before {
  content: "✓ ";
  color: var(--c-red);
  font-weight: 700;
}
.wfi-plans-note {
  font-size: 0.85rem;
  color: var(--c-muted);
  max-width: 640px;
  margin: 2rem auto 0;
  text-align: center;
}
.wfi-steps-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
.wfi-step {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.wfi-step__num {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: var(--c-gold);
  color: var(--c-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
}
.wfi-step__mock {
  margin-top: 1rem;
  border-radius: 8px;
  background: var(--c-bg);
  padding: 1rem;
  font-size: 0.85rem;
  color: var(--c-muted);
  min-height: 80px;
}
.wfi-expert-block {
  display: grid;
  gap: 2rem;
}
.wfi-expert-profile {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--c-card);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--c-gold);
}
.wfi-expert-profile__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-gold);
  flex-shrink: 0;
}
.wfi-expert-picks {
  display: grid;
  gap: 1rem;
}
.wfi-expert-pick {
  background: var(--c-card);
  padding: 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.wfi-expert-pick h3,
.wfi-expert-pick h4 {
  margin: 0 0 0.35rem;
  color: var(--c-red);
}
.wfi-boosts-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  background: var(--c-card);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.wfi-boosts-grid,
.boosts-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}
.wfi-boost-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--c-card);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
}
.wfi-boost-card__body {
  flex: 1;
}
.wfi-boost-card .wfi-btn {
  margin-top: auto;
}
.wfi-boost-card__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}
.wfi-boost-card__limited {
  font-size: 0.8rem;
  color: var(--c-red);
  font-weight: 600;
}
.wfi-boost-card__price {
  font-weight: 800;
  color: var(--c-text);
  margin: 0.75rem 0;
}
.wfi-faq-search-wrap {
  max-width: 520px;
  margin: 0 auto 2rem;
}
.wfi-faq-search-wrap input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}
.wfi-faq-item {
  background: var(--c-card);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.wfi-faq-item__trigger {
  width: 100%;
  padding: 1rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: transparent;
  color: var(--c-text);
  font-family: inherit;
  font-size: 1rem;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.wfi-faq-item__trigger::after {
  content: "+";
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--c-gold);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.wfi-faq-item.is-open .wfi-faq-item__trigger::after {
  content: "−";
}
.wfi-faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.wfi-faq-item.is-open .wfi-faq-item__panel {
  grid-template-rows: 1fr;
}
.wfi-faq-item__content {
  overflow: hidden;
}
.wfi-faq-item__content p {
  padding: 0 1.25rem 1rem;
  margin: 0;
  color: var(--c-muted);
}
.wfi-faq-item summary {
  padding: 1rem 0;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}
.wfi-faq-item summary::-webkit-details-marker {
  display: none;
}
.wfi-faq-item summary::after {
  content: "+";
  float: right;
  font-weight: 700;
}
.wfi-faq-item[open] summary::after {
  content: "−";
}
.wfi-faq-item p {
  padding: 0 1rem 1rem;
  margin: 0;
  color: var(--c-muted);
}
.wfi-faq-support-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
@media (prefers-reduced-motion: reduce) {
  .wfi-ranking-row,
  .wfi-market-card,
  .wfi-advantage {
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}
@media (min-width: 768px) {
  .wfi-status-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .wfi-plans-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .wfi-plan--featured {
    transform: scale(1.03);
  }
  .wfi-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wfi-boosts-grid,
  .boosts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .wfi-expert-block {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 992px) {
  .wfi-steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .wfi-boosts-grid,
  .boosts-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* —— Chat widget —— */
.wfi-chat {
  position: fixed;
  z-index: 5500;
  bottom: 1.25rem;
  right: 1.25rem;
  font-family: var(--font);
}
.wfi-chat__fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: var(--c-red);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    transform 0.25s ease,
    background 0.2s;
}
.wfi-chat__fab:hover {
  background: #b80000;
  transform: scale(1.05);
}
.wfi-chat__panel {
  position: absolute;
  bottom: calc(100% + 0.75rem);
  right: 0;
  width: min(380px, calc(100vw - 2rem));
  max-height: min(520px, calc(100vh - 6rem));
  background: var(--c-card);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.96);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0.3s;
  border-top: 3px solid var(--c-gold);
}
.wfi-chat--open .wfi-chat__panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.wfi-chat--open .wfi-chat__fab {
  background: var(--c-card-alt);
}
.wfi-chat__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  background: var(--c-card-alt);
  color: #fff;
}
.wfi-chat__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}
.wfi-chat__close {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
  border-radius: 8px;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
}
.wfi-chat__messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 200px;
  max-height: 320px;
  background: var(--c-bg);
}
.wfi-chat__msg {
  max-width: 88%;
}
.wfi-chat__msg--user {
  align-self: flex-end;
}
.wfi-chat__msg--user p {
  margin: 0;
  padding: 0.65rem 0.9rem;
  background: var(--c-red);
  color: #fff;
  border-radius: 12px 12px 4px 12px;
  font-size: 0.9rem;
}
.wfi-chat__msg--bot {
  align-self: flex-start;
}
.wfi-chat__bot-bubble {
  padding: 0.65rem 0.9rem;
  background: var(--c-card);
  border-radius: 12px 12px 12px 4px;
  box-shadow: var(--shadow);
  font-size: 0.9rem;
  color: var(--c-text);
}
.wfi-chat__bot-bubble p {
  margin: 0 0 0.5rem;
}
.wfi-chat__bot-bubble p:last-child {
  margin-bottom: 0;
}
.wfi-chat__links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-top: 0.5rem;
}
.wfi-chat__link {
  text-align: left;
  padding: 0.5rem 0.65rem;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  background: var(--c-bg);
  color: var(--c-red);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.wfi-chat__link:hover {
  border-color: var(--c-gold);
  background: var(--c-card);
}
.wfi-chat__typing {
  display: flex;
  gap: 4px;
  padding: 0.75rem 1rem;
  background: var(--c-card);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.wfi-chat__typing span {
  width: 8px;
  height: 8px;
  background: var(--c-muted);
  border-radius: 50%;
  animation: srChatTyping 1s infinite ease-in-out;
}
.wfi-chat__typing span:nth-child(2) {
  animation-delay: 0.15s;
}
.wfi-chat__typing span:nth-child(3) {
  animation-delay: 0.3s;
}
@keyframes srChatTyping {
  0%,
  80%,
  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-4px);
  }
}
.wfi-chat__form {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem;
  border-top: 1px solid var(--c-border);
  background: var(--c-card);
}
.wfi-chat__input {
  flex: 1;
  padding: 0.6rem 0.75rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
}
.wfi-chat__send {
  padding: 0.6rem 1rem;
  font-size: 0.85rem;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .wfi-chat {
    bottom: 0;
    right: 0;
    left: 0;
  }
  .wfi-chat__fab {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 5501;
  }
  .wfi-chat__panel {
    position: fixed;
    inset: 0;
    width: 100%;
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
    bottom: auto;
    right: auto;
  }
  .wfi-chat__messages {
    max-height: none;
    flex: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .wfi-chat__panel,
  .wfi-chat__fab,
  .wfi-chat__typing span {
    transition: none;
    animation: none;
  }
}

/* Header auth buttons */
.wfi-header__auth {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
.wfi-btn--sm {
  padding: 0.5rem 0.85rem;
  font-size: 0.85rem;
}
.wfi-header__user {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-muted);
  white-space: nowrap;
}
@media (min-width: 1100px) {
  .wfi-header__auth {
    display: flex;
  }
  .wfi-nav {
    display: flex;
    font-size: 0.78rem;
    gap: 0.85rem;
  }
}
@media (min-width: 992px) and (max-width: 1099px) {
  .wfi-nav {
    display: flex;
    font-size: 0.72rem;
    gap: 0.6rem;
  }
}
.wfi-mobile-nav__auth {
  padding: 0.75rem 0;
}
.wfi-mobile-nav__auth .wfi-btn {
  width: 100%;
}

/* Auth wfi-overlay */
.auth-wfi-overlay {
  align-items: center;
  overscroll-behavior: contain;
}
.auth-wfi-overlay__panel {
  max-width: 440px;
  padding-top: 2.5rem;
}
.wfi-auth-overlay__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--c-border);
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  line-height: 1;
}
.wfi-auth-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  border-bottom: 2px solid var(--c-border);
}
.wfi-auth-tabs button {
  flex: 1;
  padding: 0.75rem;
  border: none;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
  color: var(--c-muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition:
    color 0.3s,
    border-color 0.3s;
}
.wfi-auth-tabs button[aria-selected="true"] {
  color: var(--c-red);
  border-bottom-color: var(--c-red);
}
.wfi-auth-panels {
  display: grid;
  gap: 0;
}
.wfi-auth-panel-shell {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
  overflow: hidden;
}
.wfi-auth-panel-shell.is-active {
  grid-template-rows: 1fr;
}
.wfi-auth-panel {
  display: grid;
  gap: 0.65rem;
  min-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  pointer-events: none;
}
.wfi-auth-panel-shell.is-active .wfi-auth-panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.wfi-auth-panel-shell.is-active .wfi-auth-panel:focus-within {
  pointer-events: auto;
}
.wfi-auth-panel label {
  font-weight: 600;
  font-size: 0.9rem;
}
.wfi-auth-panel input {
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
}
@media (prefers-reduced-motion: reduce) {
  .wfi-auth-panel-shell {
    transition: none;
  }
  .wfi-auth-panel {
    transition: none;
    transform: none;
  }
  .wfi-auth-panel-shell:not(.is-active) .wfi-auth-panel {
    display: none;
  }
}
.wfi-auth-error {
  color: var(--c-red);
  font-size: 0.9rem;
  margin: 0;
}

/* Reviews */
.wfi-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.wfi-testimonial {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--c-gold);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  transition-delay: var(--review-delay, 0s);
}
.wfi-testimonial.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.wfi-testimonial__header {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.75rem;
}
.wfi-testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-red), var(--c-gold));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.wfi-testimonial__name {
  margin: 0;
  font-size: 1rem;
}
.wfi-testimonial__meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--c-muted);
}
.wfi-testimonial__stars {
  color: var(--c-gold);
  letter-spacing: 2px;
  margin: 0 0 0.75rem;
}
.wfi-testimonial__text {
  margin: 0;
  font-style: italic;
  color: var(--c-muted);
  line-height: 1.65;
}

/* Coach block */
.wfi-coach-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d1515 100%);
  border-radius: var(--radius);
  overflow: hidden;
  color: #fff;
  margin-top: 2rem;
}
.wfi-coach-block__image {
  position: relative;
  min-height: 320px;
}
.wfi-coach-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wfi-coach-block__badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--c-gold);
  color: var(--c-text);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  animation: pulse-badge 2s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
.wfi-coach-block__content {
  padding: 2rem 2rem 2rem 0;
}
.wfi-coach-block__content h2 {
  margin: 0 0 0.5rem;
  font-size: 1.75rem;
}
.wfi-coach-block__content h3 {
  color: var(--c-gold);
  margin: 0 0 1rem;
  font-size: 1rem;
}
.wfi-coach-block__content p {
  color: #ccc;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .wfi-coach-block {
    grid-template-columns: 1fr;
  }
  .wfi-coach-block__content {
    padding: 1.5rem;
  }
  .wfi-coach-block__image {
    min-height: 240px;
  }
}

/* Mission / monetization blocks */
.wfi-mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.wfi-mission-card {
  background: var(--c-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}
.wfi-mission-card:hover {
  transform: translateY(-4px);
}
.wfi-mission-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.wfi-mission-card__body {
  padding: 1.25rem;
}
.wfi-mission-card__body h3 {
  margin: 0 0 0.5rem;
}
.wfi-mundial-banner {
  background: linear-gradient(
    90deg,
    #aa151b 33%,
    #aa151b 33%,
    #f1bf00 66%,
    #f1bf00 66%
  );
  color: #fff;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: wfi-mundial-shimmer 3s ease-in-out infinite;
}
@media (max-width: 576px) {
  .wfi-mundial-banner {
    display: none;
  }
}
@media (max-width: 400px) {
  .wfi-squad-grid {
    grid-template-columns: 1fr !important;
  }
}
.wfi-mundial-banner__icon {
  font-size: 2.5rem;
  animation: wfi-bounce-icon 1.5s ease infinite;
}
@keyframes wfi-mundial-shimmer {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(255, 206, 0, 0);
  }
  50% {
    box-shadow: 0 0 24px rgba(255, 206, 0, 0.4);
  }
}
@keyframes wfi-bounce-icon {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
.wfi-monetize-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: var(--c-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}
.wfi-monetize-block--alt {
  background: linear-gradient(
    135deg,
    var(--c-card-alt) 0%,
    var(--c-surface) 100%
  );
  border: 1px solid var(--c-border);
  color: var(--c-text);
}
.wfi-monetize-block--alt .wfi-section__title,
.wfi-monetize-block--alt h2,
.wfi-monetize-block--alt p,
.wfi-monetize-block--alt a {
  color: var(--c-text);
}
.wfi-monetize-block--alt a {
  color: var(--c-gold);
}
.wfi-monetize-block--alt a:hover {
  color: #fff;
}
.wfi-monetize-block img {
  border-radius: var(--radius);
  width: 100%;
  height: 260px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .wfi-monetize-block {
    grid-template-columns: 1fr;
  }
}

/* Policy visuals */
.policy-wfi-hero-img {
  width: 100%;
  max-height: 220px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 2rem;
}
.policy-wfi-section {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--c-red);
  opacity: 0;
  transform: translateX(-12px);
  animation: policy-slide-in 0.6s ease forwards;
}
.policy-wfi-section:nth-child(even) {
  border-left-color: var(--c-gold);
  animation-delay: 0.1s;
}
@keyframes policy-slide-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.policy-wfi-section h2 {
  margin-top: 0;
}
.wfi-policy-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Contact map */
.wfi-contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
  border: 3px solid var(--c-gold);
}
.wfi-contact-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

/* About feature grid extensions */
.wfi-feature-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.wfi-feature-showcase article {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s;
}
.wfi-feature-showcase article:hover {
  transform: scale(1.02);
}
.wfi-feature-showcase__icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}
.wfi-feature-showcase img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}
/* —— Calendario del Mundial —— */
.wfi-calendar-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: hidden;
  padding-bottom: 0.75rem;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.wfi-calendar-scroll::-webkit-scrollbar {
  display: none;
}
.wfi-match-card {
  flex: 0 0 min(280px, 88vw);
  scroll-snap-align: start;
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--c-red);
  position: relative;
}
.wfi-match-card__icon {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 1.25rem;
  color: var(--c-gold);
}
.wfi-match-card__date {
  font-size: 0.8rem;
  color: var(--c-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem;
}
.wfi-match-card__venue {
  font-size: 0.85rem;
  color: var(--c-muted);
  margin: 0 0 1rem;
}
.wfi-match-card__teams {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.wfi-match-card__team {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.9rem;
  flex: 1;
  text-align: center;
}
.wfi-match-card__flag {
  font-size: 1.75rem;
}
.wfi-match-card__vs {
  color: var(--c-muted);
  font-size: 0.85rem;
  font-weight: 600;
}
.wfi-match-card__status {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.wfi-match-card__status--next {
  background: rgba(255, 215, 0, 0.15);
  color: var(--c-gold);
}
.wfi-match-card__status--live {
  background: rgba(230, 57, 70, 0.2);
  color: var(--c-red);
  animation: wfi-pulse-live 1.5s ease infinite;
}
.wfi-match-card__status--done {
  background: rgba(160, 160, 160, 0.15);
  color: var(--c-muted);
}
@keyframes wfi-pulse-live {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.65;
  }
}

/* —— Formación Táctica —— */
.wfi-tactics {
  max-width: 720px;
  margin: 0 auto;
}
.wfi-tactics__formations {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.wfi-tactics__formation-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.wfi-tactics__formations button[role="tab"],
.wfi-tactics__formations button[data-formation] {
  padding: 0.5rem 1rem;
  border: 2px solid var(--c-border);
  background: var(--c-card);
  color: var(--c-text);
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.wfi-tactics__formations button[data-formation][aria-pressed="true"] {
  background: var(--c-red);
  border-color: var(--c-red);
  color: #fff;
}
.wfi-tactics__field {
  position: relative;
  aspect-ratio: 68 / 105;
  max-height: 520px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #1a472a 0%, #2d6a3e 50%, #1a472a 100%);
}
.wfi-tactics__field-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 17, 23, 0.25);
  pointer-events: none;
}
.wfi-tactics__lines {
  position: absolute;
  inset: 5%;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
  pointer-events: none;
}
.wfi-tactics__lines::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
}
.wfi-tactics__lines::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18%;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.wfi-tactics__dot {
  position: absolute;
  width: 14%;
  aspect-ratio: 1;
  max-width: 44px;
  background: var(--c-gold);
  border: 2px solid var(--c-red);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition:
    top 0.45s ease,
    left 0.45s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  cursor: default;
}
.wfi-tactics__dot::after {
  content: attr(data-role);
  position: absolute;
  bottom: -1.4rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* —— Zona de Aficionados —— */
.wfi-fans-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.wfi-fan-post {
  background: var(--c-card);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--c-border);
  transition: border-color 0.2s;
}
.wfi-fan-post:hover {
  border-color: rgba(230, 57, 70, 0.4);
}
.wfi-fan-post__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.wfi-fan-post__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-red), var(--c-gold));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.wfi-fan-post__name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}
.wfi-fan-post__time {
  margin: 0;
  font-size: 0.8rem;
  color: var(--c-muted);
}
.wfi-fan-post__text {
  margin: 0 0 0.75rem;
  color: var(--c-text);
  line-height: 1.55;
}
.wfi-fan-post__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}
.wfi-fan-post__tag {
  font-size: 0.75rem;
  color: var(--c-red);
  font-weight: 600;
}
.wfi-fan-post__likes {
  font-size: 0.85rem;
  color: var(--c-red);
  font-weight: 600;
}
.wfi-fans-cta {
  text-align: center;
  margin-top: 2rem;
}

/* —— Leyendas de La Roja —— */
.wfi-legends-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: hidden;
  padding: 0.5rem 0 1rem;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  scroll-behavior: smooth;
}
.wfi-legends-scroll::-webkit-scrollbar {
  display: none;
}
.wfi-legend-card {
  flex: 0 0 min(260px, 85vw);
  scroll-snap-align: start;
  background: var(--c-card-alt);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  border: 2px solid var(--c-gold);
  text-align: center;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.wfi-legend-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(255, 215, 0, 0.15);
}
.wfi-legend-card__silhouette {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--c-gold);
  display: block;
  background: linear-gradient(145deg, var(--c-card-alt), var(--c-black));
}
.wfi-legend-card h3 {
  margin: 0 0 0.35rem;
  color: var(--c-gold);
  font-size: 1.05rem;
}
.wfi-legend-card__years {
  font-size: 0.8rem;
  color: var(--c-muted);
  margin: 0 0 0.75rem;
}
.wfi-legend-card__desc {
  font-size: 0.9rem;
  color: var(--c-text);
  margin: 0 0 1rem;
  line-height: 1.5;
}
.wfi-legend-card__stats {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  font-size: 0.8rem;
}
.wfi-legend-card__stat strong {
  display: block;
  color: var(--c-gold);
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .wfi-fans-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .wfi-fans-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* —— Fantasy Football 4-3-3 —— */
.wfi-fantasy {
  background: var(--c-card);
  border-radius: var(--radius);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.wfi-fantasy__topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, #141110 0%, #2a1815 55%, #3d1518 100%);
  border-bottom: 2px solid var(--c-gold);
}

.wfi-fantasy__brand {
  margin: 0;
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
}

.wfi-fantasy__brand span {
  color: var(--c-gold);
}

.wfi-fantasy__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: #ccc;
}

.wfi-fantasy__stats strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
}

.wfi-fantasy__stats .wfi-fantasy__budget strong {
  color: var(--c-gold);
}

.wfi-fantasy__workspace {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.wfi-fantasy__pitch-wrap {
  position: relative;
  padding: 1.25rem;
  background: #0a0e14;
}

.wfi-fantasy__pitch {
  position: relative;
  aspect-ratio: 68 / 105;
  max-height: 560px;
  margin: 0 auto;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(13, 17, 23, 0.35), rgba(13, 17, 23, 0.35)),
    repeating-linear-gradient(
      90deg,
      #1a472a 0,
      #1a472a 8%,
      #2d6a3e 8%,
      #2d6a3e 16%
    );
  border: 2px solid rgba(255, 215, 0, 0.45);
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}

.wfi-fantasy__pitch::before {
  content: "";
  position: absolute;
  inset: 6%;
  border: 2px solid rgba(255, 215, 0, 0.35);
  border-radius: 4px;
  pointer-events: none;
}

.wfi-fantasy__pitch::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 6%;
  right: 6%;
  height: 2px;
  background: rgba(255, 215, 0, 0.35);
  pointer-events: none;
}

.wfi-fantasy__slot {
  position: absolute;
  width: clamp(72px, 14%, 96px);
  transform: translate(-50%, -50%);
  padding: 0.35rem 0.25rem 0.5rem;
  border: 2px dashed rgba(255, 215, 0, 0.45);
  border-radius: 10px;
  background: rgba(30, 41, 59, 0.85);
  color: #e8e8e8;
  cursor: pointer;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
  text-align: center;
  font-family: inherit;
}

.wfi-fantasy__slot:hover,
.wfi-fantasy__slot.is-active {
  border-color: var(--c-red);
  box-shadow: 0 0 16px rgba(230, 57, 70, 0.35);
  transform: translate(-50%, -50%) scale(1.04);
}

.wfi-fantasy__slot.is-filled {
  border-style: solid;
  border-color: var(--c-gold);
  background: var(--c-card-alt);
}

.wfi-fantasy__slot-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  background: var(--c-red);
  color: #fff;
  margin-bottom: 0.2rem;
}

.wfi-fantasy__slot-empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0.25rem auto;
  border-radius: 50%;
  background: rgba(255, 215, 0, 0.15);
  color: var(--c-gold);
  font-size: 1.25rem;
  font-weight: 700;
}

.wfi-fantasy__slot-pos-label {
  display: block;
  font-size: 0.65rem;
  color: var(--c-muted);
}

.wfi-fantasy__slot-photo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  margin: 0 auto 0.2rem;
  border: 2px solid var(--c-gold);
}

.wfi-fantasy__slot-name {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
}

.wfi-fantasy__slot-club {
  display: block;
  font-size: 0.55rem;
  color: var(--c-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wfi-fantasy__slot-remove {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c-red);
  color: #fff;
  font-size: 0.9rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid var(--c-black);
}

.wfi-fantasy__slot-status {
  position: absolute;
  top: -4px;
  left: -4px;
  font-size: 0.75rem;
}

.wfi-fantasy__pool {
  padding: 1.25rem;
  background: #12161e;
  border-top: 1px solid var(--c-border);
}

.wfi-fantasy__pool-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.wfi-fantasy__pool-header h3 {
  margin: 0;
  font-size: 1rem;
  color: #fff;
}

.wfi-fantasy__pool-header select {
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--c-border);
  background: var(--c-card);
  color: var(--c-text);
  font-family: inherit;
}

.wfi-fantasy__table-wrap {
  overflow-x: hidden;
  border-radius: 8px;
  border: 1px solid var(--c-border);
}

.wfi-fantasy__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: clamp(0.68rem, 1.8vw, 0.85rem);
}

.wfi-fantasy__table th {
  text-align: left;
  padding: 0.5rem 0.4rem;
  background: #1a1f2e;
  color: var(--c-muted);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  border-bottom: 1px solid var(--c-border);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wfi-fantasy__table td {
  padding: 0.45rem 0.4rem;
  border-bottom: 1px solid var(--c-border);
  vertical-align: middle;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wfi-fantasy__row {
  background: var(--c-card);
  transition: background 0.2s;
}

.wfi-fantasy__row:hover {
  background: var(--c-surface, var(--c-card-alt));
}

.wfi-fantasy__row.is-used {
  opacity: 0.55;
}

.wfi-fantasy__row--warn {
  box-shadow: inset 3px 0 0 var(--c-red);
}

.wfi-fantasy__cell-player {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}

.wfi-fantasy__cell-player strong {
  display: block;
  font-size: 0.9rem;
}

.wfi-fantasy__cell-player span {
  font-size: 0.75rem;
  color: var(--c-muted);
}

.wfi-fantasy__pool-photo {
  width: 200%;
  transform: translateX(-25%);
  max-width: none;
  object-fit: cover;
  object-position: top;
}

.wfi-fantasy__pool-photo-container {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--c-border);
  flex-shrink: 0;
  overflow: hidden;
}

.wfi-fantasy__table th:nth-child(1),
.wfi-fantasy__table td:nth-child(1) {
  width: 2rem;
  padding-left: 0.35rem;
  padding-right: 0.15rem;
}

/* .wfi-fantasy__table th:nth-child(2),
.wfi-fantasy__table td:nth-child(2) {
  width: 38%;
} */

.wfi-fantasy__table th:nth-child(3),
.wfi-fantasy__table td:nth-child(3) {
  width: 22%;
}

.wfi-fantasy__table th:nth-child(4),
.wfi-fantasy__table td:nth-child(4),
.wfi-fantasy__table th:nth-child(5),
.wfi-fantasy__table td:nth-child(5) {
  width: 12%;
}

.wfi-fantasy__table th:nth-child(6),
.wfi-fantasy__table td:nth-child(6) {
  width: 2.5rem;
  text-align: center;
  padding-right: 0.35rem;
}

@media (max-width: 480px) {
  .wfi-fantasy__table th:nth-child(1),
  .wfi-fantasy__table td:nth-child(1),
  .wfi-fantasy__table th:nth-child(3),
  .wfi-fantasy__table td:nth-child(3) {
    display: none;
  }

  .wfi-fantasy__cell-player span {
    display: none;
  }

  .wfi-fantasy__pool-photo {
    width: 28px;
    height: 28px;
  }

  .wfi-fantasy__table td:nth-child(5),
  .wfi-fantasy__table th:nth-child(5) {
    width: 59px;
  }
  .wfi-fantasy__table td {
    border-bottom: 0;
  }
  .wfi-fantasy__slot {
    transform: scale(0.8) translate(-60%, -70%);
    transform-origin: center;
  }
  .wfi-fantasy__cell-player strong {
    font-size: 12px;
  }
  .wfi-fantasy__table td:nth-child(4),
  .wfi-fantasy__table th:nth-child(4) {
    width: 46px !important;
  }
}

.wfi-fantasy__add-btn {
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 8px;
  background: var(--c-red);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s;
}

.wfi-fantasy__add-btn:hover:not(:disabled) {
  background: #c1121f;
  transform: scale(1.08);
}

.wfi-fantasy__add-btn:disabled {
  background: #4a5568;
  cursor: not-allowed;
}

.wfi-fantasy__empty {
  text-align: center;
  padding: 2rem !important;
  color: var(--c-muted);
}

.wfi-fantasy__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  padding: 0.85rem 1.25rem;
  background: var(--c-black);
  border-top: 1px solid var(--c-border);
  font-size: 0.8rem;
  color: var(--c-muted);
}

.wfi-fantasy__actions {
  padding: 1rem 1.25rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--c-border);
}

.wfi-fantasy__hint {
  flex: 1;
  min-width: 200px;
  margin: 0;
  font-size: 0.85rem;
  color: var(--c-gold);
  min-height: 1.2em;
}

.wfi-fantasy__back-field {
  display: none;
  margin-top: 0.75rem;
  width: 100%;
}

@media (min-width: 1200px) {
  .wfi-fantasy__workspace {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  }

  .wfi-fantasy__pool {
    border-top: none;
    border-left: 1px solid var(--c-border);
    max-height: 680px;
    overflow-y: auto;
  }
}

@media (max-width: 1199px) {
  .wfi-fantasy__workspace {
    grid-template-columns: 1fr;
  }

  .wfi-fantasy__pitch-wrap {
    min-width: 0;
  }

  .wfi-fantasy__pool {
    border-top: 1px solid var(--c-border);
    border-left: none;
  }
}

@media (max-width: 767px) {
  .wfi-fantasy__pool {
    display: none;
  }

  .wfi-fantasy--show-pool .wfi-fantasy__pitch-wrap {
    display: none;
  }

  .wfi-fantasy--show-pool .wfi-fantasy__pool {
    display: block;
  }

  .wfi-fantasy--show-pool .wfi-fantasy__back-field {
    display: inline-flex;
  }
}

/* —— Blog —— */
.wfi-blog-grid .wfi-blog-card:not(:last-child) {
  margin-bottom: 30px;
}
.wfi-blog-card {
  background: var(--c-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.wfi-blog-card__img {
  width: 100%;
  height: auto;
  display: block;
}
.wfi-blog-card__body {
  padding: 1.25rem 1.5rem;
}
.wfi-blog-card__body time {
  font-size: 0.85rem;
  color: var(--c-gold);
  font-weight: 600;
}
.wfi-blog-card__body h2 {
  margin: 0.5rem 0 0.75rem;
  font-size: 1.25rem;
}
.wfi-blog-card__body p {
  margin: 0;
  color: var(--c-muted);
}
