/* ============================================================
   GASTONIA FC — DESIGN SYSTEM
   Purple #2D1854 + Gold #E8C840 + White
   Bebas Neue (headings) + DM Sans (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ── CSS VARIABLES ── */
:root {
  --gfc-purple: #2D1854;
  --gfc-purple-dark: #1A0E32;
  --gfc-purple-light: #4A2D7A;
  --gfc-gold: #E8C840;
  --gfc-gold-dim: #B8982E;
  --gfc-white: #FFFFFF;
  --gfc-gray: #8A8A9A;
  --gfc-bg: #0C0818;
  --gfc-card: #1A1230;
  --gfc-border: rgba(232, 200, 64, 0.15);
  --gfc-text: #E8E4F0;
  --gfc-text-dim: #8A8A9A;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-height: 70px;
  --max-width: 1200px;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--gfc-bg);
  color: var(--gfc-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--gfc-gold); text-decoration: none; transition: color 0.3s; }
a:hover { color: var(--gfc-white); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: 0.03;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* ── STADIUM BACKGROUND ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.035;
  background:
    /* Soccer ball (pentagon pattern, center-right) */
    radial-gradient(circle at 80% 40%, rgba(232,200,64,0.4) 0%, transparent 2%),
    radial-gradient(circle at 82% 38%, transparent 3.5%, rgba(232,200,64,0.15) 3.6%, rgba(232,200,64,0.15) 4%, transparent 4.1%),
    radial-gradient(circle at 78% 42%, transparent 3.5%, rgba(232,200,64,0.15) 3.6%, rgba(232,200,64,0.15) 4%, transparent 4.1%),
    radial-gradient(circle at 80% 36%, transparent 3.5%, rgba(232,200,64,0.15) 3.6%, rgba(232,200,64,0.15) 4%, transparent 4.1%),
    /* Stadium floodlight glow top */
    radial-gradient(ellipse at 20% -10%, rgba(232,200,64,0.3) 0%, transparent 40%),
    radial-gradient(ellipse at 80% -10%, rgba(232,200,64,0.3) 0%, transparent 40%),
    /* Field lines */
    linear-gradient(transparent 88%, rgba(255,255,255,0.08) 88%, rgba(255,255,255,0.08) 88.3%, transparent 88.3%),
    /* Center circle */
    radial-gradient(circle at 50% 88%, transparent 8%, rgba(255,255,255,0.06) 8%, rgba(255,255,255,0.06) 8.3%, transparent 8.3%),
    /* Halfway line */
    linear-gradient(90deg, transparent 49.85%, rgba(255,255,255,0.06) 49.85%, rgba(255,255,255,0.06) 50.15%, transparent 50.15%),
    /* Stadium silhouette at bottom */
    linear-gradient(to top,
      rgba(45,24,84,0.5) 0%,
      rgba(45,24,84,0.3) 5%,
      rgba(45,24,84,0.15) 8%,
      transparent 15%
    );
}


/* ── PARTICLE CANVAS ── */
#gfc-particles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gfc-white);
  line-height: 1.1;
}
h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--gfc-gold);
  margin: 0.8rem auto 0;
}
.gold { color: var(--gfc-gold); }
.text-center { text-align: center; }

/* ── LAYOUT ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}
section {
  padding: 5rem 0;
  position: relative;
  z-index: 1;
}

/* ── NAVIGATION ── */
.gfc-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  transition: background 0.4s, box-shadow 0.4s;
  background: transparent;
}
.gfc-nav.scrolled {
  background: rgba(12, 8, 24, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}
.nav-brand span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 3px;
  color: var(--gfc-white);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 2px;
  color: var(--gfc-text-dim);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gfc-gold);
  transition: width 0.3s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gfc-white);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.nav-social a {
  color: var(--gfc-text-dim);
  font-size: 1.2rem;
  transition: color 0.3s, transform 0.3s;
}
.nav-social a:hover {
  color: var(--gfc-gold);
  transform: scale(1.15);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.nav-hamburger span {
  width: 28px;
  height: 2px;
  background: var(--gfc-white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
}
.hero-logo {
  width: clamp(140px, 25vw, 220px);
  height: clamp(140px, 25vw, 220px);
  border-radius: 50%;
  border: 3px solid var(--gfc-gold);
  box-shadow: 0 0 40px rgba(232, 200, 64, 0.25), 0 0 80px rgba(232, 200, 64, 0.1);
  animation: logoPulse 3s ease-in-out infinite;
  margin-bottom: 1.5rem;
}
@keyframes logoPulse {
  0%, 100% { box-shadow: 0 0 40px rgba(232, 200, 64, 0.25), 0 0 80px rgba(232, 200, 64, 0.1); }
  50% { box-shadow: 0 0 60px rgba(232, 200, 64, 0.4), 0 0 120px rgba(232, 200, 64, 0.15); }
}
.hero h1 { margin-bottom: 0.5rem; }
.hero-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  letter-spacing: 6px;
  color: var(--gfc-gold);
  margin-bottom: 2.5rem;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 2px;
  border-radius: 4px;
  transition: all 0.3s;
  text-transform: uppercase;
}
.btn-gold {
  background: var(--gfc-gold);
  color: var(--gfc-purple-dark);
}
.btn-gold:hover {
  background: var(--gfc-white);
  color: var(--gfc-purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(232, 200, 64, 0.3);
}
.btn-outline {
  border: 2px solid var(--gfc-gold);
  color: var(--gfc-gold);
}
.btn-outline:hover {
  background: var(--gfc-gold);
  color: var(--gfc-purple-dark);
  transform: translateY(-2px);
}

/* ── CARDS ── */
.card {
  background: rgba(26, 18, 48, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--gfc-border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 200, 64, 0.4);
  box-shadow: 0 8px 30px rgba(232, 200, 64, 0.1);
}

/* ── NEXT MATCH STRIP ── */
.next-match {
  background: rgba(26, 18, 48, 0.9);
  border-top: 1px solid var(--gfc-border);
  border-bottom: 1px solid var(--gfc-border);
  padding: 2rem 0;
}
.next-match-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.match-team {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 2px;
}
.match-team img { width: 50px; height: 50px; border-radius: 50%; }
.match-vs {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gfc-gold);
}
.match-info {
  text-align: center;
}
.match-date {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: var(--gfc-gold);
}
.match-venue {
  font-size: 0.85rem;
  color: var(--gfc-text-dim);
}
.countdown {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 0.75rem;
}
.countdown-item {
  text-align: center;
}
.countdown-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gfc-gold);
  line-height: 1;
}
.countdown-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gfc-text-dim);
}

/* ── NEWS GRID ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}
.news-card {
  overflow: hidden;
}
.news-card-img {
  height: 180px;
  background: var(--gfc-purple);
  border-radius: 8px 8px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 3rem;
  color: rgba(232, 200, 64, 0.2);
}
.news-card-body { padding: 1.25rem; }
.news-card-body h4 { margin-bottom: 0.5rem; }
.news-card-body p {
  font-size: 0.9rem;
  color: var(--gfc-text-dim);
  line-height: 1.5;
}
.news-card-date {
  font-size: 0.75rem;
  color: var(--gfc-gold-dim);
  margin-top: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── PARTNERS BAR ── */
.partners {
  padding: 3rem 0;
  border-top: 1px solid var(--gfc-border);
}
.partners-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.partner-item {
  text-align: center;
}
.partner-item img {
  height: 50px;
  opacity: 0.7;
  filter: brightness(1.2);
  transition: opacity 0.3s;
}
.partner-item:hover img { opacity: 1; }
.partner-item p {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gfc-text-dim);
  margin-top: 0.5rem;
}

/* ── PLAYER CARDS ── */
.roster-filters {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.5rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  letter-spacing: 2px;
  color: var(--gfc-text-dim);
  border: 1px solid var(--gfc-border);
  border-radius: 4px;
  transition: all 0.3s;
}
.filter-btn:hover,
.filter-btn.active {
  color: var(--gfc-purple-dark);
  background: var(--gfc-gold);
  border-color: var(--gfc-gold);
}

.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.player-card {
  text-align: center;
  overflow: hidden;
  position: relative;
}
.player-photo {
  height: 240px;
  background: linear-gradient(135deg, var(--gfc-purple-dark), var(--gfc-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px 8px 0 0;
  position: relative;
  overflow: hidden;
}
.player-number {
  font-family: var(--font-heading);
  font-size: 6rem;
  color: rgba(232, 200, 64, 0.12);
  line-height: 1;
  position: absolute;
}
.player-silhouette {
  font-size: 4rem;
  opacity: 0.3;
  position: relative;
  z-index: 1;
}
.player-info { padding: 1rem; }
.player-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  letter-spacing: 2px;
  color: var(--gfc-white);
}
.player-position {
  font-size: 0.8rem;
  color: var(--gfc-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.player-flag {
  font-size: 1.2rem;
  margin-left: 0.5rem;
}

/* ── SCHEDULE ── */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
}
.schedule-table th {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--gfc-gold);
  padding: 1rem;
  text-align: left;
  border-bottom: 2px solid var(--gfc-border);
}
.schedule-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(232, 200, 64, 0.08);
  vertical-align: middle;
}
.schedule-table tr:hover td {
  background: rgba(45, 24, 84, 0.3);
}
.badge-home, .badge-away {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
}
.badge-home {
  background: var(--gfc-gold);
  color: var(--gfc-purple-dark);
}
.badge-away {
  background: var(--gfc-purple-light);
  color: var(--gfc-white);
}
.result-w { color: #4CAF50; font-weight: 700; }
.result-l { color: #F44336; font-weight: 700; }
.result-d { color: var(--gfc-gray); font-weight: 700; }

/* Season record stats */
.stats-bar {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--gfc-gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gfc-text-dim);
  margin-top: 0.25rem;
}

/* ── MERCH GRID ── */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.merch-card { overflow: hidden; position: relative; }
.merch-img {
  height: 260px;
  background: linear-gradient(135deg, var(--gfc-purple-dark), var(--gfc-purple));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px 8px 0 0;
  font-size: 3rem;
  opacity: 0.3;
}
.merch-body { padding: 1.25rem; }
.merch-body h4 { margin-bottom: 0.25rem; }
.merch-price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gfc-gold);
  letter-spacing: 1px;
}
.merch-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gfc-gold);
  color: var(--gfc-purple-dark);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 1px;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
}

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-text h3 { margin-bottom: 1rem; }
.about-text p {
  color: var(--gfc-text-dim);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}
.gallery-item {
  height: 200px;
  background: linear-gradient(135deg, var(--gfc-purple-dark), var(--gfc-purple));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  opacity: 0.4;
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover {
  opacity: 0.7;
  transform: scale(1.03);
}

/* Map */
.map-container {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gfc-border);
}
.map-container iframe {
  width: 100%;
  height: 350px;
  border: 0;
  filter: saturate(0.5) brightness(0.8) hue-rotate(200deg);
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.contact-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
}
.contact-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.contact-card h3 { margin-bottom: 1rem; }
.contact-card p {
  color: var(--gfc-text-dim);
  font-size: 0.9rem;
  line-height: 1.7;
}
.contact-card a {
  display: inline-block;
  margin-top: 1rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.social-link {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 2px solid var(--gfc-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: all 0.3s;
}
.social-link:hover {
  border-color: var(--gfc-gold);
  background: rgba(232, 200, 64, 0.1);
  transform: scale(1.1);
}

/* ── FOOTER ── */
.gfc-footer {
  background: rgba(12, 8, 24, 0.95);
  border-top: 1px solid var(--gfc-border);
  padding: 3rem 0 1.5rem;
  position: relative;
  z-index: 1;
}
.footer-logo {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.footer-nav a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 2px;
  color: var(--gfc-text-dim);
}
.footer-nav a:hover { color: var(--gfc-gold); }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.footer-social a {
  color: var(--gfc-text-dim);
  font-size: 1.2rem;
  transition: color 0.3s;
}
.footer-social a:hover { color: var(--gfc-gold); }

.footer-partners {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.footer-partners img {
  height: 35px;
  opacity: 0.5;
  filter: brightness(1.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(232, 200, 64, 0.08);
  font-size: 0.75rem;
  color: var(--gfc-text-dim);
}
.footer-bottom a { color: var(--gfc-gold-dim); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── PAGE HERO (non-home pages) ── */
.page-hero {
  padding: calc(var(--nav-height) + 4rem) 0 3rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.page-hero h1 { margin-bottom: 0.5rem; }
.page-hero p {
  color: var(--gfc-text-dim);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ── CURSOR GLOW ── */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 200, 64, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: left 0.3s ease, top 0.3s ease;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links, .nav-social { display: none; }
  .nav-hamburger { display: flex; }

  /* Mobile nav overlay */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: rgba(12, 8, 24, 0.98);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }
  .nav-links.open a {
    font-size: 1.8rem;
    color: var(--gfc-white);
  }
  .nav-social.open {
    display: flex;
    position: fixed;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    gap: 2rem;
  }
  .nav-social.open a { font-size: 1.6rem; color: var(--gfc-gold); }

  .about-grid { grid-template-columns: 1fr; }
  .stats-bar { gap: 1.5rem; }
  .stat-num { font-size: 2.2rem; }
  .roster-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 3rem; }
  .hero-subtitle { font-size: 0.9rem; letter-spacing: 4px; }

  .next-match-inner { flex-direction: column; gap: 1rem; }
  .match-team { font-size: 1.2rem; }
  .match-vs { font-size: 1.5rem; }
  .partners-grid { gap: 2rem; }
  .footer-partners { gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .roster-grid { grid-template-columns: 1fr; }
  .merch-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .countdown { gap: 0.5rem; }
  .countdown-num { font-size: 1.5rem; }
}
