*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

:root {
  --navy:        #12112a;
  --navy2:       #1a1830;
  --navy3:       #0e0d1f;
  --purple:      #7B2FBE;
  --purple-dark: #5a1f8f;
  --purple-mid:  #6B24A8;
  --purple-glow: rgba(123,47,190,0.4);
  --gold:        #D4A843;
  --gold2:       #F0C040;
  --gold3:       #B8882A;
  --gold-bright: #FFD700;
  --gold-glow:   rgba(212,168,67,0.35);
  --white:       #ffffff;
  --off-white:   #e8e0f0;
  --dim:         rgba(255,255,255,0.5);
  --dim2:        rgba(255,255,255,0.32);
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--navy3);
  color: var(--white);
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--navy3); }
::-webkit-scrollbar-thumb { background: var(--gold3); }

/* ═══════════════════════════════════════
   NAVBAR — centered logo, bigger, centered container
═══════════════════════════════════════ */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  height: 96px;
  background: var(--navy);
  border-bottom: 1px solid rgba(212,168,67,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4%;
  transition: all 0.3s;
}
nav.scrolled {
  background: rgba(18,17,42,0.97);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(212,168,67,0.35);
  height: 78px;
}

/* Inner container — centered, max-width */
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  max-width: 1260px;
}

.nav-left, .nav-right {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-right { justify-content: flex-end; }

.nav-left a, .nav-right a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none; transition: color 0.25s;
  position: relative;
}
.nav-left a::after, .nav-right a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-left a:hover, .nav-right a:hover { color: var(--gold); }
.nav-left a:hover::after, .nav-right a:hover::after { width: 100%; }

/* CENTER LOGO — bigger */
.nav-center {
  display: flex; align-items: center; justify-content: center;
  padding: 0 24px;
}
.nav-logo-link { display: block; text-decoration: none; }
.nav-logo-img {
  height: 90px; width: 90px;
  object-fit: contain;
  filter: drop-shadow(0 0 14px rgba(212,168,67,0.65));
  transition: all 0.3s;
}
nav.scrolled .nav-logo-img { height: 72px; width: 72px; }
.nav-logo-img:hover {
  filter: drop-shadow(0 0 28px rgba(212,168,67,0.95));
  transform: scale(1.06);
}

/* Mobile hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
}
.hamburger span { width: 26px; height: 2px; background: var(--gold); transition: 0.3s; display: block; }

/* Mobile nav overlay */
.mobile-nav {
  display: none; position: fixed; inset: 0; top: 96px;
  background: rgba(12,11,28,0.98); backdrop-filter: blur(24px);
  z-index: 998; flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.5rem;
  font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: rgba(255,255,255,0.8); text-decoration: none; transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .nav-logo-img { height: 90px; width: 90px; margin-bottom: 16px; }

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1540747913346-19212a4b423d?w=1800&q=80');
  background-size: cover; background-position: center 20%;
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(18,17,42,0.72) 0%,
    rgba(90,31,143,0.25) 40%,
    rgba(14,13,31,0.85) 75%,
    var(--navy3) 100%);
}
.beams { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.beam {
  position: absolute; top: 0; width: 1px;
  background: linear-gradient(180deg, rgba(212,168,67,0.65) 0%, transparent 100%);
  transform-origin: top center;
}
.beam::before {
  content: ''; position: absolute; top: -2px; left: 50%; transform: translateX(-50%);
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold2);
  box-shadow: 0 0 16px 6px rgba(212,168,67,0.8), 0 0 40px 16px rgba(212,168,67,0.3);
}
.beam:nth-child(1) { left: 7%; height: 58vh; animation: sw 5s ease-in-out infinite alternate; }
.beam:nth-child(2) { left: 16%; height: 68vh; animation: sw 6.5s ease-in-out 0.4s infinite alternate; }
.beam:nth-child(3) { right: 7%; height: 55vh; animation: sw 5.5s ease-in-out 0.9s infinite alternate; }
.beam:nth-child(4) { right: 16%; height: 65vh; animation: sw 7s ease-in-out 0.2s infinite alternate; }
@keyframes sw { 0% { transform: rotate(-5deg); } 100% { transform: rotate(5deg); } }

.hero-content {
  position: relative; z-index: 2;
  padding: 120px 20px 70px;
  max-width: 900px; margin: 0 auto;
}
.hero-logo-wrap {
  margin: 0 auto 28px;
  width: 200px; height: 200px;
  animation: floatY 6s ease-in-out infinite;
  filter: drop-shadow(0 0 40px rgba(212,168,67,0.5));
}
.hero-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem;
  letter-spacing: 6px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; opacity: 0.85;
}
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(4.5rem, 13vw, 10rem);
  line-height: 0.88; letter-spacing: 5px;
  background: linear-gradient(160deg, var(--gold2) 0%, var(--gold) 45%, var(--gold3) 80%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 2px 24px rgba(212,168,67,0.3));
  margin-bottom: 14px;
  background-size: 200%; animation: shimmer 5s linear infinite;
}
@keyframes shimmer { 0%{background-position:0%} 100%{background-position:200%} }
.hero-tagline {
  font-family: 'Cinzel', serif; font-size: clamp(0.8rem, 2vw, 1.1rem);
  letter-spacing: 4px; color: rgba(255,255,255,0.72);
  text-transform: uppercase; margin-bottom: 14px;
}
.hero-desc {
  font-size: 0.95rem; color: var(--dim); line-height: 1.8;
  max-width: 540px; margin: 0 auto 36px; font-weight: 300;
}
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-gold {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.78rem; letter-spacing: 3px; text-transform: uppercase;
  padding: 14px 38px; border: none; cursor: pointer; border-radius: 2px;
  background: linear-gradient(135deg, var(--gold3), var(--gold), var(--gold2));
  color: #180028;
  box-shadow: 0 0 28px rgba(212,168,67,0.4);
  transition: all 0.3s; text-decoration: none; display: inline-block;
  position: relative; overflow: hidden;
}
.btn-gold::before {
  content: ''; position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg,transparent,rgba(255,255,255,0.28),transparent);
  transition: 0.5s;
}
.btn-gold:hover { box-shadow: 0 0 50px rgba(212,168,67,0.7); transform: translateY(-2px); }
.btn-gold:hover::before { left: 100%; }

.btn-outline {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 0.78rem; letter-spacing: 3px; text-transform: uppercase;
  padding: 13px 38px; cursor: pointer; border-radius: 2px;
  background: transparent; color: var(--gold);
  border: 1px solid rgba(212,168,67,0.55);
  transition: all 0.3s; text-decoration: none; display: inline-block;
}
.btn-outline:hover {
  background: rgba(212,168,67,0.1); border-color: var(--gold);
  box-shadow: 0 0 28px rgba(212,168,67,0.2);
}

/* ═══════════════════════════════════════
   SHARED SECTION STYLES
═══════════════════════════════════════ */
.sec { padding: 90px 6%; }
.sec-inner { max-width: 1260px; margin: 0 auto; }
.gold-tag {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.68rem;
  letter-spacing: 5px; text-transform: uppercase; color: var(--gold);
  display: flex; align-items: center; gap: 12px;
}
.gold-tag::before, .gold-tag::after {
  content:''; height: 1px; background: var(--gold); flex: 1; max-width: 36px;
}
.gold-tag.c { justify-content: center; }
.sec-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  letter-spacing: 3px; color: var(--gold);
  line-height: 1; margin-top: 6px; margin-bottom: 10px;
}
.sec-title.c { text-align: center; }
.underline-gold {
  width: 60px; height: 3px; margin: 0 auto 40px;
  background: linear-gradient(90deg, var(--gold3), var(--gold2));
  border-radius: 2px;
}

/* ═══════════════════════════════════════
   LEGACY
═══════════════════════════════════════ */
.legacy-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 70px; align-items: center;
}
.legacy-text p {
  font-size: 0.95rem; color: var(--dim); line-height: 1.85;
  margin-bottom: 16px; font-weight: 300;
}
.legacy-quote {
  border-left: 3px solid var(--gold); padding-left: 18px; margin-top: 24px;
  font-family: 'Cinzel', serif; font-size: 0.88rem;
  color: rgba(212,168,67,0.75); line-height: 1.6;
}
.legacy-crest {
  width: 180px; height: 180px;
  filter: drop-shadow(0 0 30px rgba(212,168,67,0.45)) drop-shadow(0 0 60px rgba(123,47,190,0.3));
  animation: floatY 5s ease-in-out infinite;
}
.legacy-tag {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.6rem; letter-spacing: 3px;
  color: var(--gold); text-align: center;
}
.stats-row { display: flex; gap: 36px; }
.s-stat { text-align: center; }
.s-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 3rem; color: var(--gold);
  display: block; line-height: 1;
  text-shadow: 0 0 20px rgba(212,168,67,0.4);
}
.s-lbl { font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: var(--dim2); }

/* ═══════════════════════════════════════
   OWNERS
═══════════════════════════════════════ */
.owners-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 50px; }
.owner-card {
  border-radius: 6px; overflow: hidden;
  border: 1px solid rgba(212,168,67,0.14);
  background: rgba(26,24,48,0.8);
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
  position: relative;
}
.owner-card::before {
  content:''; position: absolute; top:0; left:0; right:0; height:2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.owner-card:hover {
  border-color: rgba(212,168,67,0.45);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 50px rgba(212,168,67,0.1);
  transform: translateY(-7px);
}
.owner-card:hover::before { opacity: 1; }
.owner-img {
  width: 100%; aspect-ratio: 3/3.8; object-fit: cover; object-position: top;
  display: block; filter: saturate(0.8) brightness(0.88);
  transition: filter 0.4s;
}
.owner-card:hover .owner-img { filter: saturate(1.05) brightness(1); }
.owner-shade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 55%;
  pointer-events: none;
}
.owner-info { padding: 20px 24px 26px; }
.owner-name {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; letter-spacing: 2px;
  color: var(--gold); margin-bottom: 3px; text-transform: uppercase;
}
.owner-role {
  font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(212,168,67,0.5); margin-bottom: 12px;
}
.owner-desc { font-size: 0.88rem; color: var(--dim); line-height: 1.65; font-weight: 300; }

/* ═══════════════════════════════════════
   SQUAD
═══════════════════════════════════════ */
.squad-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 50px;
}
.player-card {
  position: relative; border-radius: 6px; overflow: hidden;
  border: 1px solid rgba(212,168,67,0.1);
  background: rgba(26,24,48,0.7);
  cursor: pointer; transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}
.player-card:hover {
  border-color: rgba(212,168,67,0.5);
  transform: translateY(-10px) scale(1.01);
  box-shadow: 0 28px 60px rgba(0,0,0,0.6), 0 0 40px rgba(212,168,67,0.15);
}
.player-card::after {
  content:''; position: absolute; top:0; left:0; right:0; height:2px;
  background: linear-gradient(90deg, var(--purple), var(--gold), var(--purple));
  opacity:0; transition: opacity 0.3s;
}
.player-card:hover::after { opacity:1; }
.player-num {
  position: absolute; top: 14px; left: 16px; z-index: 2;
  font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 1px;
  color: rgba(212,168,67,0.45); line-height: 1;
}
.player-img {
  width: 100%; aspect-ratio: 2/2.65; object-fit: cover; object-position: top center;
  display: block; filter: saturate(0.75) brightness(0.88);
  transition: all 0.4s;
}
.player-card:hover .player-img { filter: saturate(1.1) brightness(1.02); }
.player-shade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
  pointer-events: none;
}
.player-info { padding: 14px 18px 18px; }
.player-name {
  font-family: 'Barlow Condensed', sans-serif; font-size: 1.1rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.5px; margin-bottom: 3px;
}
.player-role {
  font-size: 0.63rem; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); font-weight: 600;
}

/* ═══════════════════════════════════════
   SCHEDULE
═══════════════════════════════════════ */
.sched-wrap { margin-top: 44px; border-radius: 8px; overflow: hidden; border: 1px solid rgba(212,168,67,0.14); }
.sched-table { width: 100%; border-collapse: collapse; }
.sched-table thead {
  background: linear-gradient(90deg, rgba(107,36,168,0.6), rgba(90,31,143,0.6));
  border-bottom: 1px solid rgba(212,168,67,0.28);
}
.sched-table thead th {
  padding: 16px 22px; text-align: left;
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.68rem;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 700;
}
.sched-table tbody tr {
  border-bottom: 1px solid rgba(212,168,67,0.06);
  background: rgba(26,24,48,0.5);
  transition: background 0.25s;
}
.sched-table tbody tr:hover { background: rgba(107,36,168,0.2); }
.sched-table td { padding: 18px 22px; font-size: 0.9rem; color: rgba(255,255,255,0.75); vertical-align: middle; }
.vs-wrap { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.t-home { font-weight: 700; color: #fff; }
.vs-pill {
  font-family: 'Bebas Neue', sans-serif; font-size: 0.85rem;
  color: var(--gold); letter-spacing: 1px; padding: 2px 8px;
  border: 1px solid rgb(255 255 255); border-radius: 2px;
}
.t-away { color: var(--dim); }
.badge { display: inline-block; padding: 4px 12px; border-radius: 2px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.62rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }
.b-live { background: rgba(255,60,60,0.14); color: #ff7070; border: 1px solid rgba(255,60,60,0.32); animation: blink 1.5s infinite; }
.b-up   { background: rgba(212,168,67,0.1); color: var(--gold); border: 1px solid rgba(212,168,67,0.3); }
.b-won  { background: rgba(50,200,100,0.1); color: #6ee89a; border: 1px solid rgba(50,200,100,0.28); }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.55} }
.d-cell { font-family:'Barlow Condensed',sans-serif; font-weight:700; color:rgba(212,168,67,0.75); font-size:0.85rem; }
.v-cell { font-size:0.78rem; color:var(--dim2); }

/* ═══════════════════════════════════════
   INSTAGRAM REELS — horizontal scroll
═══════════════════════════════════════ */
#reels { background: linear-gradient(180deg, var(--navy2) 0%, var(--navy3) 100%); }

.reels-header { text-align: center; margin-bottom: 12px; }

.reels-subtext {
  text-align: center;
  font-size: 0.9rem; color: var(--dim); font-weight: 300; line-height: 1.6;
  max-width: 520px; margin: 0 auto 40px;
}

/* Scroll track */
.reels-track-wrap {
  position: relative;
}
.reels-track-wrap::before,
.reels-track-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.reels-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--navy2), transparent);
}
.reels-track-wrap::after {
  right: 0;
  background: linear-gradient(270deg, var(--navy3), transparent);
}

.reels-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 12px 6px 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--gold3) transparent;
  cursor: grab;
}
.reels-track:active { cursor: grabbing; }
.reels-track::-webkit-scrollbar { height: 4px; }
.reels-track::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 4px; }
.reels-track::-webkit-scrollbar-thumb { background: var(--gold3); border-radius: 4px; }

/* Each reel card */
.reel-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212,168,67,0.18);
  background: rgba(26,24,48,0.9);
  transition: all 0.35s cubic-bezier(0.23,1,0.32,1);
  position: relative;
}
.reel-card:hover {
  border-color: rgba(212,168,67,0.5);
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 30px rgba(212,168,67,0.12);
}
.reel-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--purple), var(--gold), var(--purple));
  opacity: 0; transition: opacity 0.3s; z-index: 3;
}
.reel-card:hover::before { opacity: 1; }

/* Instagram embed wrapper — fixed 9:16 aspect */
.reel-embed {
  width: 100%;
  aspect-ratio: 9/16;
  position: relative;
  overflow: hidden;
  background: #000;
}
.reel-embed iframe {
  position: absolute; inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
  display: block;
}

/* Fallback placeholder when embed hasn't loaded */
.reel-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 14px;
  background: linear-gradient(160deg, #2a1545, #12112a);
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem; letter-spacing: 1px;
}
.reel-placeholder .ig-icon {
  font-size: 42px;
  filter: drop-shadow(0 0 12px rgba(212,168,67,0.5));
  animation: igPulse 2.5s ease-in-out infinite;
}
@keyframes igPulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.1)} }
.reel-placeholder p { font-family: 'Barlow Condensed', sans-serif; letter-spacing: 2px; text-transform: uppercase; font-size: 0.7rem; }

/* Reel footer label */
.reel-label {
  padding: 12px 16px 14px;
  display: flex; align-items: center; gap: 8px;
}
.reel-ig-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  flex-shrink: 0;
}
.reel-label-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--dim);
}

/* Nav arrows */
.reels-nav {
  display: flex; justify-content: center; gap: 12px; margin-top: 28px;
}
.reels-btn {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(212,168,67,0.3);
  background: rgba(26,24,48,0.8);
  color: var(--gold); font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s; outline: none;
}
.reels-btn:hover {
  border-color: var(--gold);
  background: rgba(212,168,67,0.12);
  box-shadow: 0 0 18px rgba(212,168,67,0.25);
  transform: scale(1.08);
}

/* Follow CTA */
.reels-cta {
  text-align: center; margin-top: 32px;
}
.reels-cta a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; text-decoration: none;
  color: var(--navy3);
  padding: 12px 32px; border-radius: 2px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s;
  box-shadow: 0 0 24px rgba(220,39,67,0.3);
}
.reels-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(220,39,67,0.5);
}

/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px; margin-top: 44px;
}
.g-item {
  position: relative; overflow: hidden; border-radius: 5px;
  border: 1px solid rgba(212,168,67,0.08); cursor: pointer; transition: all 0.4s;
}
.g-item:nth-child(1) { grid-column: span 2; }
.g-item:nth-child(4) { grid-column: span 2; }
.g-item img {
  width: 100%; height: 100%; display: block;
  object-fit: cover; aspect-ratio: 16/9;
  transition: transform 0.55s cubic-bezier(0.23,1,0.32,1);
  filter: saturate(0.85) brightness(0.9);
}
.g-item:nth-child(1) img,
.g-item:nth-child(4) img { aspect-ratio: 16/7; }
.g-item:hover { border-color: rgba(212,168,67,0.45); box-shadow: 0 0 32px rgba(212,168,67,0.14); }
.g-item:hover img { transform: scale(1.06); filter: saturate(1.1) brightness(1); }
.g-over {
  position: absolute; inset: 0;
  background: linear-gradient(transparent 50%, rgba(14,13,31,0.92));
  display: flex; align-items: flex-end; padding: 16px;
  opacity: 0; transition: opacity 0.3s;
}
.g-item:hover .g-over { opacity: 1; }
.g-cap { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; color: var(--gold); }

/* ═══════════════════════════════════════
   SPONSORS
═══════════════════════════════════════ */
.sponsors-bar {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: center; justify-content: center; margin-top: 44px;
}
.sp-pill {
  padding: 15px 26px; border-radius: 4px;
  border: 1px solid rgba(212,168,67,0.14);
  background: white;
  display: flex; align-items: center; gap: 10px;
  transition: all 0.3s; cursor: pointer;
}
.sp-pill:hover {
  border-color: rgba(212,168,67,0.45);
  box-shadow: 0 0 22px rgba(212,168,67,0.1);
  transform: translateY(-3px);
}
.sp-logo { width: 175px; }
.sp-name { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 0.95rem; letter-spacing: 1px; color: rgba(255,255,255,0.6); }
.sp-pill.title { border-color: rgba(212,168,67,0.32); background: rgba(107,36,168,0.28); }
.sp-pill.title .sp-name { color: var(--gold); font-size: 1.05rem; }

/* ═══════════════════════════════════════
   SDG GOALS
═══════════════════════════════════════ */
#sdg { background: linear-gradient(180deg, var(--navy3) 0%, var(--navy2) 100%); }

.sdg-intro {
  text-align: center; font-size: 0.95rem; color: var(--dim);
  line-height: 1.75; max-width: 620px; margin: 0 auto 52px;
  font-weight: 300;
}

.sdg-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.sdg-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(212,168,67,0.12);
  background: rgba(26,24,48,0.85);
  padding: 28px 20px 24px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
  cursor: default;
}
.sdg-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  transition: opacity 0.3s;
}
.sdg-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

/* Individual SDG color accents */
.sdg-card[data-sdg="3"]  { --sdg-color: #4C9F38; }
.sdg-card[data-sdg="4"]  { --sdg-color: #C5192D; }
.sdg-card[data-sdg="5"]  { --sdg-color: #FF3A21; }
.sdg-card[data-sdg="16"] { --sdg-color: #00689D; }
.sdg-card[data-sdg="17"] { --sdg-color: #19486A; }

.sdg-card::before { background: var(--sdg-color); opacity: 0.7; }
.sdg-card:hover::before { opacity: 1; }
.sdg-card:hover { border-color: var(--sdg-color); box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 30px rgba(0,0,0,0.3); }

.sdg-num-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: 50%;
  border: 2px solid var(--sdg-color);
  margin: 0 auto 16px;
  position: relative;
  background: rgba(0,0,0,0.25);
  transition: all 0.3s;
}
.sdg-card:hover .sdg-num-wrap {
  background: var(--sdg-color);
  box-shadow: 0 0 24px var(--sdg-color);
}
.sdg-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: 1px;
  color: var(--sdg-color); line-height: 1;
  transition: color 0.3s;
}
.sdg-card:hover .sdg-num { color: #fff; }

.sdg-icon {
  font-size: 28px; display: block; margin-bottom: 14px;
  filter: drop-shadow(0 0 6px rgba(212,168,67,0.3));
}
.sdg-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 10px; line-height: 1.3;
}
.sdg-desc {
  font-size: 0.82rem; color: var(--dim); line-height: 1.65; font-weight: 300;
}

/* SDG footer note */
.sdg-footer-note {
  text-align: center; margin-top: 40px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
}
.sdg-footer-note::before, .sdg-footer-note::after {
  content: ''; flex: 1; max-width: 140px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,67,0.3));
}
.sdg-footer-note::after {
  background: linear-gradient(270deg, transparent, rgba(212,168,67,0.3));
}
.sdg-footer-note span {
  font-family: 'Cinzel', serif; font-size: 0.72rem;
  letter-spacing: 2px; color: rgba(212,168,67,0.55);
  text-transform: uppercase;
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 64px; align-items: start; margin-top: 50px; }
.c-info { display: flex; flex-direction: column; gap: 22px; }
.c-row { display: flex; gap: 14px; align-items: flex-start; }
.c-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 4px;
  border: 1px solid rgba(212,168,67,0.25);
  background: rgba(107,36,168,0.25);
  display: flex; align-items: center; justify-content: center; font-size: 17px;
}
.c-ttl { font-family: 'Barlow Condensed', sans-serif; font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 4px; }
.c-val { font-size: 0.88rem; color: var(--dim); line-height: 1.55; }
.socials { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 6px; }
.soc {
  width: 42px; height: 42px; border-radius: 4px;
  border: 1px solid rgba(212,168,67,0.2);
  background: rgba(26,24,48,0.8);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; cursor: pointer; transition: all 0.3s; text-decoration: none;
}
.soc:hover { border-color: var(--gold); background: rgba(212,168,67,0.1); box-shadow: 0 0 16px rgba(212,168,67,0.2); transform: translateY(-2px); }

.c-form { display: flex; flex-direction: column; gap: 14px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.f-grp { display: flex; flex-direction: column; gap: 6px; }
.f-lbl { font-family: 'Barlow Condensed', sans-serif; font-size: 0.62rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(212,168,67,0.65); font-weight: 700; }
.f-in, .f-ta {
  background: rgba(26,24,48,0.8); border: 1px solid rgba(212,168,67,0.12);
  border-radius: 3px; padding: 13px 15px; color: #fff;
  font-family: 'Barlow', sans-serif; font-size: 0.95rem; outline: none; width: 100%;
  transition: all 0.3s;
}
.f-in:focus, .f-ta:focus {
  border-color: rgba(212,168,67,0.45);
  background: rgba(107,36,168,0.18);
  box-shadow: 0 0 14px rgba(212,168,67,0.08);
}
.f-ta { resize: vertical; min-height: 110px; }
::placeholder { color: rgba(255,255,255,0.2); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: #09080f;
  border-top: 1px solid rgba(212,168,67,0.2);
  padding: 52px 6% 28px;
}
.footer-inner { max-width: 1260px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 28px; margin-bottom: 36px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo { width: 52px; height: 52px; filter: drop-shadow(0 0 10px rgba(212,168,67,0.4)); }
.footer-brand-text { font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 700; color: var(--gold); }
.footer-brand-sub { font-size: 0.62rem; letter-spacing: 2px; color: var(--dim2); }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--dim2); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }
.footer-div { height: 1px; background: linear-gradient(90deg, transparent, rgba(212,168,67,0.25), transparent); margin-bottom: 22px; }
.footer-bot { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 0.76rem; color: rgba(255,255,255,0.25); }
.footer-copy span { color: rgba(212,168,67,0.5); }

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.rev { opacity: 0; transform: translateY(36px); transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.23,1,0.32,1); }
.rev.on { opacity: 1; transform: translateY(0); }
.rev-l { opacity: 0; transform: translateX(-36px); transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.23,1,0.32,1); }
.rev-l.on { opacity: 1; transform: translateX(0); }
.rev-r { opacity: 0; transform: translateX(36px); transition: opacity 0.85s ease, transform 0.85s cubic-bezier(0.23,1,0.32,1); }
.rev-r.on { opacity: 1; transform: translateX(0); }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1200px) {
  .sdg-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1024px) {
  .legacy-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .owners-grid { grid-template-columns: 1fr 1fr; }
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-right { display: none; }
  .hamburger { display: flex; }
  .sdg-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-left { display: none; }
  .squad-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .g-item:nth-child(1),.g-item:nth-child(4) { grid-column: span 2; }
  .f-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .owners-grid { grid-template-columns: 1fr; }
  .hero-logo-wrap { width: 160px; height: 160px; }
  .sdg-grid { grid-template-columns: repeat(2, 1fr); }
  .reel-card { flex: 0 0 240px; }
}
@media (max-width: 480px) {
  .squad-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .g-item:nth-child(1),.g-item:nth-child(4) { grid-column: span 1; }
  .hero-btns { flex-direction: column; align-items: center; }
  .stats-row { gap: 20px; }
  .sdg-grid { grid-template-columns: 1fr 1fr; }
  .reel-card { flex: 0 0 200px; }
}


.c-icon i, .soc i {
  font-size: 17px;
  color: var(--gold);
}

.sdg-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  filter: drop-shadow(0 0 6px rgba(212,168,67,0.3));
}

.sdg-icon i { font-size: 28px; }

.ig-icon i {
  font-size: 42px;
  color: var(--gold);
}

.reel-ig-dot {
  /* Keep existing gradient dot — it's decorative, not an emoji */
}


/* Form validation & status */
.f-err {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem; letter-spacing: 1px;
  color: #ff6b6b; display: none;
  margin-top: 4px; padding-left: 2px;
}
.f-in.invalid, .f-ta.invalid {
  border-color: rgba(255, 80, 80, 0.6) !important;
  box-shadow: 0 0 10px rgba(255, 80, 80, 0.15) !important;
}
.f-in.valid, .f-ta.valid {
  border-color: rgba(50, 200, 100, 0.5) !important;
}
.f-status {
  display: none; padding: 14px 18px; border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem; letter-spacing: 1px;
  align-items: center; gap: 10px;
}
.f-status i { font-size: 1.1rem; }
.f-success {
  background: rgba(50,200,100,0.12);
  border: 1px solid rgba(50,200,100,0.35);
  color: #6ee89a;
}
.f-error {
  background: rgba(255,80,80,0.1);
  border: 1px solid rgba(255,80,80,0.3);
  color: #ff8080;
}

/* ── FORM SPACING FIX ── */

.c-form { 
  display: flex; 
  flex-direction: column; 
  gap: 20px;          /* was 14px — more space between rows */
}

.f-row { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 20px;          /* was 14px — more space between first/last name */
}

.f-grp { 
  display: flex; 
  flex-direction: column; 
  gap: 8px;           /* was 6px — more space between label and input */
}

.f-lbl { 
  font-family: 'Barlow Condensed', sans-serif; 
  font-size: 0.65rem; 
  letter-spacing: 2px; 
  text-transform: uppercase; 
  color: rgba(212,168,67,0.65); 
  font-weight: 700;
  margin-bottom: 2px; /* extra breathing room below label */
}

.f-in { 
  background: rgba(26,24,48,0.8); 
  border: 1px solid rgba(212,168,67,0.12);
  border-radius: 4px;         /* slightly rounder */
  padding: 16px 18px;         /* was 13px 15px — taller fields */
  color: #fff;
  font-family: 'Barlow', sans-serif; 
  font-size: 1rem;             /* was 0.95rem */
  outline: none; 
  width: 100%;
  transition: all 0.3s;
  line-height: 1.4;
}

.f-ta {
  background: rgba(26,24,48,0.8); 
  border: 1px solid rgba(212,168,67,0.12);
  border-radius: 4px;
  padding: 16px 18px;         /* was 13px 15px */
  color: #fff;
  font-family: 'Barlow', sans-serif; 
  font-size: 1rem;
  outline: none; 
  width: 100%;
  transition: all 0.3s;
  resize: vertical; 
  min-height: 140px;          /* was 110px — taller message box */
  line-height: 1.6;
}

.f-in:focus, .f-ta:focus {
  border-color: rgba(212,168,67,0.45);
  background: rgba(107,36,168,0.18);
  box-shadow: 0 0 14px rgba(212,168,67,0.08);
}

.f-in::placeholder, .f-ta::placeholder {
  color: rgba(255,255,255,0.2);
  font-size: 0.95rem;
}

/* Status messages spacing */
.f-status {
  display: none; 
  padding: 16px 20px;        /* was 14px 18px */
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.88rem;        /* slightly bigger */
  letter-spacing: 1px;
  align-items: center; 
  gap: 12px;
  margin-top: 4px;
}

/* Error text below fields */
.f-err {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem; 
  letter-spacing: 1px;
  color: #ff6b6b; 
  display: none;
  margin-top: 2px; 
  padding-left: 2px;
}

/* Submit button spacing */
#submitBtn {
  margin-top: 6px;   /* small gap above button */
  padding: 16px;     /* taller button */
  font-size: 0.82rem;
  letter-spacing: 3px;
}




/* ── MUSIC PLAYER ── */
.music-player {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(18,17,42,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: 50px;
  padding: 10px 18px 10px 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(212,168,67,0.1);
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}
.music-player:hover {
  border-color: rgba(212,168,67,0.6);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5), 0 0 30px rgba(212,168,67,0.2);
}

/* Play/Pause button */
.music-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--gold3), var(--gold));
  color: #180028;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  box-shadow: 0 0 16px rgba(212,168,67,0.4);
}
.music-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 28px rgba(212,168,67,0.7);
}

/* Song info + bars */
.music-info {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
}
.music-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
  text-transform: uppercase;
}

/* Animated sound bars */
.music-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 18px;
}
.music-bars span {
  display: block;
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
  animation: none;   /* starts paused */
}
.music-bars.playing span { animation: bar 0.8s ease-in-out infinite alternate; }
.music-bars span:nth-child(1) { height: 6px;  animation-delay: 0s; }
.music-bars span:nth-child(2) { height: 14px; animation-delay: 0.15s; }
.music-bars span:nth-child(3) { height: 10px; animation-delay: 0.3s; }
.music-bars span:nth-child(4) { height: 16px; animation-delay: 0.1s; }
.music-bars span:nth-child(5) { height: 8px;  animation-delay: 0.25s; }

@keyframes bar {
  0%   { transform: scaleY(0.3); opacity: 0.5; }
  100% { transform: scaleY(1.4); opacity: 1; }
}

/* Volume slider */
.vol-slider {
  -webkit-appearance: none;
  width: 70px; height: 3px;
  background: rgba(212,168,67,0.25);
  border-radius: 2px; outline: none; cursor: pointer;
}
.vol-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 6px rgba(212,168,67,0.6);
}

/* Mobile — collapse to just button */
@media (max-width: 600px) {
  .music-info, .music-vol { display: none; }
  .music-player { padding: 10px; border-radius: 50%; }
}



/* ── SCHEDULE MOBILE RESPONSIVE ── */
@media (max-width: 768px) {

  /* Hide table header */
  .sched-table thead { display: none; }

  /* Make each row a card */
  .sched-table tbody tr {
    display: block;
    margin-bottom: 16px;
    border-radius: 8px;
    border: 1px solid rgba(212,168,67,0.2);
    background: rgba(26,24,48,0.8);
    padding: 16px;
    border-bottom: 1px solid rgba(212,168,67,0.2) !important;
  }

  /* Each cell becomes a block row */
  .sched-table tbody td {
    display: flex;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.88rem;
  }

  .sched-table tbody td:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  /* Add label before each cell */
  .sched-table tbody td::before {
    content: attr(data-label);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(212,168,67,0.5);
    min-width: 70px;
    flex-shrink: 0;
  }

  /* VS match wrap — stack on mobile */
  .vs-wrap {
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
  }

  .t-home { font-size: 0.88rem; }
  .t-away { font-size: 0.88rem; }

  .vs-pill {
    font-size: 0.75rem;
    padding: 1px 6px;
  }

  /* Venue smaller */
  .v-cell { font-size: 0.8rem; }

  /* Date cell */
  .d-cell { font-size: 0.85rem; }

  /* Wrap container */
  .sched-wrap {
    border-radius: 0;
    border: none;
    background: transparent;
  }
}

@media (max-width: 480px) {
  .sched-table tbody tr { padding: 14px; }
  .t-home { font-size: 0.82rem; }
  .vs-wrap { gap: 4px; }
}