/* ============================================================
   São Bernardo FC — UI Components | Premium Dark Sports
   ============================================================ */

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: var(--z-sticky);
  display: flex; align-items: center;
  transition: background var(--t-base), box-shadow var(--t-base), height var(--t-base);
  background: transparent;
}
.nav.scrolled {
  background: var(--bg-nav);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.05), 0 4px 24px rgba(0,0,0,.5);
  height: 66px;
}

.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--w-max);
  margin-inline: auto; padding-inline: var(--container-px);
  gap: var(--sp-6);
}

/* Logo */
.nav__logo { display: flex; align-items: center; gap: var(--sp-3); flex-shrink: 0; }
.nav__logo-img {
  height: 50px; width: auto;
  transition: height var(--t-base);
  filter: drop-shadow(0 2px 12px rgba(244,195,0,.35));
}
.nav.scrolled .nav__logo-img { height: 42px; }
.nav__logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__logo-name {
  font-family: var(--ff-head); font-size: 1.25rem;
  letter-spacing: .05em; color: var(--white);
}
.nav__logo-sub {
  font-size: .6rem; text-transform: uppercase;
  letter-spacing: .18em; color: var(--yellow); font-weight: 800;
}

/* Menu links */
.nav__menu { display: flex; align-items: center; gap: var(--sp-1); }
.nav__link {
  position: relative;
  padding: var(--sp-2) var(--sp-3);
  font-size: var(--fs-xs); font-weight: 700;
  text-transform: uppercase; letter-spacing: .09em;
  color: rgba(255,255,255,.72);
  transition: color var(--t-fast);
  white-space: nowrap;
}
.nav__link::after {
  content: '';
  position: absolute; bottom: 0; left: 50%;
  width: 0; height: 2px; background: var(--yellow);
  border-radius: var(--r-full);
  transition: width var(--t-base), left var(--t-base);
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: calc(100% - var(--sp-6)); left: var(--sp-3); }
.nav__link.active { color: var(--yellow); }
.nav__link.active::after { width: calc(100% - var(--sp-6)); left: var(--sp-3); }

/* Nav actions */
.nav__actions { display: flex; align-items: center; gap: var(--sp-2); flex-shrink: 0; }
.nav__action-btn {
  width: 38px; height: 38px; border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  transition: all var(--t-fast); font-size: 15px;
}
.nav__action-btn:hover {
  background: var(--yellow-subtle);
  color: var(--yellow);
  border-color: var(--border-yellow);
}

/* Hamburger */
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: var(--r-md); cursor: pointer;
}
.nav__hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all var(--t-base);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.nav__drawer {
  position: fixed; top: 0; right: 0;
  width: min(360px, 100vw); height: 100dvh;
  background: #0A0A0A;
  border-left: 1px solid rgba(255,255,255,.06);
  z-index: calc(var(--z-sticky) + 1);
  transform: translateX(100%);
  transition: transform var(--t-slow);
  overflow-y: auto; padding: var(--sp-6);
  display: flex; flex-direction: column; gap: var(--sp-4);
}
.nav__drawer.open { transform: translateX(0); }

.nav__drawer-close {
  align-self: flex-end; width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 20px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.06); border: 1px solid var(--border);
}
.nav__drawer-close:hover { background: var(--yellow-subtle); color: var(--yellow); }

.nav__drawer-logo {
  display: flex; align-items: center; gap: var(--sp-3);
  padding-block: var(--sp-4);
  border-bottom: 1px solid var(--border);
}
.nav__drawer-logo img { height: 56px; }

.nav__drawer-menu { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.nav__drawer-link {
  display: flex; align-items: center; gap: var(--sp-3);
  padding: 13px var(--sp-4);
  font-weight: 700; font-size: var(--fs-sm);
  color: var(--text-2); border-radius: var(--r-md);
  letter-spacing: .03em; transition: all var(--t-fast);
}
.nav__drawer-link:hover, .nav__drawer-link.active {
  background: var(--yellow-subtle);
  color: var(--yellow);
}
.nav__drawer-icon { font-size: 16px; width: 22px; text-align: center; }

.nav__overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.7); z-index: var(--z-sticky);
  backdrop-filter: blur(4px);
}
.nav__overlay.show { display: block; }

/* ============================================================
   Hero Slider
   ============================================================ */
.hero {
  position: relative; height: calc(var(--nav-h) + var(--sp-16) + var(--sp-20) + 220px);
  min-height: 420px; max-height: 560px;
  overflow: hidden; background: var(--black);
}
.hero__slider {
  display: flex; height: 100%;
  transition: transform .8s cubic-bezier(.76,0,.24,1);
  will-change: transform;
}
.hero__slide { min-width: 100%; height: 100%; position: relative; overflow: hidden; }

.hero__slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  transition: transform 7s ease;
}
.hero__slide.active .hero__slide-bg { transform: scale(1); }

.hero__slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(0,0,0,.88) 0%,
    rgba(0,0,0,.62) 45%,
    rgba(0,0,0,.28) 100%
  );
}

/* Diagonal yellow accent stripe */
.hero__slide::after {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background:
    linear-gradient(135deg, transparent 65%, rgba(244,195,0,.055) 65%, rgba(244,195,0,.055) 67%, transparent 67%),
    linear-gradient(135deg, transparent 69%, rgba(244,195,0,.025) 69%, rgba(244,195,0,.025) 71%, transparent 71%);
}

.hero__slide-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding-top: var(--nav-h);
  max-width: var(--w-max); margin-inline: auto; padding-inline: var(--container-px);
}

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-xs); font-weight: 800;
  text-transform: uppercase; letter-spacing: .2em;
  color: var(--yellow); margin-bottom: var(--sp-5);
  opacity: 0; transform: translateY(16px);
  transition: opacity .55s ease .2s, transform .55s ease .2s;
}
.hero__slide.active .hero__eyebrow { opacity: 1; transform: none; }
.hero__eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 8px var(--yellow);
  animation: dotPulse 1.5s ease-in-out infinite;
}
@keyframes dotPulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.5);opacity:.6} }

.hero__eyebrow { margin-bottom: var(--sp-3); }

.hero__title {
  font-size: clamp(1.6rem, 3.8vw, 2.6rem); text-transform: uppercase;
  color: var(--white); line-height: 1;
  letter-spacing: .02em; max-width: 620px;
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease .35s, transform .6s ease .35s;
}
.hero__slide.active .hero__title { opacity: 1; transform: none; }
.hero__title span { color: var(--yellow); }
.hero__title em {
  font-style: normal;
  -webkit-text-stroke: 2px var(--white);
  color: transparent;
}

.hero__subtitle {
  font-size: clamp(var(--fs-sm), 1.4vw, var(--fs-md));
  color: var(--text-2); max-width: 420px;
  line-height: 1.55; margin-top: var(--sp-3); font-weight: 400;
  opacity: 0; transform: translateY(14px);
  transition: opacity .6s ease .5s, transform .6s ease .5s;
}
.hero__slide.active .hero__subtitle { opacity: 1; transform: none; }

.hero__cta {
  display: flex; gap: var(--sp-3); flex-wrap: wrap; margin-top: var(--sp-5);
  opacity: 0; transform: translateY(14px);
  transition: opacity .6s ease .65s, transform .6s ease .65s;
}
.hero__slide.active .hero__cta { opacity: 1; transform: none; }

/* Hero arrows */
.hero__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 5; width: 52px; height: 52px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--white); font-size: 17px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-base); backdrop-filter: blur(8px);
}
.hero__arrow:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); box-shadow: var(--sh-yellow); }
.hero__arrow--prev { left: var(--sp-6); }
.hero__arrow--next { right: var(--sp-6); }

/* Dots */
.hero__controls {
  position: absolute; bottom: var(--sp-10); left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; align-items: center; gap: var(--sp-3);
}
.hero__dot {
  width: 8px; height: 8px; border-radius: var(--r-full);
  background: rgba(255,255,255,.3); border: none; cursor: pointer;
  transition: all var(--t-base); padding: 0;
}
.hero__dot.active { width: 32px; background: var(--yellow); box-shadow: var(--sh-yellow); }
.hero__dot:hover { background: rgba(255,255,255,.6); }

/* Scroll indicator */
.hero__scroll {
  position: absolute; bottom: var(--sp-8); right: var(--sp-8);
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-xs); font-weight: 800; letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-3); z-index: 5;
}
.hero__scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--yellow));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100%{transform:scaleY(0);transform-origin:top}
  50%{transform:scaleY(1);transform-origin:top}
}

/* ============================================================
   Stats Bar
   ============================================================ */
.stats-bar {
  background: var(--yellow);
  padding-block: var(--sp-5);
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(-55deg, transparent, transparent 20px, rgba(0,0,0,.04) 20px, rgba(0,0,0,.04) 21px);
  pointer-events: none;
}
.stats-bar__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative; z-index: 1;
}
.stat-item {
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-1);
  text-align: center; padding-inline: var(--sp-4);
  border-right: 1px solid rgba(0,0,0,.12);
}
.stat-item:last-child { border-right: none; }
.stat-item__number {
  font-family: var(--ff-head);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1; color: var(--black); letter-spacing: .02em;
}
.stat-item__label {
  font-size: var(--fs-xs); font-weight: 800; text-transform: uppercase;
  letter-spacing: .12em; color: rgba(0,0,0,.55);
}

/* ============================================================
   Fixture / Match Cards
   ============================================================ */
.fixture-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-6);
  border: 1px solid var(--border);
  transition: all var(--t-base);
  display: flex; flex-direction: column; gap: var(--sp-4);
  box-shadow: var(--sh-md);
}
.fixture-card:hover {
  border-color: var(--border-yellow);
  box-shadow: var(--sh-lg), 0 0 20px rgba(244,195,0,.08);
  transform: translateY(-3px);
}
.fixture-card__competition {
  display: flex; align-items: center; gap: var(--sp-2);
  font-size: var(--fs-xs); font-weight: 800; text-transform: uppercase;
  letter-spacing: .1em; color: var(--yellow);
}
.fixture-card__competition::before {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--yellow); box-shadow: 0 0 8px var(--yellow);
}
.fixture-card__teams {
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-4);
}
.fixture-card__team {
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-2);
  flex: 1; text-align: center;
}
.fixture-card__team-logo-placeholder {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ff-head); font-size: var(--fs-md);
  color: var(--text-3); border: 1.5px solid var(--border);
}
.fixture-card__team-name {
  font-size: var(--fs-xs); font-weight: 700; color: var(--text-1); line-height: 1.2;
}
.fixture-card__vs { display: flex; flex-direction: column; align-items: center; gap: var(--sp-1); flex-shrink: 0; }
.fixture-card__vs-text {
  font-family: var(--ff-head); font-size: var(--fs-2xl); color: var(--yellow); letter-spacing: .06em;
}
.fixture-card__date {
  font-size: var(--fs-xs); font-weight: 700; color: var(--text-3);
  text-transform: uppercase; letter-spacing: .08em; text-align: center;
}
.fixture-card__info {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: var(--sp-3); border-top: 1px solid var(--border);
}
.fixture-card__venue {
  display: flex; align-items: center; gap: var(--sp-1);
  font-size: var(--fs-xs); color: var(--text-3); font-weight: 600;
}

/* ============================================================
   News Cards
   ============================================================ */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--sp-6); }

.news-card {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--t-base);
  display: flex; flex-direction: column;
  box-shadow: var(--sh-sm);
}
.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg), 0 0 24px rgba(244,195,0,.08);
  border-color: var(--border-yellow);
}
.news-card__img {
  aspect-ratio: 16/9; overflow: hidden;
  background: var(--graphite-2); position: relative;
}
.news-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.news-card:hover .news-card__img img { transform: scale(1.07); }
.news-card__img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
}
.news-card__body {
  padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-3); flex: 1;
}
.news-card__meta { display: flex; align-items: center; gap: var(--sp-3); flex-wrap: wrap; }
.news-card__date { font-size: var(--fs-xs); font-weight: 700; color: var(--text-3); text-transform: uppercase; letter-spacing: .08em; }
.news-card__title {
  font-family: var(--ff-sub); font-size: var(--fs-xl); font-weight: 700;
  line-height: 1.25; color: var(--text-1);
  transition: color var(--t-fast);
}
.news-card:hover .news-card__title { color: var(--yellow); }
.news-card__excerpt {
  font-size: var(--fs-sm); color: var(--text-2); line-height: 1.65;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.news-card__footer {
  margin-top: auto; padding-top: var(--sp-4); border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.news-card__read-more {
  font-size: var(--fs-xs); font-weight: 800; color: var(--yellow);
  display: flex; align-items: center; gap: var(--sp-1);
  text-transform: uppercase; letter-spacing: .08em;
  transition: gap var(--t-fast);
}
.news-card:hover .news-card__read-more { gap: var(--sp-2); }

/* Featured news */
.news-featured {
  grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr;
  overflow: hidden; border-radius: var(--r-xl); border: 1px solid var(--border);
  background: var(--bg-card); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--sh-md); transition: all var(--t-base); min-height: 360px;
}
.news-featured:hover { box-shadow: var(--sh-xl), var(--sh-glow); border-color: var(--border-yellow); }
.news-featured__img { overflow: hidden; background: var(--graphite-2); }
.news-featured__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.news-featured:hover .news-featured__img img { transform: scale(1.05); }
.news-featured__body {
  padding: var(--sp-10); display: flex; flex-direction: column; justify-content: center; gap: var(--sp-4);
}
.news-featured__title {
  font-family: var(--ff-sub); font-size: clamp(var(--fs-xl), 2.5vw, var(--fs-3xl));
  font-weight: 700; line-height: 1.2; transition: color var(--t-fast);
}
.news-featured:hover .news-featured__title { color: var(--yellow); }

/* ============================================================
   Player Cards
   ============================================================ */
.players-filter { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin-bottom: var(--sp-8); }
.filter-btn {
  padding: 8px 20px; border-radius: var(--r-full);
  font-size: var(--fs-xs); font-weight: 800; text-transform: uppercase; letter-spacing: .07em;
  color: var(--text-2); background: rgba(255,255,255,.04);
  border: 1.5px solid var(--border); transition: all var(--t-fast); cursor: pointer;
  font-family: var(--ff-body);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--yellow); color: var(--black); border-color: var(--yellow);
  box-shadow: var(--sh-yellow);
}

.players-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: var(--sp-5); }

.player-card {
  background: var(--bg-card); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--t-base); position: relative; cursor: pointer;
  box-shadow: var(--sh-sm);
}
.player-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-xl), 0 0 30px rgba(244,195,0,.12);
  border-color: var(--border-yellow);
}
.player-card__number {
  position: absolute; top: var(--sp-3); left: var(--sp-3);
  font-family: var(--ff-head); font-size: var(--fs-2xl); color: rgba(255,255,255,.85);
  line-height: 1; z-index: 2; text-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.player-card__img {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, #1a1a1a 0%, #2a2a2a 100%);
  position: relative; overflow: hidden;
}
.player-card__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform var(--t-slow); }
.player-card:hover .player-card__img img { transform: scale(1.08); }
.player-card__img-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 72px; color: rgba(255,255,255,.05);
  background: linear-gradient(160deg, #1a1a1a, #242424);
}
.player-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 55%);
  opacity: 0; transition: opacity var(--t-base);
  display: flex; align-items: flex-end; padding: var(--sp-4);
}
.player-card:hover .player-card__overlay { opacity: 1; }
.player-card__stats-preview { display: flex; gap: var(--sp-4); }
.player-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.player-stat__value { font-family: var(--ff-head); font-size: var(--fs-xl); color: var(--yellow); line-height: 1; }
.player-stat__label { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); }
.player-card__body { padding: var(--sp-4); display: flex; flex-direction: column; gap: var(--sp-1); }
.player-card__position { font-size: var(--fs-xs); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--yellow); }
.player-card__name { font-family: var(--ff-sub); font-size: var(--fs-md); font-weight: 700; color: var(--text-1); line-height: 1.2; }
.player-card__nationality { font-size: var(--fs-xs); color: var(--text-3); display: flex; align-items: center; gap: var(--sp-1); margin-top: var(--sp-1); }

/* ============================================================
   Timeline
   ============================================================ */
.timeline { position: relative; padding-block: var(--sp-4); }
.timeline::before {
  content: '';
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--yellow), transparent);
  transform: translateX(-50%);
}
.timeline-item {
  position: relative; display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: var(--sp-8); margin-bottom: var(--sp-12); align-items: center;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item__content {
  background: var(--bg-card); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--r-xl); padding: var(--sp-6);
  border: 1px solid var(--border); box-shadow: var(--sh-md);
  position: relative; transition: all var(--t-base);
}
.timeline-item__content:hover { border-color: var(--border-yellow); box-shadow: var(--sh-lg); transform: scale(1.02); }
.timeline-item:nth-child(odd) .timeline-item__content { grid-column: 1; }
.timeline-item:nth-child(odd) .timeline-item__spacer  { grid-column: 2; }
.timeline-item:nth-child(odd) .timeline-item__empty   { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-item__empty   { grid-column: 1; }
.timeline-item:nth-child(even) .timeline-item__spacer  { grid-column: 2; }
.timeline-item:nth-child(even) .timeline-item__content { grid-column: 3; }
.timeline-item__dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--yellow); margin-inline: auto; flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(244,195,0,.2), var(--sh-yellow);
  transition: box-shadow var(--t-base);
}
.timeline-item:hover .timeline-item__dot { box-shadow: 0 0 0 8px rgba(244,195,0,.15), var(--sh-yellow); }
.timeline-item__year { font-family: var(--ff-head); font-size: var(--fs-4xl); color: var(--yellow); line-height: 1; margin-bottom: var(--sp-2); }
.timeline-item__title { font-family: var(--ff-sub); font-size: var(--fs-xl); font-weight: 700; margin-bottom: var(--sp-2); color: var(--text-1); }
.timeline-item__desc { font-size: var(--fs-sm); color: var(--text-2); line-height: 1.65; margin-bottom: 0; }

/* ============================================================
   Trophies
   ============================================================ */
.trophy-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: var(--sp-5); }
.trophy-card {
  background: var(--bg-card); backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border); border-radius: var(--r-xl);
  padding: var(--sp-8); text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-4);
  transition: all var(--t-base); position: relative; overflow: hidden;
  box-shadow: var(--sh-sm);
}
.trophy-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
  transform: scaleX(0); transform-origin: left; transition: transform var(--t-base);
}
.trophy-card:hover {
  transform: translateY(-6px); box-shadow: var(--sh-xl), var(--sh-glow);
  border-color: var(--border-yellow);
}
.trophy-card:hover::before { transform: scaleX(1); }
.trophy-card__icon {
  font-size: 48px; display: flex; align-items: center; justify-content: center;
  width: 90px; height: 90px; border-radius: 50%;
  background: rgba(244,195,0,.08); border: 1px solid var(--border-yellow);
}
.trophy-card__year { font-family: var(--ff-head); font-size: var(--fs-3xl); color: var(--yellow); line-height: 1; }
.trophy-card__title { font-family: var(--ff-sub); font-size: var(--fs-lg); font-weight: 700; color: var(--text-1); line-height: 1.25; }
.trophy-card__subtitle { font-size: var(--fs-xs); text-transform: uppercase; letter-spacing: .12em; color: var(--text-3); font-weight: 700; }

/* ============================================================
   Stadium Showcase
   ============================================================ */
.stadium-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-12); align-items: center; }
.stadium-showcase__img {
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4/3; box-shadow: var(--sh-xl); position: relative;
  border: 1px solid var(--border);
}
.stadium-showcase__img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow); }
.stadium-showcase__img:hover img { transform: scale(1.04); }
.stadium-showcase__img-badge {
  position: absolute; bottom: var(--sp-4); left: var(--sp-4);
  background: var(--yellow); color: var(--black);
  font-size: var(--fs-xs); font-weight: 800; padding: 6px 14px;
  border-radius: var(--r-full); text-transform: uppercase; letter-spacing: .1em;
}
.stadium-facts { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); margin-top: var(--sp-5); }
.stadium-fact {
  background: rgba(255,255,255,.03); border-radius: var(--r-md);
  padding: var(--sp-4); border: 1px solid var(--border);
  transition: border-color var(--t-fast);
}
.stadium-fact:hover { border-color: var(--border-yellow); }
.stadium-fact__value { font-family: var(--ff-head); font-size: var(--fs-3xl); color: var(--yellow); line-height: 1; margin-bottom: var(--sp-1); }
.stadium-fact__label { font-size: var(--fs-xs); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--text-3); }

/* ============================================================
   Gallery
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-3); }
.gallery-item {
  border-radius: var(--r-md); overflow: hidden; cursor: pointer;
  position: relative; background: var(--bg-section);
}
.gallery-item img { width: 100%; height: auto; aspect-ratio: 1; object-fit: cover; display: block; transition: transform var(--t-slow); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-base);
}
.gallery-item:hover .gallery-item__overlay { background: rgba(0,0,0,.5); }
.gallery-item__icon { color: var(--white); font-size: 28px; opacity: 0; transform: scale(.7); transition: all var(--t-base); }
.gallery-item:hover .gallery-item__icon { opacity: 1; transform: scale(1); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.95);
  z-index: var(--z-modal); display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity var(--t-base), visibility var(--t-base);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__img {
  max-width: min(90vw, 1200px); max-height: 90dvh; object-fit: contain;
  border-radius: var(--r-md); box-shadow: var(--sh-xl);
  transition: transform var(--t-base);
}
.lightbox__close {
  position: absolute; top: var(--sp-6); right: var(--sp-6);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.08); color: var(--white); font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-fast); border: 1px solid var(--border);
}
.lightbox__close:hover { background: rgba(244,195,0,.25); color: var(--yellow); }
.lightbox__nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(255,255,255,.07); color: var(--white); font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--t-base); border: 1px solid var(--border);
}
.lightbox__nav:hover { background: var(--yellow); color: var(--black); box-shadow: var(--sh-yellow); }
.lightbox__nav--prev { left: var(--sp-6); }
.lightbox__nav--next { right: var(--sp-6); }
.lightbox__counter { position: absolute; bottom: var(--sp-6); left: 50%; transform: translateX(-50%); font-size: var(--fs-sm); color: var(--text-3); font-weight: 600; }
.lightbox__caption { position: absolute; bottom: var(--sp-12); left: 50%; transform: translateX(-50%); font-size: var(--fs-sm); color: var(--text-2); max-width: 600px; text-align: center; padding-inline: var(--sp-6); }

/* ============================================================
   Sponsors
   ============================================================ */
.sponsors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: var(--sp-4); align-items: center; }
.sponsor-card {
  background: var(--bg-card); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-8);
  display: flex; align-items: center; justify-content: center;
  min-height: 120px; transition: all var(--t-base);
  filter: grayscale(40%) opacity(.6);
}
.sponsor-card:hover { filter: none; border-color: var(--border-yellow); box-shadow: var(--sh-md); transform: translateY(-3px); }
.sponsor-card img { max-height: 60px; width: auto; object-fit: contain; }
.sponsor-card__name { font-family: var(--ff-sub); font-size: var(--fs-lg); font-weight: 700; text-align: center; color: var(--text-1); }

.sponsor-featured {
  background: linear-gradient(135deg, #141414, #1e1e1e);
  border-radius: var(--r-2xl); padding: var(--sp-10) var(--sp-12);
  display: flex; align-items: center; gap: var(--sp-8); margin-bottom: var(--sp-8);
  border: 1px solid rgba(244,195,0,.15);
  box-shadow: var(--sh-md), 0 0 40px rgba(244,195,0,.05);
}
.sponsor-featured__body { color: var(--white); }
.sponsor-featured__label { font-size: var(--fs-xs); font-weight: 800; text-transform: uppercase; letter-spacing: .15em; color: var(--yellow); margin-bottom: var(--sp-2); }
.sponsor-featured__name { font-family: var(--ff-head); font-size: var(--fs-3xl); line-height: 1; margin-bottom: var(--sp-3); }
.sponsor-featured__desc { font-size: var(--fs-sm); color: var(--text-2); max-width: 480px; margin-bottom: 0; line-height: 1.7; }

/* ============================================================
   Contact / Form
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: var(--sp-12); align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: var(--sp-6); }
.contact-item { display: flex; gap: var(--sp-4); align-items: flex-start; }
.contact-item__icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--yellow-subtle); border: 1px solid var(--border-yellow);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--yellow); flex-shrink: 0;
}
.contact-item__label { font-size: var(--fs-xs); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--text-3); margin-bottom: var(--sp-1); }
.contact-item__value { font-size: var(--fs-md); font-weight: 600; color: var(--text-1); margin-bottom: 0; line-height: 1.4; }

.social-links { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-4); }
.social-link {
  display: flex; align-items: center; gap: var(--sp-2);
  padding: 10px 18px; border-radius: var(--r-full);
  font-size: var(--fs-xs); font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  border: 1.5px solid var(--border); color: var(--text-2);
  background: rgba(255,255,255,.04); transition: all var(--t-base); font-family: var(--ff-body);
}
.social-link:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.social-link--instagram:hover { background: #E1306C; border-color: #E1306C; color: #fff; }
.social-link--youtube:hover   { background: #FF0000; border-color: #FF0000; color: #fff; }
.social-link--facebook:hover  { background: #1877F2; border-color: #1877F2; color: #fff; }
.social-link--x:hover         { background: #000; border-color: #000; color: #fff; }
.social-link__icon { font-size: 16px; }

.form-card {
  background: var(--bg-card); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: var(--r-2xl);
  padding: var(--sp-10); box-shadow: var(--sh-lg);
}
.form-group { margin-bottom: var(--sp-5); }
.form-label { display: block; font-size: var(--fs-xs); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--text-2); margin-bottom: var(--sp-2); }
.form-control {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,.05);
  border: 1.5px solid var(--border-2);
  border-radius: var(--r-md); color: var(--text-1);
  font-size: var(--fs-md); transition: border-color var(--t-fast), box-shadow var(--t-fast); outline: none;
}
.form-control::placeholder { color: var(--text-3); }
.form-control:focus { border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(244,195,0,.1); }
textarea.form-control { resize: vertical; min-height: 140px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-4); }
.form-message { padding: var(--sp-4) var(--sp-5); border-radius: var(--r-md); font-size: var(--fs-sm); font-weight: 700; margin-bottom: var(--sp-4); display: none; }
.form-message--success { background: rgba(34,197,94,.1); color: #22c55e; border: 1px solid rgba(34,197,94,.2); }
.form-message--error   { background: rgba(239,68,68,.1); color: #ef4444; border: 1px solid rgba(239,68,68,.2); }
.form-message.show { display: block; }

/* Map */
.map-wrapper { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); border: 1px solid var(--border); aspect-ratio: 840/534; }
.map-wrapper iframe { width: 100%; height: 100%; border: none; filter: grayscale(30%) invert(88%) hue-rotate(180deg); }
.map-wrapper:hover iframe { filter: none; }

/* ============================================================
   Highlight Banner
   ============================================================ */
.highlight-banner {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  border-radius: var(--r-2xl); padding: var(--sp-10) var(--sp-12);
  display: flex; align-items: center; justify-content: space-between; gap: var(--sp-8);
  overflow: hidden; position: relative;
}
.highlight-banner::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(-55deg, transparent, transparent 20px, rgba(0,0,0,.04) 20px, rgba(0,0,0,.04) 21px);
}
.highlight-banner::after {
  content: '⚽';
  position: absolute; right: -20px; top: -20px;
  font-size: 160px; opacity: .06; transform: rotate(20deg);
}
.highlight-banner__title { font-family: var(--ff-head); font-size: clamp(var(--fs-2xl), 4vw, var(--fs-5xl)); color: var(--black); line-height: 1; }
.highlight-banner__sub { font-size: var(--fs-md); color: rgba(0,0,0,.6); margin-top: var(--sp-2); margin-bottom: 0; max-width: 400px; }
.highlight-banner__actions { display: flex; gap: var(--sp-3); flex-shrink: 0; position: relative; z-index: 1; }

/* ============================================================
   Staff Cards
   ============================================================ */
.staff-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: var(--sp-5); }
.staff-card {
  background: var(--bg-card); backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border); border-radius: var(--r-xl);
  overflow: hidden; text-align: center;
  transition: all var(--t-base); box-shadow: var(--sh-sm);
}
.staff-card:hover { transform: translateY(-4px); box-shadow: var(--sh-lg), var(--sh-glow); border-color: var(--border-yellow); }
.staff-card__img { aspect-ratio: 1; background: linear-gradient(135deg, #1a1a1a, #2c2c2c); overflow: hidden; }
.staff-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.staff-card__img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; font-size: 64px; color: rgba(255,255,255,.05); }
.staff-card__body { padding: var(--sp-5); }
.staff-card__role { font-size: var(--fs-xs); font-weight: 800; text-transform: uppercase; letter-spacing: .12em; color: var(--yellow); margin-bottom: var(--sp-1); }
.staff-card__name { font-family: var(--ff-sub); font-size: var(--fs-lg); font-weight: 700; color: var(--text-1); margin-bottom: var(--sp-2); line-height: 1.2; }
.staff-card__desc { font-size: var(--fs-xs); color: var(--text-3); line-height: 1.55; margin-bottom: 0; }

/* ============================================================
   Search Overlay
   ============================================================ */
.search-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.94);
  z-index: var(--z-modal); display: flex; flex-direction: column; align-items: center; padding-top: 15vh;
  opacity: 0; visibility: hidden;
  transition: opacity var(--t-base), visibility var(--t-base);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.search-overlay.open { opacity: 1; visibility: visible; }
.search-overlay__inner { width: min(680px, 90vw); }
.search-overlay__label { font-size: var(--fs-xs); font-weight: 800; text-transform: uppercase; letter-spacing: .18em; color: var(--text-3); margin-bottom: var(--sp-4); }
.search-overlay__input-wrap { position: relative; margin-bottom: var(--sp-6); }
.search-overlay__input {
  width: 100%; padding: 20px 64px 20px 24px;
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--r-full); color: var(--white); font-size: var(--fs-xl); outline: none;
  transition: border-color var(--t-fast); font-family: var(--ff-body);
}
.search-overlay__input:focus { border-color: var(--yellow); }
.search-overlay__input::placeholder { color: var(--text-3); }
.search-overlay__submit {
  position: absolute; right: 8px; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--yellow); color: var(--black); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.search-overlay__results { max-height: 50vh; overflow-y: auto; display: flex; flex-direction: column; gap: var(--sp-2); }
.search-result-item {
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: var(--sp-4) var(--sp-5); color: var(--white);
  display: flex; align-items: center; gap: var(--sp-4); transition: all var(--t-fast);
}
.search-result-item:hover { background: rgba(244,195,0,.08); border-color: var(--border-yellow); }
.search-result-item__category { font-size: var(--fs-xs); color: var(--yellow); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; flex-shrink: 0; min-width: 80px; }
.search-result-item__title { font-size: var(--fs-md); font-weight: 600; }
.search-overlay__close {
  position: absolute; top: var(--sp-6); right: var(--sp-6);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.06); color: var(--white); font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); transition: all var(--t-fast);
}
.search-overlay__close:hover { background: rgba(244,195,0,.15); color: var(--yellow); }

/* ============================================================
   Season Table
   ============================================================ */
.season-table { width: 100%; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--sh-sm); }
.season-table thead tr { background: #0a0a0a; }
.season-table th { padding: var(--sp-4) var(--sp-5); font-family: var(--ff-sub); font-size: var(--fs-sm); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; text-align: left; color: var(--text-1); }
.season-table td { padding: var(--sp-3) var(--sp-5); font-size: var(--fs-sm); border-bottom: 1px solid var(--border); color: var(--text-2); }
.season-table tr:last-child td { border-bottom: none; }
.season-table tbody tr { background: var(--bg-card); backdrop-filter: blur(8px); transition: background var(--t-fast); }
.season-table tbody tr:hover { background: rgba(244,195,0,.05); }
.season-table .champion { color: var(--yellow); font-weight: 800; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: #080808; color: var(--white);
  padding-top: var(--sp-20); position: relative; overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--yellow), var(--yellow-dark), var(--yellow), transparent);
}
/* Diagonal decoration */
.footer::after {
  content: '';
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 40%;
  background: repeating-linear-gradient(-55deg, transparent, transparent 30px, rgba(244,195,0,.012) 30px, rgba(244,195,0,.012) 31px);
  pointer-events: none;
}
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-12); padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: relative; z-index: 1;
}
.footer__brand-desc { font-size: var(--fs-sm); color: var(--text-3); line-height: 1.75; max-width: 300px; margin-bottom: var(--sp-6); margin-top: var(--sp-5); }
.footer__social { display: flex; gap: var(--sp-2); }
.footer__social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3); font-size: 16px; transition: all var(--t-fast);
}
.footer__social-btn:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); transform: translateY(-2px); }
.footer__col-title {
  font-family: var(--ff-head); font-size: var(--fs-lg); letter-spacing: .08em;
  text-transform: uppercase; margin-bottom: var(--sp-5); color: var(--white);
}
.footer__col-title::after { content: ''; display: block; width: 32px; height: 2px; background: var(--yellow); margin-top: var(--sp-2); }
.footer__links { display: flex; flex-direction: column; gap: var(--sp-2); }
.footer__link { font-size: var(--fs-sm); color: var(--text-3); transition: color var(--t-fast); display: flex; align-items: center; gap: var(--sp-2); }
.footer__link:hover { color: var(--yellow); }
.footer__link::before { content: '›'; color: var(--yellow); }
.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: var(--sp-6); flex-wrap: wrap; gap: var(--sp-4);
  position: relative; z-index: 1;
}
.footer__copy { font-size: var(--fs-xs); color: var(--text-3); }
.footer__copy a { color: var(--yellow); }
.footer__bottom-links { display: flex; gap: var(--sp-4); }
.footer__bottom-link { font-size: var(--fs-xs); color: var(--text-3); transition: color var(--t-fast); }
.footer__bottom-link:hover { color: var(--yellow); }

/* ============================================================
   404 Page
   ============================================================ */
.page-404 {
  min-height: 100dvh; display: flex; align-items: center; justify-content: center;
  background: var(--black); text-align: center; padding: var(--sp-8);
}
.page-404__number { font-family: var(--ff-head); font-size: clamp(8rem, 20vw, 16rem); line-height: 1; color: var(--yellow); opacity: .1; display: block; margin-bottom: var(--sp-4); }
.page-404__title { font-family: var(--ff-head); font-size: clamp(var(--fs-3xl), 5vw, var(--fs-5xl)); text-transform: uppercase; margin-bottom: var(--sp-4); }
.page-404__text { color: var(--text-2); font-size: var(--fs-lg); max-width: 400px; margin-inline: auto; margin-bottom: var(--sp-8); }

/* ============================================================
   Article
   ============================================================ */
.article-header { padding-top: calc(var(--nav-h) + var(--sp-12)); padding-bottom: var(--sp-12); background: var(--black); }
.article-header__meta { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; margin-bottom: var(--sp-5); }
.article-header__title { font-family: var(--ff-sub); font-size: clamp(var(--fs-2xl), 4vw, var(--fs-5xl)); font-weight: 800; line-height: 1.15; max-width: 860px; }
.article-body { max-width: 800px; margin-inline: auto; padding-block: var(--sp-12); padding-inline: var(--container-px); }
.article-body h2 { font-family: var(--ff-sub); font-size: var(--fs-2xl); font-weight: 700; margin-bottom: var(--sp-4); margin-top: var(--sp-8); }
.article-body p { font-size: var(--fs-lg); line-height: 1.8; color: var(--text-2); }
.article-body ul { margin-left: var(--sp-6); margin-bottom: var(--sp-4); }
.article-body li { list-style: disc; font-size: var(--fs-lg); color: var(--text-2); margin-bottom: var(--sp-2); }
.article-body img { width: 100%; border-radius: var(--r-lg); margin-block: var(--sp-8); box-shadow: var(--sh-lg); }
