/* ============================================================
   VCF ACADEMY HOUSTON — Global Stylesheet
   Inspired by valenciacf.com official design
   Fonts: Barlow Condensed (display) + Barlow (body)
   ============================================================ */

/* Fonts loaded via <link> in header.php — no @import needed here */

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --vcf-black:      #080808;
  --vcf-dark:       #111111;
  --vcf-dark2:      #181818;
  --vcf-dark3:      #222222;
  --vcf-dark4:      #2a2a2a;
  --vcf-orange:     #FF6B00;
  --vcf-orange2:    #E05D00;
  --vcf-orange-dim: rgba(255,107,0,0.10);
  --vcf-orange-glow:rgba(255,107,0,0.20);
  --vcf-white:      #FFFFFF;
  --vcf-offwhite:   #F0EEE8;
  --vcf-gray:       #888888;
  --vcf-lightgray:  #BBBBBB;
  --vcf-border:     rgba(255,255,255,0.07);
  --vcf-border2:    rgba(255,255,255,0.12);
  --vcf-green:      #4ade80;
  --vcf-red:        #f87171;
  --vcf-blue:       #60a5fa;

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Barlow', 'Helvetica Neue', sans-serif;

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --transition: 0.18s ease;
  --page-max: 1280px;
  --page-pad: 28px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--vcf-black);
  color: var(--vcf-white);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--vcf-dark); }
::-webkit-scrollbar-thumb { background: var(--vcf-dark4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--vcf-orange); }

/* ── TOPBAR ── */
.vcf-topbar {
  background: #000;
  border-bottom: 1px solid var(--vcf-border);
  height: 38px;
  display: flex;
  align-items: center;
  padding: 0 var(--page-pad);
}
.vcf-topbar__inner {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vcf-topbar__links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.vcf-topbar__links a {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vcf-gray);
  padding: 2px 8px;
  transition: color var(--transition);
}
.vcf-topbar__links a:hover { color: var(--vcf-orange); }
.vcf-topbar__links a.active { color: var(--vcf-orange); }
.vcf-topbar__sep {
  width: 1px;
  height: 12px;
  background: var(--vcf-border2);
}
.vcf-topbar__badge {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #444;
}

/* ── NAVBAR ── */
.vcf-nav {
  background: var(--vcf-dark);
  border-bottom: 1px solid var(--vcf-border);
  position: sticky;
  top: 0;
  z-index: 200;
  height: 64px;
}
.vcf-nav__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 0;
}
.vcf-nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: 28px;
  flex-shrink: 0;
}
.vcf-nav__crest {
  width: 40px;
  height: auto;
  max-height: 52px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
  transition: transform var(--transition), filter var(--transition);
}
.vcf-nav__logo:hover .vcf-nav__crest {
  transform: scale(1.06) rotate(-1.5deg);
  filter: drop-shadow(0 0 10px rgba(255, 107, 0, 0.4));
}
.vcf-nav__flag {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.vcf-nav__flag span {
  display: block;
  width: 32px;
  height: 8px;
}
.vcf-nav__flag .f1 { background: var(--vcf-orange); }
.vcf-nav__flag .f2 { background: var(--vcf-white); }
.vcf-nav__flag .f3 { background: var(--vcf-black); border: 1px solid #333; }
.vcf-nav__text { display: flex; flex-direction: column; line-height: 1.1; }
.vcf-nav__text .t1 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--vcf-white);
}
.vcf-nav__text .t2 {
  font-family: var(--font-display);
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--vcf-orange);
}
.vcf-nav__links {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 2px;
}
.vcf-nav__links a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--vcf-lightgray);
  padding: 7px 11px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
  position: relative;
}
.vcf-nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--vcf-orange);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.vcf-nav__links a:hover { color: var(--vcf-white); }
.vcf-nav__links a:hover::after,
.vcf-nav__links a.active::after { transform: scaleX(1); }
.vcf-nav__links a.active { color: var(--vcf-orange); }
.vcf-nav__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
  flex-shrink: 0;
}
.vcf-nav__admin-link {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vcf-gray);
  padding: 8px 12px;
  border: 1px solid var(--vcf-border2);
  border-radius: var(--radius-sm);
  transition: color var(--transition), border-color var(--transition), background var(--transition);
  white-space: nowrap;
}
.vcf-nav__admin-link:hover {
  color: var(--vcf-orange);
  border-color: rgba(255, 107, 0, 0.45);
  background: rgba(255, 107, 0, 0.08);
}
.vcf-nav__cta {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--vcf-orange);
  color: #fff !important;
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  white-space: nowrap;
  margin-left: 0;
}
.vcf-nav__cta:hover { background: var(--vcf-orange2); }
.vcf-nav__cta::after { display: none !important; }

/* Hamburger (mobile) */
.vcf-nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 6px;
}
.vcf-nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--vcf-white);
  transition: transform var(--transition), opacity var(--transition);
}
.vcf-nav__mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: var(--vcf-dark);
  border-bottom: 1px solid var(--vcf-border);
  padding: 16px var(--page-pad);
  z-index: 199;
  flex-direction: column;
  gap: 4px;
}
.vcf-nav__mobile.open { display: flex; }
.vcf-nav__mobile a {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vcf-lightgray);
  padding: 10px 8px;
  border-bottom: 1px solid var(--vcf-border);
  transition: color var(--transition);
}
.vcf-nav__mobile a:hover,
.vcf-nav__mobile a.active { color: var(--vcf-orange); }

@keyframes vcf-logo-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
}

@keyframes vcf-logo-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.035); }
}

@keyframes vcf-logo-premium {
  0%, 100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
  }
  50% {
    transform: translateY(-1px) scale(1.015);
    filter: drop-shadow(0 0 8px rgba(255, 107, 0, 0.28));
  }
}

.vcf-logo-anim--float {
  animation: vcf-logo-float 5.5s ease-in-out infinite;
}

.vcf-logo-anim--pulse {
  animation: vcf-logo-pulse 2.8s ease-in-out infinite;
}

.vcf-logo-anim--premium {
  animation: vcf-logo-premium 4.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .vcf-nav__crest,
  .vcf-logo-anim--float,
  .vcf-logo-anim--pulse,
  .vcf-logo-anim--premium {
    animation: none;
    transition: none;
  }
}

/* ── HERO ── */
.vcf-hero {
  position: relative;
  height: 560px;
  overflow: hidden;
  background: var(--vcf-dark);
  display: flex;
  align-items: flex-end;
}
.vcf-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.vcf-hero__bg.loaded { transform: scale(1); }

/* Hero slideshow (images from hero_slides + fallback) */
.vcf-hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.vcf-hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s ease, transform 8s ease;
  z-index: 0;
}
.vcf-hero__slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
.vcf-hero__slide.leaving {
  opacity: 0;
  transform: scale(1.04);
  z-index: 0;
}
.vcf-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(8,8,8,0.25) 0%, rgba(8,8,8,0.85) 100%),
    linear-gradient(to right, rgba(8,8,8,0.7) 0%, transparent 65%);
}
.vcf-hero__pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: radial-gradient(circle, rgba(255,107,0,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.6;
  mix-blend-mode: screen;
}
.vcf-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad) 44px;
}
.vcf-hero__dots {
  position: absolute;
  bottom: 20px;
  right: 28px;
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}
.vcf-hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.vcf-hero__dot.active {
  background: var(--vcf-orange);
  transform: scale(1.3);
}
.vcf-hero__dot:hover {
  background: rgba(255, 255, 255, 0.6);
}
.vcf-hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}
.vcf-hero__arrow:hover {
  background: var(--vcf-orange);
  border-color: var(--vcf-orange);
  color: #fff;
}
.vcf-hero__arrow--prev { left: 20px; }
.vcf-hero__arrow--next { right: 20px; }
.vcf-hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vcf-orange);
  border: 1px solid rgba(255,107,0,0.35);
  background: var(--vcf-orange-dim);
  padding: 4px 12px;
  margin-bottom: 14px;
}
.vcf-hero__tag::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--vcf-orange);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}
.vcf-hero__eyebrow {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--vcf-orange);
  margin-bottom: 6px;
}
.vcf-hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 76px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 0.9;
  color: var(--vcf-white);
  margin-bottom: 8px;
}
.vcf-hero__title em {
  font-style: normal;
  color: var(--vcf-orange);
}
.vcf-hero__tagline {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
}

/* ── MATCH WIDGET (hero) ── */
.vcf-match-widget {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  background: rgba(0,0,0,0.72);
  border: 1px solid var(--vcf-border2);
  border-left: 3px solid var(--vcf-orange);
  padding: 14px 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.vcf-match-widget__date {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vcf-orange);
  margin-bottom: 4px;
}
.vcf-match-widget__teams {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vcf-match-widget__team {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.vcf-match-widget__vs {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: var(--vcf-gray);
  letter-spacing: 0.1em;
}
.vcf-match-widget__venue {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vcf-gray);
  margin-top: 4px;
}
.vcf-match-widget__countdown {
  display: flex;
  gap: 4px;
}
.vcf-count {
  background: var(--vcf-orange-dim);
  border: 1px solid rgba(255,107,0,0.22);
  padding: 6px 10px;
  min-width: 44px;
  text-align: center;
}
.vcf-count__num {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--vcf-orange);
  line-height: 1;
  display: block;
}
.vcf-count__label {
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vcf-gray);
  display: block;
  margin-top: 2px;
}
.vcf-match-widget__btns { display: flex; gap: 8px; flex-direction: column; }
.vcf-match-widget__btn {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}
.vcf-match-widget__btn--primary {
  background: var(--vcf-orange);
  color: #fff;
}
.vcf-match-widget__btn--primary:hover { background: var(--vcf-orange2); }
.vcf-match-widget__btn--secondary {
  border: 1px solid var(--vcf-border2);
  color: var(--vcf-lightgray);
}
.vcf-match-widget__btn--secondary:hover { border-color: var(--vcf-orange); color: var(--vcf-orange); }

/* ── SEASON STATS BAR ── */
.vcf-statsbar {
  background: var(--vcf-dark);
  border-bottom: 1px solid var(--vcf-border);
}
.vcf-statsbar__label {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 9px var(--page-pad);
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--vcf-border);
}
.vcf-statsbar__label span:first-child {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vcf-orange);
}
.vcf-statsbar__label span:last-child {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #444;
}
.vcf-statsbar__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  max-width: var(--page-max);
  margin: 0 auto;
}
.vcf-stat {
  padding: 18px 12px;
  text-align: center;
  border-right: 1px solid var(--vcf-border);
}
.vcf-stat:last-child { border-right: none; }
.vcf-stat__val {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  line-height: 1;
  color: var(--vcf-white);
  margin-bottom: 4px;
}
.vcf-stat__val.pos { color: var(--vcf-green); }
.vcf-stat__val.neg { color: var(--vcf-red); }
.vcf-stat__val.accent { color: var(--vcf-orange); }
.vcf-stat__lbl {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vcf-gray);
}

/* ── SECTION WRAPPER ── */
.vcf-section {
  padding: 44px var(--page-pad);
  border-bottom: 1px solid var(--vcf-border);
  max-width: var(--page-max);
  margin: 0 auto;
}
.vcf-section--dark {
  background: var(--vcf-dark2);
  max-width: 100%;
  padding: 44px 0;
  border-bottom: 1px solid var(--vcf-border);
}
.vcf-section--dark .vcf-section__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 0 var(--page-pad);
}

/* ── SECTION HEADER ── */
.vcf-section__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 8px;
}
.vcf-section__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--vcf-white);
}
.vcf-section__title em {
  font-style: normal;
  color: var(--vcf-orange);
}
.vcf-section__more {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vcf-orange);
  border-bottom: 1px solid rgba(255,107,0,0.3);
  padding-bottom: 1px;
  transition: border-color var(--transition);
}
.vcf-section__more:hover { border-color: var(--vcf-orange); }

/* ── PILLARS (Methodology) ── */
.vcf-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.vcf-pillar {
  background: var(--vcf-dark2);
  padding: 28px 22px;
  border-top: 3px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.vcf-pillar:hover {
  border-top-color: var(--vcf-orange);
  background: var(--vcf-dark3);
}
.vcf-pillar__num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: rgba(255,107,0,0.10);
  line-height: 1;
  margin-bottom: 8px;
}
.vcf-pillar__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--vcf-white);
  margin-bottom: 8px;
}
.vcf-pillar__desc {
  font-size: 13px;
  color: var(--vcf-gray);
  line-height: 1.6;
}

/* ── FORMATION VIEWER (enhanced) ── */
.vfv-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 16px;
  align-items: start;
}
.vfv-pitch {
  background: linear-gradient(180deg, #143614 0%, #1a4a1a 50%, #143614 100%);
  border: 1px solid var(--vcf-border);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.vfv-pitch-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.vfv-pos {
  position: absolute;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 3;
}
.vfv-pos__dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--vcf-orange);
  border: 2.5px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  overflow: hidden;
}
.vfv-pos__dot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.vfv-pos:hover .vfv-pos__dot,
.vfv-pos.active .vfv-pos__dot {
  transform: scale(1.28);
  box-shadow: 0 0 18px rgba(255, 107, 0, 0.65);
  border-color: rgba(255, 255, 255, 0.6);
}
.vfv-pos.active .vfv-pos__dot {
  background: #fff;
  color: var(--vcf-orange);
}
.vfv-pos__label {
  position: absolute;
  top: 37px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 7.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  background: rgba(0, 0, 0, 0.6);
  padding: 1px 5px;
  border-radius: 2px;
  pointer-events: none;
  letter-spacing: 0.06em;
}
.vfv-strip-label {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vcf-dark4);
  margin: 10px 0 6px;
}
.vfv-strip {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.vfv-chip {
  display: flex;
  align-items: center;
  gap: 5px;
  background: var(--vcf-dark2);
  border: 1px solid var(--vcf-border);
  padding: 5px 10px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--vcf-gray);
  transition: all var(--transition);
  white-space: nowrap;
}
.vfv-chip:hover,
.vfv-chip.active {
  border-color: var(--vcf-orange);
  color: var(--vcf-orange);
  background: #1e1916;
}
.vfv-chip__num {
  font-size: 9px;
  color: var(--vcf-dark4);
}
.vfv-chip.active .vfv-chip__num {
  color: rgba(255, 107, 0, 0.6);
}
.vfv-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vfv-detail {
  background: var(--vcf-dark2);
  border: 1px solid var(--vcf-border);
  border-top: 3px solid var(--vcf-orange);
  min-height: 160px;
}
.vfv-placeholder {
  padding: 32px 20px;
  text-align: center;
}
.vfv-placeholder__icon {
  font-size: 28px;
  opacity: 0.18;
  margin-bottom: 8px;
}
.vfv-placeholder__text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vcf-dark4);
}
.vfv-placeholder__sub {
  font-size: 11px;
  color: var(--vcf-dark3);
  margin-top: 4px;
}
.vfv-detail-inner {
  padding: 18px;
}
.vfv-detail__tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vcf-orange);
  margin-bottom: 4px;
}
.vfv-detail__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--vcf-offwhite);
  line-height: 1.1;
  margin-bottom: 10px;
}
.vfv-detail__desc {
  font-size: 12px;
  color: var(--vcf-gray);
  line-height: 1.7;
  margin-bottom: 14px;
}
.vfv-assigned {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #0f0f0f;
  border: 1px solid rgba(255, 107, 0, 0.2);
  padding: 10px 12px;
  margin-bottom: 12px;
}
.vfv-assigned__av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--vcf-orange);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  color: var(--vcf-orange);
}
.vfv-assigned__av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vfv-assigned__name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--vcf-offwhite);
  line-height: 1.2;
}
.vfv-assigned__num {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vcf-orange);
  margin-top: 2px;
}
.vfv-attrs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.vfv-attr {
  background: #111;
  padding: 6px 8px;
  border-left: 2px solid var(--vcf-orange);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--vcf-gray);
}
.vfv-mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.vfv-mini-stat {
  background: var(--vcf-dark2);
  padding: 10px 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.vfv-mini-val {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--vcf-offwhite);
  line-height: 1;
}
.vfv-mini-val.pos {
  color: var(--vcf-green);
}
.vfv-mini-val.neg {
  color: var(--vcf-red);
}
.vfv-mini-val.accent {
  color: var(--vcf-orange);
}
.vfv-mini-lbl {
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vcf-dark4);
  margin-top: 3px;
}
@media (max-width: 860px) {
  .vfv-grid {
    grid-template-columns: 1fr;
  }
  .vfv-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
@media (max-width: 500px) {
  .vfv-panel {
    grid-template-columns: 1fr;
  }
  .vfv-pos__dot {
    width: 26px;
    height: 26px;
    font-size: 7px;
  }
}
.vcf-formation__tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}
.vcf-formation__tab {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--vcf-border2);
  color: var(--vcf-gray);
  transition: all var(--transition);
  cursor: pointer;
}
.vcf-formation__tab.active,
.vcf-formation__tab:hover {
  background: var(--vcf-orange);
  border-color: var(--vcf-orange);
  color: #fff;
}

/* ── ROSTER GRID ── */
.vcf-roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 2px;
}
.vcf-player {
  background: var(--vcf-dark2);
  padding: 18px 8px 14px;
  text-align: center;
  cursor: pointer;
  border-top: 2px solid transparent;
  position: relative;
  overflow: hidden;
  transition: background var(--transition), border-color var(--transition);
}
.vcf-player:hover {
  background: var(--vcf-dark3);
  border-top-color: var(--vcf-orange);
}
.vcf-player__num {
  position: absolute;
  top: 6px;
  right: 8px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  user-select: none;
}
.vcf-player__avatar {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--vcf-dark3);
  border: 2px solid var(--vcf-border);
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--vcf-orange);
  overflow: hidden;
  flex-shrink: 0;
}
.vcf-player__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vcf-player__name {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--vcf-white);
  line-height: 1.25;
  margin-bottom: 4px;
}
.vcf-player__pos {
  font-family: var(--font-display);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vcf-orange);
}

/* ── PLAYER MODAL ── */
.vcf-modal-bg {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
}
.vcf-modal-bg.open { display: flex; }
.vcf-modal {
  background: var(--vcf-dark2);
  border: 1px solid var(--vcf-border2);
  border-top: 3px solid var(--vcf-orange);
  width: 100%;
  max-width: 500px;
  padding: 28px;
  position: relative;
}
.vcf-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  background: var(--vcf-dark3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--vcf-gray);
  transition: color var(--transition), background var(--transition);
}
.vcf-modal__close:hover { background: var(--vcf-orange); color: #fff; }
.vcf-modal__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.vcf-modal__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid var(--vcf-orange);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--vcf-dark3);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--vcf-orange);
}
.vcf-modal__avatar img { width: 100%; height: 100%; object-fit: cover; }
.vcf-modal__num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: rgba(255,107,0,0.15);
  line-height: 1;
}
.vcf-modal__info { flex: 1; }
.vcf-modal__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--vcf-white);
  line-height: 1.1;
  margin-bottom: 4px;
}
.vcf-modal__pos {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vcf-orange);
}
.vcf-modal__stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  margin-bottom: 20px;
}
.vcf-modal__stat {
  background: var(--vcf-dark3);
  padding: 12px 6px;
  text-align: center;
}
.vcf-modal__stat-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--vcf-white);
  line-height: 1;
}
.vcf-modal__stat-lbl {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vcf-gray);
  margin-top: 3px;
}
.vcf-skills { }
.vcf-skills__title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vcf-gray);
  margin-bottom: 12px;
}
.vcf-skill-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.vcf-skill-row__lbl {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vcf-gray);
  width: 40px;
  flex-shrink: 0;
}
.vcf-skill-row__bar {
  flex: 1;
  height: 4px;
  background: var(--vcf-dark4);
  border-radius: 2px;
  overflow: hidden;
}
.vcf-skill-row__fill {
  height: 100%;
  background: var(--vcf-orange);
  border-radius: 2px;
  transition: width 0.6s ease;
}
.vcf-skill-row__val {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: var(--vcf-orange);
  width: 22px;
  text-align: right;
  flex-shrink: 0;
}

/* ── RESULTS TABLE ── */
.vcf-table-wrap { overflow-x: auto; }
.vcf-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}
.vcf-table thead th {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vcf-gray);
  padding: 8px 14px;
  text-align: left;
  border-bottom: 2px solid var(--vcf-border2);
}
.vcf-table tbody td {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 13px 14px;
  border-bottom: 1px solid var(--vcf-border);
  color: var(--vcf-lightgray);
  vertical-align: middle;
}
.vcf-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
.vcf-table .score {
  font-weight: 900;
  color: var(--vcf-white);
  letter-spacing: 0.05em;
  font-size: 15px;
}
.vcf-result {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  border-radius: var(--radius-sm);
}
.vcf-result--W { background: rgba(74,222,128,0.14); color: var(--vcf-green); }
.vcf-result--L { background: rgba(248,113,113,0.14); color: var(--vcf-red); }
.vcf-result--D { background: rgba(255,255,255,0.06); color: var(--vcf-lightgray); }
.vcf-table .upcoming td { color: #666; }
.vcf-table .upcoming .score { color: #444; }

/* Latest Results (home): style.css uses --vcf-text for draws and gray for losers — unreadable on dark */
.vcf-section--dark .vcf-table-results .vcf-result-draw {
  color: var(--vcf-lightgray) !important;
}
.vcf-section--dark .vcf-table-results .vcf-result-loser {
  color: var(--vcf-lightgray) !important;
  font-weight: 500;
}
.vcf-section--dark .vcf-table-results .vcf-result-winner {
  color: var(--vcf-orange) !important;
}
.vcf-section--dark .vcf-table-results .vcf-badge-d {
  color: var(--vcf-lightgray) !important;
  border-color: var(--vcf-border2);
  background-color: rgba(255, 255, 255, 0.04);
}
.vcf-section--dark .vcf-table-results .vcf-badge-l {
  color: var(--vcf-lightgray) !important;
  background-color: rgba(255, 255, 255, 0.06);
  border-color: var(--vcf-border2);
}
.vcf-section--dark .vcf-table-results .vcf-team-logo-placeholder {
  background-color: var(--vcf-dark3);
  color: var(--vcf-lightgray);
  border: 1px solid var(--vcf-border);
}
.vcf-badge-upcoming {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--vcf-orange-dim);
  border: 1px solid rgba(255,107,0,0.25);
  color: var(--vcf-orange);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}
.vcf-cal-btn {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vcf-gray);
  border: 1px solid var(--vcf-border2);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.vcf-cal-btn:hover { color: var(--vcf-orange); border-color: var(--vcf-orange); }

/* ── MATCH REELS (grid redesign) ── */
.vcf-reels-section {
  background: #080808;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 44px var(--page-pad);
  border-bottom: 1px solid var(--vcf-border);
}
.vcf-reels-inner {
  width: 100%;
}
.vcf-reels-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.vcf-reels-header-bar {
  display: block;
  width: 4px;
  height: 30px;
  background: var(--vcf-orange);
  border-radius: 2px;
  flex-shrink: 0;
}
.vcf-reels-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 900;
  color: var(--vcf-white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}
.vcf-reels-title span {
  color: var(--vcf-orange);
}
.vcf-reels-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, 1fr);
}
.vcf-reel-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: #161616;
  cursor: pointer;
  outline: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.vcf-reel-card.vcf-reel-visible {
  opacity: 1;
  transform: translateY(0);
}
.vcf-reel-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: border-color 0.25s ease;
  pointer-events: none;
  z-index: 4;
}
.vcf-reel-card:hover::after,
.vcf-reel-card:focus-visible::after {
  border-color: var(--vcf-orange);
}
.vcf-reel-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.82);
}
.vcf-reel-card:hover .vcf-reel-media,
.vcf-reel-card:focus-visible .vcf-reel-media {
  transform: scale(1.06);
  filter: brightness(0.45);
}
.vcf-reel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 55%);
  z-index: 1;
  pointer-events: none;
}
.vcf-reel-play-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  z-index: 3;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
}
.vcf-reel-card:hover .vcf-reel-play-wrap,
.vcf-reel-card:focus-visible .vcf-reel-play-wrap {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.vcf-reel-play-btn {
  width: 52px;
  height: 52px;
  background: var(--vcf-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px rgba(255, 107, 0, 0.2);
}
.vcf-reel-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  line-height: 1.4;
}
.vcf-reel-badge--highlight {
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid var(--vcf-orange);
  color: var(--vcf-orange);
}
.vcf-reel-badge--golazo {
  background: rgba(255, 215, 0, 0.15);
  border: 1px solid #ffd700;
  color: #ffd700;
}
.vcf-reel-badge--entrenamiento {
  background: rgba(100, 200, 100, 0.12);
  border: 1px solid #64c864;
  color: #64c864;
}
.vcf-reel-num {
  position: absolute;
  top: 8px;
  right: 10px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
  transition: opacity 0.2s;
}
.vcf-reel-card:hover .vcf-reel-num {
  opacity: 0;
}
.vcf-reel-title {
  position: absolute;
  bottom: 30px;
  left: 10px;
  right: 10px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.vcf-reel-card:hover .vcf-reel-title {
  opacity: 1;
  transform: translateY(0);
}
@media (min-width: 576px) {
  .vcf-reels-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 900px) {
  .vcf-reels-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1200px) {
  .vcf-reels-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ── CALENDAR ── */
.vcf-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-top: 20px;
}
.vcf-cal-head {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vcf-gray);
  text-align: center;
  padding: 8px 0;
}
.vcf-cal-day {
  background: var(--vcf-dark2);
  min-height: 72px;
  padding: 8px;
  position: relative;
  border: 1px solid transparent;
  transition: border-color var(--transition);
}
.vcf-cal-day:hover { border-color: var(--vcf-border2); }
.vcf-cal-day--empty { background: transparent; border: none; }
.vcf-cal-day--today { border-color: var(--vcf-orange) !important; }
.vcf-cal-day__num {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--vcf-gray);
  margin-bottom: 4px;
}
.vcf-cal-day--today .vcf-cal-day__num { color: var(--vcf-orange); }
.vcf-cal-event {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--vcf-orange-dim);
  border-left: 2px solid var(--vcf-orange);
  color: var(--vcf-orange);
  padding: 2px 5px;
  margin-top: 3px;
  line-height: 1.4;
}

/* ── TRAINING GROUNDS ── */
.vcf-grounds {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2px;
}
.vcf-ground {
  background: var(--vcf-dark2);
  padding: 24px;
  border-left: 3px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.vcf-ground:hover { border-left-color: var(--vcf-orange); background: var(--vcf-dark3); }
.vcf-ground__name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--vcf-white);
  margin-bottom: 6px;
}
.vcf-ground__addr {
  font-size: 12px;
  color: var(--vcf-gray);
  margin-bottom: 14px;
  line-height: 1.5;
}
.vcf-ground__schedule { margin-bottom: 14px; }
.vcf-ground__schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid var(--vcf-border);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.vcf-ground__schedule-row span:first-child { color: var(--vcf-gray); }
.vcf-ground__schedule-row span:last-child { color: var(--vcf-orange); }
.vcf-ground__gps {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vcf-gray);
  border: 1px solid var(--vcf-border2);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.vcf-ground__gps:hover { color: var(--vcf-orange); border-color: var(--vcf-orange); }

/* ── STAR OF MONTH ── */
.vcf-star {
  background: var(--vcf-dark2);
  border: 1px solid var(--vcf-border);
  border-top: 3px solid var(--vcf-orange);
  padding: 32px;
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}
.vcf-star__icon {
  font-size: 40px;
  margin-bottom: 12px;
  display: block;
  opacity: 0.4;
}
.vcf-star__coming {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vcf-gray);
}

/* ── SUPPORT / CTA STRIP ── */
.vcf-support-strip {
  background: var(--vcf-orange);
  padding: 24px var(--page-pad);
}
.vcf-support-strip__inner {
  max-width: var(--page-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.vcf-support-strip__text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.85);
  line-height: 1.4;
}
.vcf-support-strip__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}
.vcf-support-strip__btn {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: #fff;
  color: var(--vcf-orange);
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.vcf-support-strip__btn:hover { background: rgba(255,255,255,0.88); }

/* ── FOOTER ── */
.vcf-footer {
  background: #000;
  border-top: 1px solid var(--vcf-border);
}
.vcf-footer__top {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 44px var(--page-pad) 36px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 40px;
}
.vcf-footer__brand-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--vcf-white);
  margin-bottom: 4px;
}
.vcf-footer__brand-name span { color: var(--vcf-orange); }
.vcf-footer__brand-sub {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,107,0,0.5);
  margin-bottom: 14px;
}
.vcf-footer__brand-desc {
  font-size: 12px;
  color: var(--vcf-gray);
  line-height: 1.65;
  max-width: 260px;
  margin-bottom: 18px;
}
.vcf-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--vcf-gray);
  margin-bottom: 6px;
  transition: color var(--transition);
}
.vcf-footer__contact-item:hover { color: var(--vcf-lightgray); }
.vcf-footer__contact-item svg { width: 13px; height: 13px; fill: var(--vcf-orange); flex-shrink: 0; }
.vcf-footer__col-title {
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--vcf-orange);
  margin-bottom: 14px;
}
.vcf-footer__col a {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--vcf-gray);
  padding: 4px 0;
  transition: color var(--transition);
}
.vcf-footer__col a:hover { color: var(--vcf-white); }
.vcf-footer__bottom {
  border-top: 1px solid var(--vcf-border);
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 16px var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.vcf-footer__bottom-copy {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #3a3a3a;
}
.vcf-footer__amunt {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,107,0,0.3);
}
.vcf-footer__official {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vcf-gray);
}
.vcf-footer__official a { color: var(--vcf-orange); transition: opacity var(--transition); }
.vcf-footer__official a:hover { opacity: 0.8; }

/* ── UTILITY ── */
.vcf-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
}
.vcf-btn--primary { background: var(--vcf-orange); color: #fff; }
.vcf-btn--primary:hover { background: var(--vcf-orange2); }
.vcf-btn--outline { border: 1px solid var(--vcf-border2); color: var(--vcf-lightgray); }
.vcf-btn--outline:hover { border-color: var(--vcf-orange); color: var(--vcf-orange); }
.vcf-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-sm);
}
.vcf-tag--orange { background: var(--vcf-orange-dim); border: 1px solid rgba(255,107,0,0.28); color: var(--vcf-orange); }
.vcf-tag--green  { background: rgba(74,222,128,0.1);  border: 1px solid rgba(74,222,128,0.25); color: var(--vcf-green); }
.vcf-tag--gray   { background: rgba(255,255,255,0.05); border: 1px solid var(--vcf-border2);   color: var(--vcf-gray); }

/* ── PAGE HEADER (inner pages) ── */
.vcf-page-header {
  background: var(--vcf-dark);
  border-bottom: 1px solid var(--vcf-border);
  padding: 36px var(--page-pad);
}
.vcf-page-header__inner {
  max-width: var(--page-max);
  margin: 0 auto;
}
.vcf-page-header__label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vcf-orange);
  margin-bottom: 6px;
}
.vcf-page-header__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--vcf-white);
  line-height: 0.95;
}
.vcf-page-header__title em { font-style: normal; color: var(--vcf-orange); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  :root { --page-pad: 18px; }
  .vcf-topbar { display: none; }
  .vcf-nav__links, .vcf-nav__actions { display: none; }
  .vcf-nav__burger { display: flex; }
  .vcf-hero { height: 480px; }
  .vcf-statsbar__grid { grid-template-columns: repeat(3, 1fr); }
  .vcf-pillars { grid-template-columns: 1fr; }
  .vfv-grid { grid-template-columns: 1fr; }
  .vcf-footer__top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .vcf-footer__bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 600px) {
  .vcf-hero__arrow { display: none; }
  .vcf-hero__dots { right: 50%; transform: translateX(50%); bottom: 14px; }
  .vcf-statsbar__grid { grid-template-columns: repeat(3, 1fr); }
  .vcf-stat__val { font-size: 28px; }
  .vcf-hero__title { font-size: 42px; }
  .vcf-match-widget { flex-direction: column; align-items: flex-start; gap: 12px; }
  .vcf-roster-grid { grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); }
  .vcf-reels { grid-template-columns: repeat(2, 1fr); }
  .vcf-footer__top { grid-template-columns: 1fr; gap: 24px; }
  .vcf-match-widget__btns { flex-direction: row; }
}

/* ── Legacy sections embedded in redesign (Bootstrap + site components) ── */
.vcf-hero__bg--empty {
  background-image: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 45%, #080808 100%) !important;
}
.vcf-redesign-legacy .vcf-section-title,
.vcf-redesign-legacy .vcf-section-title-line {
  color: var(--vcf-white);
}
.vcf-redesign-legacy .vcf-section-desc {
  color: var(--vcf-gray);
}
.vcf-redesign-legacy .accordion-button {
  background: var(--vcf-dark2) !important;
  color: var(--vcf-white) !important;
}
.vcf-redesign-legacy .accordion-body {
  background: var(--vcf-dark);
  color: var(--vcf-lightgray);
}
.vcf-redesign-legacy .list-group-item {
  background: transparent;
  border-color: var(--vcf-border);
  color: var(--vcf-lightgray);
}
.vcf-redesign-legacy .text-muted {
  color: var(--vcf-gray) !important;
}
.vcf-redesign-legacy #star .vcf-star-card {
  max-width: 720px;
  margin: 0 auto;
}

/* ── Site-wide public pages (contact, join, support, calendar, privacy) ── */
.vcf-public-site main {
  min-height: 45vh;
}
.vcf-page-sub {
  flex: 1;
}
.vcf-page-card {
  background: var(--vcf-dark2) !important;
  border: 1px solid var(--vcf-border) !important;
  border-radius: var(--radius-md);
}
.vcf-form-label {
  color: var(--vcf-lightgray);
  font-size: 13px;
  margin-bottom: 6px;
}
.vcf-form-control,
select.vcf-form-control {
  background: var(--vcf-dark3) !important;
  border: 1px solid var(--vcf-border) !important;
  color: var(--vcf-white) !important;
  border-radius: var(--radius-sm);
}
.vcf-form-control:focus,
select.vcf-form-control:focus {
  border-color: var(--vcf-orange) !important;
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.15);
  outline: none;
}
select.vcf-form-control option {
  background: var(--vcf-dark2);
  color: var(--vcf-white);
}
.vcf-page-sub .footer-link {
  color: var(--vcf-orange);
}
.vcf-page-sub .footer-link:hover {
  color: var(--vcf-white);
}
.vcf-alert.alert-success {
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.35);
  color: #bbf7d0;
}
.vcf-alert.alert-danger {
  background: rgba(248, 113, 113, 0.12);
  border: 1px solid rgba(248, 113, 113, 0.35);
  color: #fecaca;
}

/* Support / recaudaciones: style.css uses dark --vcf-text for light cards; on dark vcf-page-card that hides Zelle text */
.vcf-page-sub .vcf-donate-card .vcf-donate-card-title {
  color: var(--vcf-white) !important;
}
.vcf-page-sub .vcf-donate-card .vcf-donate-other {
  border-top-color: var(--vcf-border) !important;
}
.vcf-page-sub .vcf-donate-card .vcf-donate-other-title {
  color: var(--vcf-orange) !important;
}
.vcf-page-sub .vcf-donate-card .vcf-donate-other-text {
  color: var(--vcf-lightgray) !important;
  font-size: 15px;
  line-height: 1.65;
}
.vcf-page-sub .vcf-donate-card .vcf-donate-other-text a {
  color: var(--vcf-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.vcf-page-sub .vcf-donate-card .vcf-donate-other-text a:hover {
  color: var(--vcf-white);
}

/* ── Support page (recaudaciones) — full layout ── */
.vcf-support {
  overflow-x: hidden;
}
.vcf-support__hero {
  background: var(--vcf-dark);
  border-bottom: 1px solid var(--vcf-border);
  padding: 48px var(--page-pad) 40px;
}
.vcf-support__inner {
  max-width: var(--page-max);
  margin: 0 auto;
}
.vcf-support__eyebrow {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vcf-orange);
  margin-bottom: 8px;
}
.vcf-support__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 0.92;
  color: var(--vcf-white);
}
.vcf-support__title em {
  font-style: normal;
  color: var(--vcf-orange);
}
.vcf-support__hero-desc {
  font-size: 14px;
  color: var(--vcf-gray);
  margin-top: 14px;
  max-width: 520px;
  line-height: 1.7;
}
.vcf-support__strip {
  border-bottom: 1px solid var(--vcf-border);
}
.vcf-support__strip-inner {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 44px var(--page-pad);
}
.vcf-support__section-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vcf-orange);
  margin-bottom: 20px;
}
.vcf-support__covers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
}
.vcf-support__cover-card {
  background: var(--vcf-dark2);
  padding: 24px 20px;
  border-top: 3px solid var(--vcf-orange);
}
.vcf-support__cover-card--soft {
  border-top-color: rgba(255, 107, 0, 0.3);
}
.vcf-support__cover-icon {
  font-size: 26px;
  margin-bottom: 10px;
  line-height: 1;
}
.vcf-support__cover-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--vcf-white);
  margin-bottom: 6px;
}
.vcf-support__cover-desc {
  font-size: 12px;
  color: var(--vcf-gray);
  line-height: 1.6;
}
.vcf-support__method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  max-width: 720px;
}
.vcf-support__method-card {
  background: var(--vcf-dark2);
  padding: 28px 24px;
  border-left: 3px solid var(--vcf-orange);
}
.vcf-support__method-card--muted {
  border-left-color: var(--vcf-border2);
}
.vcf-support__method-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.vcf-support__method-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 18px;
  flex-shrink: 0;
  background: var(--vcf-orange);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
}
.vcf-support__method-icon--dark {
  background: var(--vcf-dark3);
  font-size: 20px;
}
.vcf-support__method-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--vcf-white);
}
.vcf-support__method-tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vcf-orange);
}
.vcf-support__method-tag--gray {
  color: var(--vcf-gray);
}
.vcf-support__method-hint {
  font-size: 12px;
  color: var(--vcf-gray);
  margin-bottom: 10px;
}
.vcf-support__email-row {
  background: var(--vcf-dark);
  border: 1px solid var(--vcf-border2);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}
.vcf-support__email-text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--vcf-white);
  word-break: break-all;
}
.vcf-support__copy-btn {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--vcf-border2);
  color: var(--vcf-gray);
  padding: 4px 10px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: border-color var(--transition), color var(--transition);
}
.vcf-support__copy-btn:hover {
  border-color: var(--vcf-orange);
  color: var(--vcf-orange);
}
.vcf-support__phone-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  background: var(--vcf-dark);
  border: 1px solid var(--vcf-border2);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color var(--transition);
}
.vcf-support__phone-link:hover {
  border-color: var(--vcf-orange);
}
.vcf-support__phone-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--vcf-white);
}
.vcf-support__phone-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vcf-gray);
}
.vcf-support__btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.vcf-support__other-card {
  background: var(--vcf-dark2);
  border: 1px solid var(--vcf-border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  max-width: 640px;
}
.vcf-support__other-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vcf-orange);
  margin-bottom: 10px;
}
.vcf-support__other-text {
  font-size: 15px;
  color: var(--vcf-lightgray);
  line-height: 1.65;
  white-space: pre-wrap;
}
.vcf-support__amounts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  max-width: 600px;
}
.vcf-support__amount-card {
  background: var(--vcf-dark2);
  padding: 16px 20px;
  min-width: 130px;
  border-top: 2px solid transparent;
  transition: border-color var(--transition);
}
.vcf-support__amount-card:hover {
  border-top-color: var(--vcf-orange);
}
.vcf-support__amount-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--vcf-orange);
  line-height: 1;
  margin-bottom: 4px;
}
.vcf-support__amount-lbl {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vcf-gray);
}
.vcf-support__amount-note {
  font-size: 12px;
  color: var(--vcf-gray);
  margin-top: 16px;
  line-height: 1.6;
  max-width: 420px;
}
.vcf-support__contrib-card {
  max-width: 640px;
  border: 1px solid var(--vcf-border);
  background: var(--vcf-dark2);
}
.vcf-support__contrib-head,
.vcf-support__contrib-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
}
.vcf-support__contrib-head {
  border-bottom: 1px solid var(--vcf-border);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--vcf-orange);
}
.vcf-support__contrib-row {
  border-bottom: 1px solid var(--vcf-border);
  font-size: 13px;
  color: var(--vcf-lightgray);
}
.vcf-support__contrib-row:last-child {
  border-bottom: 0;
}
.vcf-support__contrib-row strong {
  font-family: var(--font-display);
  color: var(--vcf-white);
  font-size: 12px;
  letter-spacing: 0.05em;
}
.vcf-support__closing {
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 40px var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.vcf-support__thank-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--vcf-white);
  margin-bottom: 4px;
}
.vcf-support__thank-sub {
  font-size: 13px;
  color: var(--vcf-gray);
}
.vcf-support__back {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--vcf-border2);
  color: var(--vcf-lightgray);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
}
.vcf-support__back:hover {
  border-color: var(--vcf-orange);
  color: var(--vcf-orange);
}
.vcf-support__empty {
  text-align: center;
  padding: 28px 16px;
  color: var(--vcf-gray);
  max-width: 420px;
}
@media (max-width: 600px) {
  .vcf-support__method-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   Color improvement patch (vcf-colors.zip) — WCAG + crema + navy
   ============================================================ */
:root {
  --vcf-gray:      #AAAAAA;
  --vcf-lightgray: #D0CECC;
  --vcf-white:     #F5F0E8;
  --vcf-navy:      #0A1628;
  --vcf-navy-dim:  #0D1E38;
}

body { color: var(--vcf-white); }

.vcf-hero__title,
.vcf-section__title,
.vcf-page-header__title,
.vcf-pillar__title,
.vcf-player__name,
.vcf-modal__name,
.vcf-ground__name,
.vcf-stat__val,
.vcf-table tbody td,
.vcf-footer__brand-name,
.vcf-nav__text .t1 {
  color: var(--vcf-white);
}

.vcf-hero__title em,
.vcf-section__title em,
.vcf-page-header__title em,
.vcf-stat__val.accent,
.vcf-nav__text .t2,
.vcf-nav__links a.active,
.vcf-section__more,
.vcf-pillar__pos,
.vcf-player__pos,
.vcf-modal__pos,
.vcf-ground__gps,
.vcf-footer__brand-name span,
.vcf-footer__amunt,
.vcf-footer__col-title,
.vcf-page-header__label,
.vcf-section__label,
.vcf-statsbar__label span:first-child,
.vcf-match-widget__date {
  color: var(--vcf-orange) !important;
}

.vcf-nav__cta,
.vcf-nav__cta:hover {
  color: #fff !important;
}

.vcf-pillar__desc,
.vcf-footer__brand-desc,
.vcf-footer__col a,
.vcf-footer__contact-item,
.vcf-footer__bottom-copy,
.vcf-footer__official,
.vcf-ground__addr,
.vcf-match-widget__venue,
.vcf-match-widget__vs,
.vcf-hero__tagline,
.vcf-statsbar__label span:last-child,
.vcf-stat__lbl,
.vcf-table thead th,
.vcf-cal-head,
.vcf-topbar__badge,
.vcf-reel__title {
  color: var(--vcf-gray);
}

p, .vcf-section p, .vcf-formation__info p {
  color: var(--vcf-gray);
}

#tournaments .vcf-section--dark,
#tournaments > .vcf-section--dark {
  background: var(--vcf-navy);
}

#tournaments .vcf-table tbody td {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}
#tournaments .vcf-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

.vcf-stat__val.pos { color: #4ade80; }
.vcf-stat__val.neg { color: #f87171; }
.vcf-stat__val.accent { color: var(--vcf-orange); }

.vcf-btn--outline:hover,
.vcf-match-widget__btn--secondary:hover,
.vcf-cal-btn:hover,
.vcf-ground__gps:hover {
  border-color: var(--vcf-orange);
  color: var(--vcf-orange);
}

.vcf-nav__links a::after {
  background: var(--vcf-orange);
  height: 2px;
  opacity: 0.9;
}

.vcf-match-widget {
  border-left: 3px solid var(--vcf-orange);
  border-top: 1px solid rgba(255, 107, 0, 0.2);
}

.vcf-player:hover {
  background: #1E1916;
  border-top-color: var(--vcf-orange);
}

.vcf-pillar:hover {
  background: #1E1916;
  border-top-color: var(--vcf-orange);
}

.vcf-count__num {
  color: var(--vcf-orange);
  text-shadow: 0 0 20px rgba(255, 107, 0, 0.3);
}

.vcf-hero__tag {
  background: rgba(255, 107, 0, 0.14);
  border-color: rgba(255, 107, 0, 0.4);
  color: #FF8533;
}

.vcf-result--W { background: rgba(74, 222, 128, 0.18); color: #4ade80; }
.vcf-result--L { background: rgba(248, 113, 113, 0.18); color: #f87171; }
.vcf-result--D { background: rgba(255, 255, 255, 0.08); color: #D0CECC; }

.vcf-modal {
  background: #161210;
  border-top-color: var(--vcf-orange);
}
.vcf-modal__stat { background: #1E1916; }
.vcf-skill-row__bar { background: #2A2420; }

/* ── ROSTER ENHANCED (FIFA-style cards, filters, leaderboard) ── */
.vr-roster-meta {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vcf-dark4);
  display: block;
  margin-top: 6px;
}
.vr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 3px;
}
.vr-card {
  background: var(--vcf-dark2);
  cursor: pointer;
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: transform var(--transition);
}
.vr-card:hover {
  transform: translateY(-3px);
}
.vr-card__photo {
  aspect-ratio: 3 / 4;
  background: linear-gradient(145deg, #1e1916 0%, #2a2420 100%);
  position: relative;
  overflow: hidden;
}
.vr-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s ease;
}
.vr-card:hover .vr-card__photo img {
  transform: scale(1.05);
}
.vr-card__initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: rgba(255, 107, 0, 0.25);
}
.vr-card__num {
  position: absolute;
  top: 8px;
  right: 10px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.vr-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  z-index: 2;
}
.vr-card__badge--star {
  background: var(--vcf-orange);
  color: #fff;
}
.vr-card__badge--cat {
  top: auto;
  bottom: 8px;
  left: 8px;
  right: 8px;
  max-width: calc(100% - 16px);
  text-align: center;
  background: rgba(0, 0, 0, 0.55);
  color: var(--vcf-lightgray);
  font-size: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vr-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 107, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 1;
}
.vr-card:hover .vr-card__overlay {
  opacity: 1;
}
.vr-card__overlay span {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--vcf-orange);
  color: #fff;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
}
.vr-card__bar {
  background: #111;
  border-top: 2px solid var(--vcf-orange);
  padding: 8px 10px 9px;
}
.vr-card__name {
  font-family: var(--font-display);
  font-size: 11.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--vcf-offwhite);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vr-card__pos {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vcf-orange);
  margin-top: 2px;
}
.vr-empty {
  grid-column: 1 / -1;
  padding: 48px 20px;
  text-align: center;
}
.vr-empty__icon {
  font-size: 28px;
  opacity: 0.2;
  margin-bottom: 8px;
}
.vr-empty__text {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--vcf-dark4);
}
.vr-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.vr-search-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--vcf-dark2);
  border: 1px solid var(--vcf-border2);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  flex: 1;
  min-width: 180px;
  max-width: 280px;
  transition: border-color 0.15s;
}
.vr-search-wrap:focus-within {
  border-color: var(--vcf-orange);
}
.vr-search-icon {
  color: var(--vcf-dark4);
  flex-shrink: 0;
}
.vr-search {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--vcf-offwhite);
}
.vr-search::placeholder {
  color: var(--vcf-dark4);
}
.vr-search-clear {
  background: none;
  border: none;
  color: var(--vcf-dark4);
  font-size: 12px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.15s;
}
.vr-search-clear:hover {
  color: var(--vcf-orange);
}
.vr-filters {
  display: flex;
  gap: 3px;
  flex-wrap: wrap;
}
.vr-filter {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 12px;
  border: 1px solid var(--vcf-border2);
  color: var(--vcf-gray);
  background: transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.vr-filter:hover {
  border-color: var(--vcf-orange);
  color: var(--vcf-orange);
}
.vr-filter.active {
  background: var(--vcf-orange);
  border-color: var(--vcf-orange);
  color: #fff;
}
.vr-filter__count {
  font-size: 10px;
  opacity: 0.7;
  font-weight: 600;
}
.vr-leaderboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 24px;
}
.vr-board {
  background: var(--vcf-dark2);
  border: 1px solid var(--vcf-border);
  border-top: 2px solid var(--vcf-orange);
  overflow: hidden;
}
.vr-board__title {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vcf-orange);
  padding: 8px 12px;
  background: #111;
  border-bottom: 1px solid var(--vcf-border);
}
.vr-board__row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.15s;
}
.vr-board__row:hover {
  background: rgba(255, 255, 255, 0.02);
}
.vr-board__row.top {
  background: rgba(255, 107, 0, 0.05);
}
.vr-board__rank {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 900;
  color: var(--vcf-dark3);
  width: 14px;
  flex-shrink: 0;
}
.vr-board__row.top .vr-board__rank {
  color: var(--vcf-orange);
}
.vr-board__av {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--vcf-dark3);
  border: 1.5px solid rgba(255, 107, 0, 0.4);
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  color: var(--vcf-orange);
}
.vr-board__av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vr-board__name {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--vcf-gray);
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vr-board__val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: var(--vcf-orange);
  flex-shrink: 0;
}
.vr-board__lbl {
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vcf-dark4);
  width: 24px;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .vr-leaderboard {
    grid-template-columns: 1fr;
  }
  .vr-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
  .vr-controls {
    flex-direction: column;
    align-items: flex-start;
  }
  .vr-search-wrap {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .vr-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── METHODOLOGY (enhanced pillars + DNA + schedules) ── */
.vcf-methodology {
  background: var(--vcf-black);
}
.vcf-methodology__lead {
  font-size: 13px;
  color: var(--vcf-gray);
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.vcf-methodology__quote {
  font-style: italic;
  color: var(--vcf-dark4);
}
.vm-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 20px;
}
.vm-pillar {
  background: var(--vcf-dark2);
  padding: 28px 22px;
  border-top: 3px solid rgba(255, 107, 0, 0.2);
  position: relative;
  overflow: hidden;
  transition: background var(--transition), border-top-color var(--transition);
}
.vm-pillar:nth-child(1) {
  border-top-color: var(--vcf-orange);
}
.vm-pillar:nth-child(2) {
  border-top-color: rgba(255, 107, 0, 0.55);
}
.vm-pillar:nth-child(3) {
  border-top-color: rgba(255, 107, 0, 0.25);
}
.vm-pillar:hover {
  background: #1e1916;
  border-top-color: var(--vcf-orange);
}
.vm-pillar::before {
  content: attr(data-num);
  position: absolute;
  bottom: -10px;
  right: 8px;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: rgba(255, 107, 0, 0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.vm-pillar:hover::before {
  color: rgba(255, 107, 0, 0.1);
}
.vm-pillar__icon {
  font-size: 22px;
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}
.vm-pillar__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--vcf-offwhite);
  margin-bottom: 8px;
}
.vm-pillar__desc {
  font-size: 13px;
  color: var(--vcf-gray);
  line-height: 1.65;
}
.vm-dna {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 20px;
}
.vm-dna__item {
  background: #111;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-left: 2px solid rgba(255, 107, 0, 0.25);
  transition: border-color 0.15s;
}
.vm-dna__item:hover {
  border-left-color: var(--vcf-orange);
}
.vm-dna__icon {
  font-size: 16px;
  flex-shrink: 0;
  opacity: 0.8;
}
.vm-dna__text {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--vcf-gray);
}
.vm-schedules-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vcf-dark4);
  margin-bottom: 12px;
}
.vm-schedules {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2px;
}
.vm-schedule {
  background: var(--vcf-dark2);
  border-left: 3px solid var(--vcf-orange);
  padding: 18px 20px;
}
.vm-schedule__cat {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--vcf-orange);
  margin-bottom: 10px;
}
.vm-schedule__rows {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vm-schedule__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.vm-schedule__row:last-child {
  border-bottom: none;
}
.vm-schedule__row--block {
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}
.vm-schedule__day {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--vcf-dark4);
}
.vm-schedule__horario {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--vcf-gray);
  line-height: 1.5;
  white-space: pre-line;
}
.vm-schedule__gps {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vcf-dark4);
  border: 1px solid var(--vcf-border2);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.15s;
}
.vm-schedule__gps:hover {
  color: var(--vcf-orange);
  border-color: var(--vcf-orange);
}
.vm-footnote {
  font-size: 12px;
  color: var(--vcf-gray);
  margin-top: 20px;
}
@media (max-width: 700px) {
  .vm-pillars {
    grid-template-columns: 1fr;
  }
  .vm-dna {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  :root {
    --vcf-gray: #AAAAAA;
    --vcf-white: #F5F0E8;
  }
}

/* ══════════════════════════════════════════════════════════════
   VCF Academy Houston — Critical Fixes
   ══════════════════════════════════════════════════════════════ */

/* ── FIX 1: FONDO GRIS ──────────────────────────────────────────
   Fuerza fondo negro en todas las páginas. */
html {
  background-color: #080808 !important;
}
body {
  background-color: #080808 !important;
  color: #F5F0E8;
}

/* Secciones sin clase explícita — transparentes */
main, article, aside, section:not([class]) {
  background-color: transparent;
}

/* ── FIX 2: SECCIONES CON FONDO EXPLÍCITO ─────────────────────── */
#hero        { background: var(--vcf-dark, #111); }
#methodology { background: #0a0a0a; }
#formation   { background: var(--vcf-dark2, #181818); }
#grounds     { background: #080808; }
#roster      { background: #080808; }
#tournaments { background: var(--vcf-dark2, #181818); }
#reels       { background: #080808; }
#star        { background: var(--vcf-dark2, #181818); }

/* ── FIX 3: GRAY TEXT CONTRAST ─────────────────────────────────── */
:root {
  --vcf-gray: #AAAAAA;
  --vcf-lightgray: #D0CECC;
  --vcf-white: #F5F0E8;
}

/* ── FIX 4: STATS BAR ───────────────────────────────────────────── */
.vcf-statsbar {
  background: var(--vcf-dark, #111111);
}
.vcf-statsbar__grid {
  background: #111111;
}
.vcf-stat {
  background: #111111;
  border-right: 1px solid rgba(255,255,255,0.07);
}

/* ── FIX 5: ROSTER SECTION ──────────────────────────────────────── */
#roster > div,
#roster section,
.vr-grid {
  background: transparent;
}

/* ── FIX 6: METHODOLOGY PILLARS ────────────────────────────────── */
.vcf-pillar, .vm-pillar {
  background: #181818;
}
.vcf-pillar:hover, .vm-pillar:hover {
  background: #1E1916;
}

/* ── FIX 7: TABLA DE PARTIDOS ──────────────────────────────────── */
.vcf-table tbody td {
  color: #D0CECC;
}
.vcf-table .score {
  color: #F5F0E8;
  font-weight: 900;
}

/* ── FIX 8: FOOTER ─────────────────────────────────────────────── */
.vcf-footer {
  background: #000000;
}
.vcf-footer__top {
  background: #000000;
}

/* ── FIX 9: SUPPORT STRIP ──────────────────────────────────────── */
.vcf-support-strip {
  background: #FF6B00;
}

/* ── FIX 10: MOBILE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  html, body { background-color: #080808 !important; }
  .vcf-nav__mobile { background: #111111; }
}
