/* ════════════════════════════════════════════════
   MUSCB – Manchester United Supporters Club Bangalore
   Main Stylesheet — Production Ready
   ════════════════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ─────────────────────────── */
:root {
  --red: #C10000;
  --red-dark: #8B0000;
  --red-deep: #6b0000;
  --red-bright: #E30000;
  --red-glow: rgba(193, 0, 0, 0.35);
  --black: #0A0A0A;
  --black-2: #111111;
  --black-3: #1A1A1A;
  --black-4: #222222;
  --black-card: #161616;
  --white: #FFFFFF;
  --white-90: rgba(255,255,255,0.90);
  --white-70: rgba(255,255,255,0.70);
  --white-50: rgba(255,255,255,0.50);
  --white-20: rgba(255,255,255,0.20);
  --white-10: rgba(255,255,255,0.10);
  --white-05: rgba(255,255,255,0.05);
  --gold: #F4C430;
  --gold-dark: #D4A017;
  --gold-glow: rgba(244, 196, 48, 0.3);

  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-display: 'Bebas Neue', impact, serif;
  --font-condensed: 'Barlow Condensed', 'Arial Narrow', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-red: 0 8px 32px rgba(193, 0, 0, 0.3);
  --shadow-gold: 0 8px 32px rgba(244, 196, 48, 0.25);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.5);

  --transition-fast: 180ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 280ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);

  --nav-h: 72px;
  --section-pad: clamp(64px, 8vw, 120px);
}

/* ─── RESET & BASE ──────────────────────────────── */
html,
body,
#root,
.app-wrapper {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-primary);
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── SCROLL ANIMATION ─────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate="fade-down"] { transform: translateY(-28px); }
[data-animate="scale-in"] { transform: scale(0.9); }
[data-animate="fade-right"] { transform: translateX(-40px); }
[data-animate="fade-left"] { transform: translateX(40px); }
[data-animate="slide-right"] { transform: translateX(-32px); opacity: 0; }
[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

/* ─── CONTAINER ────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
}

/* ─── TYPOGRAPHY UTILITIES ─────────────────────── */
.text-red { color: var(--red); }
.text-gold { color: var(--gold); }
.text-white { color: var(--white); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
}
.section-label.light { color: var(--gold); }
.section-label.light::before { background: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 20px;
}
.section-title.light { color: var(--white); }

.section-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--white-70);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 56px;
}

/* ─── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all var(--transition-base);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  transition: opacity var(--transition-fast);
  border-radius: inherit;
}
.btn:hover::after { opacity: 0.07; }
.btn:active::after { opacity: 0.14; }

.btn-primary {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(193, 0, 0, 0.5);
}

.btn-secondary {
  background: var(--white-10);
  color: var(--white);
  border: 1.5px solid var(--white-20);
  backdrop-filter: blur(12px);
}
.btn-secondary:hover {
  background: var(--white-20);
  border-color: var(--white-50);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white-70);
  border: 1.5px solid var(--white-20);
}
.btn-ghost:hover {
  color: var(--white);
  border-color: var(--white-50);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(244, 196, 48, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white-20);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white-30, rgba(255,255,255,0.3));
}
.btn-outline-light:hover {
  background: var(--white-10);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-nav-cta {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  padding: 10px 22px;
  font-size: 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px var(--red-glow);
}
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px var(--red-glow); }

.btn-sm {
  padding: 10px 20px;
  font-size: 13px;
}
.btn-lg {
  padding: 18px 40px;
  font-size: 17px;
}

/* ─── NAVBAR ──────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}
.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 40px rgba(0,0,0,0.5);
}
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 48px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 24px);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo svg, .nav-logo-img {
  width: 48px !important;
  height: 48px !important;
  transition: transform var(--transition-base);
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px var(--red-glow));
}
.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold);
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-brand-primary {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.3vw, 22px);
  letter-spacing: 1.5px;
  color: var(--white);
}
.brand-desktop {
  display: block;
}

.brand-mobile-wrapper {
  min-width: 0;
  flex: 1;
  overflow: hidden;
}
.brand-mobile {
  display: none;
  flex-direction: column;
  line-height: 1.15;
}
.mobile-brand-title {
  font-family: var(--font-display);
  font-size: clamp(17px, 5vw, 24px);
  letter-spacing: 2px;
  color: var(--white);
  text-transform: uppercase;
  white-space: nowrap;
}
.mobile-brand-subtitle {
  font-size: clamp(8px, 2.2vw, 11px);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}
.nav-brand-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(4px, 0.8vw, 12px);
}
.nav-link {
  font-size: clamp(12.5px, 0.85vw, 14px);
  font-weight: 600;
  padding: 8px clamp(6px, 0.7vw, 12px);
  border-radius: var(--radius-sm);
  color: var(--white-70);
  transition: color var(--transition-fast), background var(--transition-fast);
  letter-spacing: 0.1px;
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: var(--white-05); }
.nav-link.active { color: var(--red); }
.btn-nav-cta {
  white-space: nowrap;
}
.mobile-only-link { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-base);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 998;
  backdrop-filter: blur(4px);
}
.mobile-overlay.open { display: block; }

/* ─── HERO SECTION ────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  filter: saturate(1.3) brightness(0.38);
  transform: scale(1.03);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    175deg,
    rgba(100, 0, 0, 0.78) 0%,
    rgba(10, 10, 10, 0.65) 45%,
    rgba(10, 10, 10, 0.92) 100%
  );
}
.hero-pitch-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 30%, black 70%, transparent 100%);
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-up linear infinite;
}

@keyframes float-up {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 0.5; }
  100% { transform: translateY(-100vh) scale(0.3); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(40px, 8vw, 80px) 0 clamp(40px, 6vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(193, 0, 0, 0.2);
  border: 1px solid rgba(193, 0, 0, 0.4);
  color: #ff8080;
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
}
.badge-dot {
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse-red 1.5s ease infinite;
}
@keyframes pulse-red {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--red-glow); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px transparent; }
}

.hero-emblem {
  margin-bottom: 32px;
}
.emblem-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.emblem-ring {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.emblem-ring.outer {
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(193,0,0,0.25) 0%, transparent 70%);
  border: 1.5px solid rgba(193,0,0,0.3);
  animation: rotate-slow 20s linear infinite;
}
.emblem-ring.inner {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: rgba(10,10,10,0.8);
  border: 2px solid var(--red);
  box-shadow: 0 0 40px var(--red-glow), inset 0 0 30px rgba(193,0,0,0.1);
}
.emblem-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.emblem-logo-img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 2px solid var(--gold);
  filter: drop-shadow(0 2px 8px var(--red-glow));
  display: block;
}
.emblem-members-text { display: none; } /* moved below emblem */
.emblem-members-below {
  margin-top: 14px;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--gold);
  text-transform: uppercase;
  line-height: 1.2;
}
.emblem-strong-below {
  font-weight: 700;
}

.footer-logo-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  filter: drop-shadow(0 4px 16px var(--red-glow));
}
@keyframes rotate-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-title {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-title-line {
  font-family: var(--font-display);
  white-space: nowrap;
  text-align: center;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--white);
  width: 100%;
}

.hero-title-line-one {
  font-size: clamp(27px, 8.3vw, 84px);
  margin-bottom: 12px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.hero-title-line-two {
  font-size: clamp(28px, 8.5vw, 76px);
  text-shadow: 0 4px 30px rgba(193, 0, 0, 0.45);
}

.hero-line {
  display: inline;
}

.hero-kannada-text {
  color: var(--white);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.35), 0 0 30px rgba(255, 255, 255, 0.15);
  display: inline-block;
  animation: kannada-reveal 1.2s ease-out forwards;
}

.hero-line-red, .hero-line-united {
  animation: red-glow-pulse 2.5s infinite ease-in-out;
  display: inline-block;
}

@keyframes red-glow-pulse {
  0%, 100% {
    text-shadow: 0 0 12px rgba(193, 0, 0, 0.4), 0 0 24px rgba(193, 0, 0, 0.2);
  }
  50% {
    text-shadow: 0 0 22px rgba(193, 0, 0, 0.75), 0 0 38px rgba(193, 0, 0, 0.45);
  }
}

@keyframes kannada-reveal {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subheadline {
  font-size: clamp(14px, 1.2vw, 16.5px);
  color: var(--white-60);
  max-width: 650px;
  line-height: 1.65;
  margin: 0 auto 36px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 48px;
}

.hero-ggmu {
  margin-bottom: 0;
}
.ggmu-text {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 8px;
  color: var(--gold);
  text-shadow: 0 0 30px var(--gold-glow);
  animation: ggmu-glow 3s ease-in-out infinite;
}
@keyframes ggmu-glow {
  0%, 100% { text-shadow: 0 0 20px var(--gold-glow); }
  50% { text-shadow: 0 0 50px var(--gold-glow), 0 0 80px rgba(244,196,48,0.2); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 2px solid var(--white-50);
  border-bottom: 2px solid var(--white-50);
  transform: rotate(45deg);
  animation: bounce-down 2s ease infinite;
}
@keyframes bounce-down {
  0%, 100% { transform: rotate(45deg) translateY(0); opacity: 0.5; }
  50% { transform: rotate(45deg) translateY(6px); opacity: 1; }
}

/* Hero Ticker */
.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: var(--red);
  overflow: hidden;
  height: 44px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
  will-change: transform;
}
.ticker-track span {
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0 20px;
  color: white;
}
.ticker-track span:nth-child(even) {
  color: rgba(255,255,255,0.6);
  font-size: 10px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── SECTION COMMON ─────────────────────────── */
.section {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

/* Decorative background circles — always stay behind content */
.section-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.25;
  border-radius: 9999px;
  max-width: 80vw;
  max-height: 80vw;
  width: min(620px, 80vw);
  height: min(620px, 80vw);
}
/* Ensure all direct section content is above decorative elements */
.section-content,
.container {
  position: relative;
  z-index: 1;
}

/* ─── ABOUT SECTION ──────────────────────────── */
.about-section { background: var(--black-2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
  margin-top: 16px;
}

.about-visual { position: relative; }
.about-img-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  border: 1px solid rgba(193,0,0,0.2);
  box-shadow: var(--shadow-lg);
}
.about-img { width: 100%; height: 100%; object-fit: cover; }
.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
}
.about-stat-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--red);
  padding: 12px 20px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-red);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1;
  color: white;
}
.stat-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}
.about-quote-card {
  position: relative;
  margin-top: 20px;
  background: var(--black-card);
  border: 1px solid var(--white-10);
  border-left: 3px solid var(--red);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.quote-mark {
  font-family: Georgia, serif;
  font-size: 48px;
  color: var(--red);
  line-height: 0.6;
  margin-bottom: 12px;
}
.about-quote-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--white-70);
  font-style: italic;
}

.about-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pillar-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--black-card);
  border: 1px solid var(--white-05);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}
.pillar-card:hover {
  border-color: rgba(193,0,0,0.3);
  background: rgba(193,0,0,0.05);
  transform: translateX(4px);
}
.gold-pillar {
  border-color: rgba(244,196,48,0.2);
}
.gold-pillar:hover {
  border-color: rgba(244,196,48,0.4);
  background: rgba(244,196,48,0.04);
}
.pillar-icon {
  width: 48px;
  height: 48px;
  background: rgba(193,0,0,0.1);
  border: 1px solid rgba(193,0,0,0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.gold-pillar .pillar-icon { background: rgba(244,196,48,0.1); border-color: rgba(244,196,48,0.2); color: var(--gold); }
.pillar-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.pillar-content p {
  font-size: 13px;
  color: var(--white-50);
  line-height: 1.5;
}

/* ─── MEMBERSHIP SECTION ─────────────────────── */
.membership-section {
  background: linear-gradient(135deg, var(--red-deep) 0%, var(--red-dark) 40%, #1a0000 100%);
  overflow: hidden;
}
.membership-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.03) 0%, transparent 50%);
  background-size: cover;
}
.membership-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.oum-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  margin-bottom: 56px;
}

.step-card {
  flex: 1;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  backdrop-filter: blur(12px);
  transition: all var(--transition-base);
}
.step-card:hover {
  background: rgba(0,0,0,0.5);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.step-number {
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  color: rgba(255,255,255,0.08);
  position: absolute;
  top: 16px;
  right: 20px;
  letter-spacing: -2px;
}
.step-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 20px;
}
.step-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}
.step-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  margin-bottom: 16px;
}
.step-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
}
.step-note svg { flex-shrink: 0; margin-top: 1px; }
.gold-note { background: rgba(244,196,48,0.1); border: 1px solid rgba(244,196,48,0.2); color: var(--gold); }

.step-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  margin-top: 60px;
  gap: 4px;
  flex-shrink: 0;
}
.connector-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(244,196,48,0.4), rgba(255,255,255,0.2));
}
.connector-ball {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--gold-glow);
}

.oum-cta-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── BENEFITS SECTION ──────────────────────── */
.benefits-section { background: var(--black); }

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 56px;
}

.benefits-column {
  background: var(--black-card);
  border: 1px solid var(--white-05);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-base);
}
.benefits-column:hover { border-color: rgba(193,0,0,0.2); }
.benefits-column.local { border-color: rgba(244,196,48,0.1); }
.benefits-column.local:hover { border-color: rgba(244,196,48,0.3); }

.benefits-column-header {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  color: var(--white);
}
.benefits-column-header.global { background: rgba(193,0,0,0.12); border: 1px solid rgba(193,0,0,0.2); color: #ff8080; }
.benefits-column-header.local-header { background: rgba(244,196,48,0.08); border: 1px solid rgba(244,196,48,0.2); color: var(--gold); }

.benefit-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--white-05);
  transition: all var(--transition-fast);
}
.benefit-item:last-child { border-bottom: none; }
.benefit-item:hover { transform: translateX(4px); }
.benefit-check {
  width: 24px;
  height: 24px;
  background: rgba(193,0,0,0.15);
  color: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}
.local-check {
  background: rgba(244,196,48,0.1);
  color: var(--gold);
}
.benefit-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.benefit-item p { font-size: 12.5px; color: var(--white-50); line-height: 1.4; }

.benefits-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  margin-top: 100px;
}
.divider-ball {
  width: 56px;
  height: 56px;
  background: radial-gradient(circle, rgba(193,0,0,0.2), rgba(10,10,10,0.8));
  border: 1px solid rgba(193,0,0,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.benefits-cta { text-align: center; }

/* ─── SCREENINGS SECTION ────────────────────── */
.screenings-section {
  background: var(--black-2);
  overflow: hidden;
}
.screenings-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(193,0,0,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 30% at 80% 100%, rgba(193,0,0,0.04) 0%, transparent 70%);
}

.screenings-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.screening-card {
  background: var(--black-card);
  border: 1px solid var(--white-05);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
}
.screening-card:hover {
  transform: translateY(-4px);
  border-color: rgba(193,0,0,0.25);
  box-shadow: var(--shadow-card);
}
.featured-screening { border-color: rgba(193,0,0,0.2); }

.screening-badge {
  display: inline-block;
  background: rgba(193,0,0,0.15);
  border-bottom: 1px solid rgba(193,0,0,0.2);
  color: #ff8080;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 16px;
  width: 100%;
}
.screening-badge.upcoming { background: rgba(244,196,48,0.08); border-color: rgba(244,196,48,0.15); color: var(--gold); }

.screening-poster {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.screening-poster img { width: 100%; height: 100%; object-fit: cover; }
.screening-poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.screening-competition {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.screening-matchup {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1px;
}
.team-home { color: var(--red); }
.vs { font-size: 14px; color: var(--white-50); }
.team-away { color: var(--white-70); }

.screening-details { padding: 20px; }
.screening-info-row {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.screening-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--white-50);
  font-weight: 500;
}
.screening-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.screening-info-block { padding: 24px; }
.screening-info-block h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.screening-info-block p { font-size: 13.5px; color: var(--white-60, rgba(255,255,255,0.6)); line-height: 1.6; margin-bottom: 16px; }
.screening-list { margin-bottom: 20px; }
.screening-list li {
  font-size: 13px;
  color: var(--white-50);
  padding: 5px 0;
  border-bottom: 1px solid var(--white-05);
}
.screening-list li:last-child { border-bottom: none; }

.screenings-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 13.5px;
  color: var(--white-60, rgba(255,255,255,0.6));
}
.screenings-note a {
  color: var(--red);
  font-weight: 600;
  transition: color var(--transition-fast);
}
.screenings-note a:hover { color: var(--red-bright); }

/* ─── MEETUPS SECTION ─────────────────────── */
.meetups-section { background: var(--black); }

.meetups-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.meetup-card {
  background: var(--black-card);
  border: 1px solid var(--white-05);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.meetup-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}
.meetup-card:hover::before { transform: scaleX(1); }
.meetup-card:hover {
  transform: translateY(-6px);
  border-color: rgba(193,0,0,0.2);
  box-shadow: var(--shadow-card);
}

.meetup-type-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.meetup-icon {
  width: 72px;
  height: 72px;
  background: rgba(193,0,0,0.08);
  border: 1px solid rgba(193,0,0,0.15);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 20px;
}

.featured-meetup { border-color: rgba(193,0,0,0.2); }
.meetup-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.meetup-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.meetup-card p {
  font-size: 13.5px;
  color: var(--white-60, rgba(255,255,255,0.6));
  line-height: 1.6;
  margin-bottom: 16px;
}

.meetup-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}
.tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-full);
  color: var(--white-60, rgba(255,255,255,0.6));
}

.meetup-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.meetups-cta {
  text-align: center;
  padding: 40px;
  background: var(--black-card);
  border: 1px solid var(--white-05);
  border-radius: var(--radius-xl);
}
.meetups-cta p { color: var(--white-70); font-size: 16px; margin-bottom: 20px; }

/* ─── FOOTBALL SECTION ───────────────────── */
.football-section {
  position: relative;
  overflow: hidden;
}
.football-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--black-3) 0%, var(--black) 60%, rgba(139,0,0,0.15) 100%);
}
.pitch-lines-full {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.football-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, transparent 30%, rgba(10,10,10,0.7) 100%);
}

.football-hero-img {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 64px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 21/9;
  border: 1px solid rgba(193,0,0,0.2);
  box-shadow: 0 20px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(193,0,0,0.1);
}
.football-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.football-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 24px;
}
.football-overlay-text {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 4px;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.football-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.football-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--white-05);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.football-card:hover {
  background: rgba(193,0,0,0.06);
  border-color: rgba(193,0,0,0.25);
  transform: translateY(-4px);
}

.football-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white-70);
}
.red-icon { background: rgba(193,0,0,0.15); border-color: rgba(193,0,0,0.25); color: var(--red); }
.gold-icon { background: rgba(244,196,48,0.1); border-color: rgba(244,196,48,0.2); color: var(--gold); }

.football-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.football-card p {
  font-size: 13px;
  color: var(--white-50);
  line-height: 1.6;
  margin-bottom: 14px;
}

.football-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(193,0,0,0.1);
  border: 1px solid rgba(193,0,0,0.2);
  border-radius: var(--radius-full);
  color: rgba(193,0,0,0.9);
}
.gold-tag {
  background: rgba(244,196,48,0.08);
  border-color: rgba(244,196,48,0.2);
  color: var(--gold);
}
.football-cta { text-align: center; }

/* ─── COMMUNITY SECTION ──────────────────── */
.community-section { background: var(--black-2); }

.community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.community-reason {
  background: var(--black-card);
  border: 1px solid var(--white-05);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition-base);
}
.community-reason:hover {
  transform: translateY(-4px);
  border-color: rgba(193,0,0,0.2);
}
.reason-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}
.community-reason h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.community-reason p {
  font-size: 13.5px;
  color: var(--white-50);
  line-height: 1.6;
}

.community-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: linear-gradient(135deg, rgba(193,0,0,0.2) 0%, rgba(139,0,0,0.3) 100%);
  border: 1px solid rgba(193,0,0,0.3);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  position: relative;
  overflow: hidden;
}
.community-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(193,0,0,0.15), transparent 70%);
  pointer-events: none;
}
.banner-slogan {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 12px;
}
.community-banner-text p { font-size: 15px; color: var(--white-70); }

/* ─── GALLERY SECTION ────────────────────── */
.gallery-section { background: var(--black); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
  margin-bottom: 40px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid var(--white-05);
}
.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: unset;
}
.gallery-item.wide {
  grid-column: span 2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition-base);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.red-placeholder { background: linear-gradient(135deg, rgba(193,0,0,0.3), rgba(100,0,0,0.4)); }
.dark-placeholder { background: linear-gradient(135deg, rgba(30,30,30,0.9), rgba(15,15,15,0.9)); }
.gold-placeholder { background: linear-gradient(135deg, rgba(244,196,48,0.1), rgba(100,80,0,0.2)); }
.placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.3);
}
.placeholder-content span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.gallery-cta { text-align: center; }

/* ─── ANNOUNCEMENTS SECTION ─────────────── */
.announcements-section { background: var(--black-3); overflow: hidden; }
.announcements-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 0% 50%, rgba(193,0,0,0.05) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 100% 50%, rgba(244,196,48,0.03) 0%, transparent 60%);
}

.announcements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.announcement-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--white-05);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.announcement-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.announcement-card.pinned {
  border-color: rgba(193,0,0,0.2);
  background: rgba(193,0,0,0.04);
}

.announcement-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-block;
  width: fit-content;
}
.pin-badge { background: rgba(193,0,0,0.15); color: #ff8080; border: 1px solid rgba(193,0,0,0.25); }
.upcoming-badge { background: rgba(255,100,0,0.1); color: #ff8040; border: 1px solid rgba(255,100,0,0.2); }
.event-badge { background: rgba(100,180,255,0.08); color: #80c0ff; border: 1px solid rgba(100,180,255,0.15); }
.football-badge { background: rgba(80,180,80,0.08); color: #80e080; border: 1px solid rgba(80,180,80,0.15); }
.giveaway-badge { background: rgba(244,196,48,0.08); color: var(--gold); border: 1px solid rgba(244,196,48,0.2); }
.community-badge { background: rgba(180,100,255,0.08); color: #c080ff; border: 1px solid rgba(180,100,255,0.15); }

.announcement-icon { color: var(--white-30, rgba(255,255,255,0.3)); }
.announcement-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--white);
}
.announcement-card p {
  font-size: 13px;
  color: var(--white-50);
  line-height: 1.6;
  flex: 1;
}
.announcement-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
}
.announcement-link:hover { color: var(--red-bright); }

/* ─── LINKS SECTION ──────────────────────── */
.links-section { background: var(--black-2); }

.links-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--black-card);
  border: 1px solid var(--white-05);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  cursor: pointer;
}
.link-card:hover {
  transform: translateX(4px);
  border-color: rgba(193,0,0,0.25);
  background: rgba(193,0,0,0.05);
}

.primary-link {
  background: linear-gradient(135deg, rgba(193,0,0,0.15), rgba(139,0,0,0.2));
  border-color: rgba(193,0,0,0.3);
  grid-column: span 2;
}
.primary-link:hover { border-color: rgba(193,0,0,0.5); background: rgba(193,0,0,0.2); }

.primary-link-whatsapp {
  background: linear-gradient(135deg, rgba(37,211,102,0.12), rgba(18,140,116,0.18));
  border-color: rgba(37,211,102,0.25);
  grid-column: span 2;
}
.primary-link-whatsapp:hover {
  background: linear-gradient(135deg, rgba(37,211,102,0.18), rgba(18,140,116,0.25)) !important;
  border-color: rgba(37,211,102,0.4) !important;
}

.instagram-link:hover { border-color: rgba(225,48,108,0.3); background: rgba(225,48,108,0.05); }
.whatsapp-link:hover { border-color: rgba(37,211,102,0.3); background: rgba(37,211,102,0.04); }

.link-card-icon {
  width: 48px;
  height: 48px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.primary-link .link-card-icon { background: rgba(193,0,0,0.2); border-color: rgba(193,0,0,0.3); color: var(--red); }

.link-card-text { flex: 1; }
.link-card-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.link-card-text span { font-size: 12px; color: var(--white-50); }

.link-card-arrow {
  font-size: 18px;
  color: var(--white-30, rgba(255,255,255,0.3));
  transition: transform var(--transition-fast);
}
.link-card:hover .link-card-arrow {
  transform: translateX(4px);
  color: var(--red);
}

/* ─── CONTACT SECTION ────────────────────── */
.contact-section { overflow: hidden; }
.contact-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--black) 0%, var(--red-deep) 60%, var(--red-dark) 100%);
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-card {
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  text-align: center;
  transition: all var(--transition-base);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.contact-card:hover {
  background: rgba(0,0,0,0.5);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.featured-contact {
  background: rgba(193,0,0,0.2);
  border-color: rgba(193,0,0,0.35);
}
.featured-contact:hover { border-color: rgba(193,0,0,0.55); }

.contact-card-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card-icon.instagram { background: rgba(225,48,108,0.15); border: 2px solid rgba(225,48,108,0.25); color: #ff80a8; }
.contact-card-icon.community { background: rgba(193,0,0,0.2); border: 2px solid rgba(193,0,0,0.35); color: var(--red); }
.contact-card-icon.team { background: rgba(255,255,255,0.06); border: 2px solid rgba(255,255,255,0.12); color: var(--white-70); }

.contact-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
}
.contact-card p {
  font-size: 14px;
  color: var(--white-60, rgba(255,255,255,0.6));
  line-height: 1.6;
}
.contact-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  transition: color var(--transition-fast);
}
.contact-card:hover .contact-link { color: var(--white); }

/* ─── FOOTER ─────────────────────────────── */
.footer {
  position: relative;
  overflow: hidden;
}
.footer-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--black-3) 0%, var(--black) 40%);
  border-top: 1px solid rgba(193,0,0,0.15);
}
.footer-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 80px 80px;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--white-05);
}

.footer-logo {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}
.footer-emblem { flex-shrink: 0; filter: drop-shadow(0 4px 16px var(--red-glow)); }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 3px;
  color: var(--white);
}
.footer-brand-full {
  font-size: 12px;
  font-weight: 600;
  color: var(--white-50);
  margin-top: 4px;
  line-height: 1.4;
}
.footer-brand-tagline {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}
.footer-ggmu {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 4px;
  color: var(--red);
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-links-column h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white-50);
  margin-bottom: 16px;
}
.footer-links-column ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-column a {
  font-size: 14px;
  color: var(--white-60, rgba(255,255,255,0.6));
  transition: color var(--transition-fast);
}
.footer-links-column a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  flex-wrap: wrap;
}

.footer-social {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.footer-social-btn {
  width: 40px;
  height: 40px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-60, rgba(255,255,255,0.6));
  transition: all var(--transition-base);
}
.footer-social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-copyright {
  flex: 1;
  text-align: center;
}
.footer-copyright p {
  font-size: 12px;
  color: var(--white-40, rgba(255,255,255,0.4));
  margin-bottom: 4px;
}
.footer-disclaimer {
  font-size: 11px;
  color: var(--white-25, rgba(255,255,255,0.25)) !important;
  line-height: 1.5;
  max-width: 540px;
  margin: 0 auto;
}

.footer-badge span {
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--red);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1200px)
════════════════════════════════════════════ */
@media (max-width: 1200px) {
  .brand-desktop { display: none !important; }
  .brand-mobile { display: flex !important; }
  .nav-brand {
    min-width: 0;
    flex: 1;
    overflow: hidden;
  }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-only-link { display: block !important; width: 100%; }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    top: 0; right: 0;
    width: 300px;
    height: 100vh;
    background: rgba(8,8,8,0.98);
    backdrop-filter: blur(24px);
    border-left: 1px solid rgba(193,0,0,0.15);
    padding: 80px 24px 120px;
    gap: 4px;
    z-index: 999;
    box-shadow: -20px 0 80px rgba(0,0,0,0.8);
    overflow-y: auto;
  }
  .nav-links.mobile-open .nav-link {
    font-size: 17px;
    font-weight: 600;
    padding: 14px 16px;
    width: 100%;
    border-radius: var(--radius-md);
    border-bottom: 1px solid rgba(255,255,255,0.04);
  }
  .nav-links.mobile-open .btn-nav-cta {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 16px;
  }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .oum-steps { flex-direction: column; }
  .step-connector { flex-direction: row; margin: 0; padding: 8px 0; }
  .connector-line { width: 100%; height: 2px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 24px; }
  .benefits-divider { display: none; }
  .screenings-grid { grid-template-columns: 1fr; }
  .meetups-grid { grid-template-columns: 1fr; }
  .football-grid { grid-template-columns: repeat(2, 1fr); }
  .community-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.tall { grid-row: span 2; }
  .gallery-item.wide { grid-column: span 2; }
  .announcements-grid { grid-template-columns: repeat(2, 1fr); }
  .links-grid { grid-template-columns: 1fr; }
  .primary-link { grid-column: span 1; }
  .contact-cards { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-links-group { grid-template-columns: repeat(3, 1fr); }
  .community-banner { flex-direction: column; text-align: center; padding: 40px 32px; }
  .meetups-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 640px)
   Mobile-first, app-like design
════════════════════════════════════════════ */
@media (max-width: 640px) {
  :root {
    --nav-h: 60px;
    --section-pad: 56px;
  }

  /* ── Mobile Nav ── */
  .navbar { height: var(--nav-h); }
  .nav-brand-sub { display: none; }
  .nav-brand-primary { display: none; }
  .nav-logo svg, .nav-logo-img { width: 30px; height: 30px; }

  /* ── Mobile Hero ── */
  .hero { min-height: 100svh; padding-bottom: 44px; }
  .hero-content { gap: 0; padding: 24px 0 32px; }
  .hero-badge { font-size: 9px; padding: 6px 12px; letter-spacing: 1px; margin-bottom: 16px; }
  .emblem-wrapper { width: 96px; height: 96px; margin-bottom: 8px; }
  .emblem-ring.outer { width: 96px; height: 96px; margin-bottom: 0; }
  .emblem-ring.inner { width: 68px; height: 68px; }
  .emblem-logo-img { width: 38px; height: 38px; }
  .emblem-members-text span { font-size: 5.5px; }
  .emblem-members-below { margin-top: 8px; margin-bottom: 28px; }
  #hero-members-count { font-size: 11px; letter-spacing: 1.2px; }

  /* Mobile Hero Title Line sizing overrides */
  .hero-title {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
  }
  .hero-title-line-one {
    font-size: clamp(22px, 7.5vw, 56px);
    margin-bottom: 8px;
  }
  .hero-title-line-two {
    font-size: clamp(24px, 7.8vw, 58px);
  }

  .hero-subheadline { font-size: 14px; line-height: 1.6; margin-top: 12px; margin-bottom: 28px; padding: 0 8px; }
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 340px;
    gap: 10px;
    margin-bottom: 24px;
    margin-top: 12px;
  }
  .hero-cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 15px;
    border-radius: 14px;
  }
  .ggmu-text { font-size: 18px; letter-spacing: 6px; }
  .hero-scroll-indicator { display: none; }
  .hero-ticker { height: 38px; }
  .ticker-track span { font-size: 11px; padding: 0 14px; }

  /* ── Mobile Sections ── */
  .section-label { font-size: 11px; letter-spacing: 2.5px; }
  .section-title { font-size: clamp(28px, 9vw, 44px); }
  .section-subtitle { font-size: 14px; margin-bottom: 36px; }

  /* ── Mobile About ── */
  .about-grid { grid-template-columns: 1fr; gap: 28px; }
  .about-img-frame { aspect-ratio: 16/9; border-radius: var(--radius-md); }
  .about-stat-badge {
    bottom: 12px !important;
    left: 12px !important;
    padding: 8px 12px !important;
    max-width: 55% !important;
    border-radius: var(--radius-sm) !important;
  }
  .stat-num {
    font-size: 18px !important;
  }
  .stat-label {
    font-size: 8px !important;
    letter-spacing: 1px !important;
  }
  .pillar-card { padding: 16px; gap: 12px; }
  .pillar-icon { width: 40px; height: 40px; }

  /* ── Mobile OUM Steps ── */
  .oum-steps { flex-direction: column; gap: 12px; }
  .step-connector { display: none; }
  .step-card { padding: 24px 20px; border-radius: var(--radius-lg); }
  .step-number { font-size: 56px; }
  .oum-cta-group { flex-direction: column; align-items: stretch; gap: 10px; }
  .oum-cta-group .btn { justify-content: center; width: 100%; border-radius: 14px; padding: 16px; }

  /* ── Mobile Benefits ── */
  .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
  .benefits-divider { display: none; }
  .benefits-column { padding: 24px 20px; border-radius: var(--radius-lg); }
  .benefit-item { padding: 12px 0; }

  /* ── Mobile Screenings ── */
  .screenings-grid { grid-template-columns: 1fr; gap: 12px; }
  .screening-card { border-radius: var(--radius-lg); }
  .screening-info-block { padding: 20px; }

  /* ── Mobile Meetups ── */
  .meetups-grid { grid-template-columns: 1fr; gap: 12px; }
  .meetup-card { padding: 20px; border-radius: var(--radius-lg); }
  .meetup-icon { width: 56px; height: 56px; }
  .meetup-actions { flex-direction: column; gap: 8px; }
  .meetup-actions .btn { justify-content: center; width: 100%; }
  .meetups-cta { padding: 28px 20px; }

  /* ── Mobile Football ── */
  .football-grid { grid-template-columns: 1fr; gap: 10px; }
  .football-hero-img { aspect-ratio: 16/9; border-radius: var(--radius-lg); margin-bottom: 36px; }
  .football-overlay-text { font-size: 22px; }
  .football-card { padding: 20px; }

  /* ── Mobile Community ── */
  .community-grid { grid-template-columns: 1fr; gap: 12px; }
  .community-reason { padding: 20px 16px; border-radius: var(--radius-md); }
  .reason-icon { font-size: 24px; margin-bottom: 10px; }
  .community-reason h3 { font-size: 14px; }
  .community-reason p { font-size: 12px; }
  .community-banner {
    flex-direction: column;
    padding: 32px 20px;
    border-radius: var(--radius-xl);
    gap: 24px;
    text-align: center;
  }
  .community-banner-cta .btn { width: 100%; justify-content: center; border-radius: 14px; }
  .banner-slogan { font-size: 22px; }

  /* ── Mobile Gallery ── */
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .gallery-item { border-radius: var(--radius-md); aspect-ratio: 1; }
  .gallery-item.tall { grid-row: span 2; aspect-ratio: unset; }
  .gallery-item.wide { grid-column: span 2; aspect-ratio: 16/7; }

  /* ── Mobile Announcements ── */
  .announcements-grid { grid-template-columns: 1fr; gap: 10px; }
  .announcement-card { padding: 20px; border-radius: var(--radius-lg); }

  /* ── Mobile Links ── */
  .links-grid { grid-template-columns: 1fr; gap: 10px; }
  .primary-link { grid-column: span 1; }
  .link-card { padding: 16px 20px; border-radius: var(--radius-lg); min-height: 70px; }
  .link-card-icon { width: 42px; height: 42px; }

  /* ── Mobile Contact ── */
  .contact-cards { grid-template-columns: 1fr; gap: 12px; max-width: 100%; }
  .contact-card { padding: 28px 24px; border-radius: var(--radius-xl); }

  /* ── Mobile Footer ── */
  .footer-top { padding: 48px 0 32px; gap: 32px; }
  .footer-logo { flex-direction: column; gap: 12px; }
  .footer-links-group { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; padding-bottom: 80px; }
  .footer-disclaimer { font-size: 10px; }

  /* ── Mobile Bottom Padding for nav bar ── */
  body { padding-bottom: env(safe-area-inset-bottom); }
}

/* ─── UTILITY — SELECTION ────────────────── */
::selection { background: rgba(193,0,0,0.35); color: white; }

/* ─── UTILITY — SCROLLBAR ────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--red-dark); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--red); }

/* ════════════════════════════════════════════
   V3 ADDITIONS: MODALS, MOBILE REDESIGN & ADMIN
   ════════════════════════════════════════════ */

/* Navbar Admin Button */
.nav-admin-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--white-05);
  border: 1px solid var(--white-10);
  border-radius: 50%;
  color: var(--white-70);
  transition: all var(--transition-base);
  margin-left: 8px;
}
.nav-admin-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--red-glow);
}
.footer-admin-link {
  background: none;
  border: none;
  color: var(--white-20) !important;
  font-size: 11px;
  cursor: pointer;
  margin-left: 12px;
  transition: color var(--transition-fast);
  padding: 0;
  display: inline-block;
  font-family: inherit;
}
.footer-admin-link:hover {
  color: var(--red-bright) !important;
  text-decoration: underline;
}

/* App Modals System */
.app-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(6, 6, 6, 0.96);
  backdrop-filter: blur(20px) saturate(150%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
  padding: 24px;
}
.app-modal.open {
  opacity: 1;
  pointer-events: auto;
}
.modal-content-wrapper {
  background: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 1000px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  position: relative;
  transform: translateY(30px) scale(0.97);
  transition: transform var(--transition-base), opacity var(--transition-base);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 80px rgba(0, 0, 0, 0.6);
}
.app-modal.open .modal-content-wrapper {
  transform: translateY(0) scale(1);
}
.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 36px;
  line-height: 0.5;
  color: var(--white-50);
  background: none;
  border: none;
  z-index: 100;
  transition: color var(--transition-fast), transform var(--transition-fast);
  cursor: pointer;
}
.modal-close:hover {
  color: var(--red);
  transform: rotate(90deg);
}
.modal-scroll-area {
  overflow-y: auto;
  padding: 48px;
  height: 100%;
}
.modal-scroll-area::-webkit-scrollbar {
  width: 4px;
}

/* Mobile Hero Brightness Overrides */
@media (max-width: 640px) {
  .hero-bg-img {
    filter: saturate(1.2) brightness(0.75) !important;
  }
  .hero-overlay {
    background: linear-gradient(
      175deg,
      rgba(60, 0, 0, 0.45) 0%,
      rgba(10, 10, 10, 0.30) 45%,
      rgba(10, 10, 10, 0.65) 100%
    ) !important;
  }
  
  .app-modal {
    padding: 0;
  }
  .modal-content-wrapper {
    max-height: 100vh;
    height: 100svh;
    border-radius: 0;
    border: none;
  }
  .modal-scroll-area {
    padding: 24px 20px 80px;
  }
  .modal-close {
    top: 20px;
    right: 20px;
  }
}

/* Mobile Menu Redesign overrides */
@media (max-width: 1024px) {
  .nav-links.mobile-open .nav-link {
    font-family: var(--font-condensed) !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    padding: 12px 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
    color: var(--white-90) !important;
    transition: all var(--transition-fast) !important;
  }
  .nav-links.mobile-open .nav-link:hover,
  .nav-links.mobile-open .nav-link.active {
    color: var(--red) !important;
    background: rgba(193, 0, 0, 0.08) !important;
    padding-left: 28px !important;
  }
  .nav-links.mobile-open {
    padding-top: 96px !important;
    display: flex;
    flex-direction: column;
    gap: 4px !important;
  }
  .nav-links.mobile-open .nav-admin-btn {
    margin: 20px 20px 0 !important;
    width: calc(100% - 40px) !important;
    border-radius: var(--radius-md) !important;
    height: 48px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    gap: 10px !important;
  }
  .nav-links.mobile-open .nav-admin-btn::after {
    content: "Admin Dashboard";
    font-family: var(--font-primary);
  }
}

/* Admin Styles */
.admin-login-wrapper {
  max-width: 420px;
}
.admin-login-box {
  padding: 32px 24px;
  text-align: center;
}
.admin-login-header {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.admin-login-header h2 {
  font-family: var(--font-condensed);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.admin-login-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 8px;
}
.form-group label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white-50);
  letter-spacing: 1px;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--black);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 8px rgba(193, 0, 0, 0.25);
}
.admin-error-msg {
  color: #ff4d4d;
  font-size: 13px;
  font-weight: 500;
  min-height: 18px;
}
.btn-block {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

/* Dashboard Panel Layout */
.admin-dashboard-wrapper {
  max-width: 900px;
  height: 85vh;
}
.admin-dashboard-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 32px;
  gap: 24px;
}
.admin-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--white-05);
  padding-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}
.header-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-title-row h2 {
  font-family: var(--font-condensed);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.header-status {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--white-05);
}
.status-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ff4d4d;
}
.status-indicator.live {
  background: #2ecc71;
  box-shadow: 0 0 8px rgba(46, 204, 113, 0.6);
}
#db-status-text {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white-70);
}

.admin-dashboard-tabs {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--white-05);
  padding-bottom: 2px;
}
.dash-tab {
  padding: 10px 20px;
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white-50);
  border-bottom: 2px solid transparent;
  transition: all var(--transition-fast);
}
.dash-tab:hover {
  color: var(--white);
}
.dash-tab.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

.admin-dashboard-content {
  flex: 1;
  overflow-y: auto;
  min-height: 0; /* Important for flex child scrolling */
}
.tab-pane {
  display: none;
  height: 100%;
}
.tab-pane.active {
  display: block;
}

.admin-form h3,
.tab-split h3 {
  font-family: var(--font-condensed);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--white-90);
  border-left: 3px solid var(--red);
  padding-left: 8px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.tab-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  height: 100%;
}

.announcements-list-wrapper,
.gallery-list-wrapper {
  display: flex;
  flex-direction: column;
  max-height: 100%;
  min-height: 0;
}

.admin-items-list {
  flex: 1;
  overflow-y: auto;
  border: 1px solid var(--white-05);
  background: rgba(0,0,0,0.15);
  border-radius: var(--radius-md);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* List Item Styling */
.admin-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--black);
  border: 1px solid var(--white-05);
  border-radius: var(--radius-sm);
  gap: 16px;
}
.admin-item-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.admin-item-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}
.admin-item-subtitle {
  font-size: 11px;
  color: var(--white-40);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 250px;
}
.btn-delete {
  background: rgba(255, 77, 77, 0.1);
  color: #ff4d4d;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all var(--transition-fast);
}
.btn-delete:hover {
  background: #ff4d4d;
  color: white;
  transform: scale(1.08);
}

.admin-dashboard-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--white-05);
  padding-top: 16px;
  flex-wrap: wrap;
  gap: 12px;
}
.admin-status-msg {
  font-size: 13px;
  font-weight: 600;
  min-height: 20px;
}
.admin-status-msg.success { color: #2ecc71; }
.admin-status-msg.error { color: #ff4d4d; }
.admin-status-msg.info { color: var(--gold); }

@media (max-width: 768px) {
  .tab-split {
    grid-template-columns: 1fr;
    gap: 24px;
    overflow-y: auto;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .admin-dashboard-wrapper {
    height: 100vh;
    border-radius: 0;
  }
  .admin-dashboard-container {
    padding: 16px;
  }
}

/* Image Preview Styles */
.image-preview-thumbnail {
  width: 120px;
  height: 120px;
  border: 1px solid var(--white-10);
  border-radius: var(--radius-md);
  margin-top: 10px;
  overflow: hidden;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-40);
  font-size: 11px;
}
.image-preview-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.upload-help {
  font-size: 11px;
  color: var(--gold);
  margin-top: 4px;
  display: block;
}
.form-group input[type="file"] {
  padding: 8px 12px;
  font-size: 12px;
  background: var(--black-2);
}



/* ════════════════════════════════════════════════
   SPA TAB VIEW SYSTEM & NEW CUSTOM PAGES (CHANTS, TEAM)
   ════════════════════════════════════════════════ */

/* ─── SPA TAB VIEW SYSTEM ────────────────────────── */
.tab-view {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.tab-view.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  animation: fadeInTab 0.5s forwards;
}
@keyframes fadeInTab {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── HERO EMBLEM SCALING & WRAPPER ───────────────── */
.emblem-wrapper {
  position: relative;
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.emblem-ring.outer svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}
.emblem-ring.inner {
  position: absolute;
  z-index: 2;
}

/* ─── CHANTS SECTION ──────────────────────────────── */
.chants-section {
  position: relative;
  padding: var(--section-pad) 0;
  background: radial-gradient(circle at 10% 10%, rgba(193, 0, 0, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 90% 90%, rgba(193, 0, 0, 0.02) 0%, transparent 50%);
}
.chants-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--black) 0%, rgba(15, 15, 15, 0.95) 100%);
  z-index: -1;
}
.chants-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.chant-card {
  background: var(--black-card);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 30px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}
.chant-card:hover {
  border-color: var(--red);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(193, 0, 0, 0.15);
}
.chant-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.chant-info {
  display: flex;
  align-items: center;
  gap: 15px;
}
.chant-music-icon {
  background: rgba(193, 0, 0, 0.1);
  color: var(--red);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  border: 1px solid rgba(193, 0, 0, 0.2);
}
.chant-info h3 {
  font-family: var(--font-condensed);
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.chant-play-btn {
  background: transparent;
  border: 2px solid var(--white-20);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--transition-fast);
}
.chant-play-btn:hover {
  border-color: var(--red);
  color: var(--red);
  transform: scale(1.05);
}
.chant-visualizer {
  display: none;
  align-items: flex-end;
  gap: 4px;
  height: 32px;
  margin: 20px 0;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
  width: fit-content;
}
.visualizer-bar {
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 2px;
}
.chant-card.playing .visualizer-bar {
  animation: equalize 0.8s ease-in-out infinite alternate;
}
.chant-card.playing .visualizer-bar:nth-child(1) { animation-delay: 0.1s; }
.chant-card.playing .visualizer-bar:nth-child(2) { animation-delay: 0.35s; }
.chant-card.playing .visualizer-bar:nth-child(3) { animation-delay: 0.55s; }
.chant-card.playing .visualizer-bar:nth-child(4) { animation-delay: 0.2s; }
.chant-card.playing .visualizer-bar:nth-child(5) { animation-delay: 0.45s; }
.chant-card.playing .visualizer-bar:nth-child(6) { animation-delay: 0.65s; }

@keyframes equalize {
  0% { height: 4px; }
  100% { height: 24px; }
}

.chant-lyrics-preview {
  color: var(--white-50);
  font-style: italic;
  font-size: 14px;
  margin-bottom: 20px;
}
.chant-lyrics {
  color: var(--white-90);
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 20px;
  padding: 16px;
  border-left: 3px solid var(--red);
  background: rgba(193, 0, 0, 0.04);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.chant-expand-btn {
  background: transparent;
  border: none;
  color: var(--gold);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: color var(--transition-fast);
  padding: 5px 0;
  display: inline-block;
}
.chant-expand-btn:hover {
  color: var(--white);
}

/* ─── CORE TEAM SECTION ───────────────────────────── */
.team-section {
  position: relative;
  padding: var(--section-pad) 0;
  background: radial-gradient(circle at 90% 10%, rgba(193, 0, 0, 0.04) 0%, transparent 50%),
              radial-gradient(circle at 10% 90%, rgba(193, 0, 0, 0.04) 0%, transparent 50%);
}
.team-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--black) 0%, rgba(15, 15, 15, 0.98) 100%);
  z-index: -1;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.team-card {
  background: var(--black-card);
  border: 1px solid var(--white-10);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  transition: all var(--transition-base);
}
.team-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(193, 0, 0, 0.2);
}
.team-avatar-wrapper {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 20px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, var(--red) 0%, var(--gold) 100%);
  box-shadow: 0 8px 20px rgba(193, 0, 0, 0.15);
}
.team-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--black-2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.team-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  z-index: 1;
}
.team-avatar-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 32px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 1px;
  background: linear-gradient(135deg, #1f1f1f 0%, #0c0c0c 100%);
  position: absolute;
  inset: 0;
}
.team-info h3 {
  font-family: var(--font-condensed);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
  text-transform: uppercase;
}
.team-role {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.team-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.team-social-link {
  color: var(--white-50);
  background: rgba(255, 255, 255, 0.05);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}
.team-social-link:hover {
  color: var(--red);
  background: rgba(193, 0, 0, 0.15);
  transform: scale(1.1);
}

/* ─── RESPONSIVE OVERRIDES FOR TABS ───────────────── */
@media (max-width: 1140px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .chants-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .emblem-wrapper {
    width: 110px;
    height: 110px;
  }
  .emblem-ring.outer {
    width: 110px;
    height: 110px;
  }
  .emblem-ring.inner {
    width: 80px;
    height: 80px;
  }
  .emblem-logo-img {
    width: 38px;
    height: 38px;
  }
  .emblem-members-text span {
    font-size: 5px;
    letter-spacing: 0.2px;
  }
  .emblem-strong {
    font-size: 4.5px !important;
  }
}
@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Meetups & Matchday preview grid layout */
.meetups-matchday-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 768px) {
  .meetups-matchday-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .oum-steps {
    flex-direction: column !important;
    gap: 16px !important;
  }
  .oum-steps .step-card {
    width: 100% !important;
    min-width: unset !important;
  }
}

.emblem-ring.inner {
  overflow: hidden !important;
  border: 2px solid var(--red) !important;
}
.emblem-ring.inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
  z-index: 1;
}

/* ─── GALLERY LIGHTBOX MODAL ──────────────────── */
.gallery-lightbox-modal {
  background: rgba(0,0,0,0.95) !important;
  backdrop-filter: blur(15px);
}
.lightbox-media-container img, .lightbox-media-container video {
  box-shadow: 0 10px 40px rgba(0,0,0,0.8);
  border: 1px solid rgba(255,255,255,0.08);
}
.lightbox-caption {
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

/* ─── CHANTS PAGE ─────────────────────────────── */
.chants-section { position: relative; padding: 100px 0 80px; min-height: 100vh; background: linear-gradient(180deg, #0a0a0a 0%, #110000 50%, #0a0a0a 100%); }
.chants-bg { position: absolute; inset: 0; background: radial-gradient(ellipse at top, rgba(193,0,0,0.12) 0%, transparent 70%); pointer-events: none; }
.chants-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; margin-top: 48px; }
.chant-card { background: rgba(15,15,15,0.9); border: 1px solid rgba(193,0,0,0.2); border-radius: var(--radius-lg); padding: 28px; transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; }
.chant-card:hover { border-color: rgba(193,0,0,0.6); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(193,0,0,0.2); }
.chant-card.featured-chant { border-color: rgba(193,0,0,0.4); background: linear-gradient(135deg, rgba(193,0,0,0.08) 0%, rgba(15,15,15,0.95) 100%); }
.chant-badge { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.chant-card h3 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 16px; }
.chant-lyrics { font-family: var(--font-primary); font-size: 14.5px; line-height: 1.9; color: rgba(255,255,255,0.75); font-style: italic; }

/* ─── CORE MEMBERS PAGE ───────────────────────── */
.coremembers-section { padding: 100px 0 80px; min-height: 100vh; background: var(--black); }
.coremembers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; margin-top: 48px; }
.member-card { background: var(--black-card); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius-lg); padding: 28px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 16px; transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; }
.member-card:hover { border-color: rgba(193,0,0,0.4); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(193,0,0,0.15); }
.member-card.gold-member-card { border-color: rgba(244,196,48,0.2); }
.member-card.gold-member-card:hover { border-color: rgba(244,196,48,0.5); box-shadow: 0 12px 36px rgba(244,196,48,0.12); }
.member-photo-wrap { width: 100px; height: 100px; border-radius: 50%; border: 3px solid rgba(193,0,0,0.4); overflow: hidden; flex-shrink: 0; }
.member-photo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.member-photo-placeholder { width: 100%; height: 100%; background: linear-gradient(135deg, rgba(193,0,0,0.2) 0%, rgba(20,20,20,0.8) 100%); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.35); }
.gold-member-card .member-photo-wrap { border-color: rgba(244,196,48,0.4); }
.member-info { width: 100%; }
.member-name { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.member-role { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.gold-member-card .member-role { color: var(--gold); }

.member-contact-btn { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; color: var(--white-70); background: rgba(193,0,0,0.1); border: 1px solid rgba(193,0,0,0.25); border-radius: 8px; padding: 8px 14px; text-decoration: none; transition: all 0.2s ease; }
.member-contact-btn:hover { background: rgba(193,0,0,0.2); border-color: var(--red); color: var(--white); }
.member-contact-btn.gold-contact-btn { background: rgba(244,196,48,0.08); border-color: rgba(244,196,48,0.25); }
.member-contact-btn.gold-contact-btn:hover { background: rgba(244,196,48,0.15); border-color: var(--gold); }
.coremembers-note { margin-top: 60px; text-align: center; padding: 32px; background: rgba(193,0,0,0.05); border: 1px solid rgba(193,0,0,0.15); border-radius: var(--radius-lg); }
.coremembers-note p { color: var(--white-70); font-size: 15px; }

/* ─── CONTACT TAB PAGE ────────────────────────── */
.contact-tab-section { position: relative; padding: 100px 0 80px; min-height: 100vh; }
.contact-tab-bg { position: absolute; inset: 0; background: linear-gradient(180deg, #0a0a0a 0%, #110000 40%, #0a0a0a 100%); pointer-events: none; }
.contact-tab-section .container { position: relative; z-index: 1; }

/* ─── ANNOUNCEMENTS PREVIEW HOME ──────────────── */
.announcements-preview-section { padding: var(--section-py) 0; }

/* ─── MOBILE: NEW SECTIONS ────────────────────── */
@media (max-width: 768px) {
  .chants-grid { grid-template-columns: 1fr; gap: 16px; }
  .coremembers-grid { grid-template-columns: 1fr; gap: 16px; }
  .emblem-members-below { font-size: 11px; letter-spacing: 1px; }
}
@media (max-width: 480px) {
  .chant-card, .member-card { padding: 20px; }
  .member-photo-wrap { width: 80px; height: 80px; }
  .member-name { font-size: 17px; }
  .chant-card h3 { font-size: 18px; }
  .hero-emblem { max-width: 160px; margin: 0 auto; }
  .emblem-wrapper { width: 120px !important; height: 120px !important; }
  .emblem-ring.outer { width: 120px !important; height: 120px !important; }
  .emblem-ring.inner { width: 86px !important; height: 86px !important; }
  .emblem-logo-img { width: 70px !important; height: 70px !important; }
  .emblem-members-below { font-size: 10px; margin-top: 10px; }
}


/* ════════════════════════════════════════════
   PRODUCTION UPDATE — MEMBER CARDS REDESIGN
════════════════════════════════════════════ */
/* Override/extend existing member card rules */
.coremembers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.member-card {
  background: var(--black-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.member-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(193,0,0,0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.member-card:hover { border-color: rgba(193,0,0,0.45); transform: translateY(-6px); box-shadow: 0 20px 48px rgba(193,0,0,0.18); }
.member-card:hover::before { opacity: 1; }
.member-card.gold-member-card { border-color: rgba(244,196,48,0.18); }
.member-card.gold-member-card:hover { border-color: rgba(244,196,48,0.55); box-shadow: 0 20px 48px rgba(244,196,48,0.14); }
.member-card.gold-member-card::before { background: linear-gradient(135deg, rgba(244,196,48,0.05) 0%, transparent 60%); }
.member-card.president-card { border-color: rgba(193,0,0,0.3); }

.member-photo-wrap {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 3px solid rgba(193,0,0,0.45);
  overflow: hidden;
  flex-shrink: 0;
  margin-bottom: 20px;
  background: rgba(30,0,0,0.5);
  position: relative;
  z-index: 1;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.member-card:hover .member-photo-wrap {
  box-shadow: 0 0 0 4px rgba(193,0,0,0.2), 0 8px 24px rgba(193,0,0,0.3);
  transform: scale(1.04);
}
.member-card.gold-member-card .member-photo-wrap { border-color: rgba(244,196,48,0.5); }
.member-card.gold-member-card:hover .member-photo-wrap { box-shadow: 0 0 0 4px rgba(244,196,48,0.2), 0 8px 24px rgba(244,196,48,0.25); }
.member-card.president-card .member-photo-wrap { width: 136px; height: 136px; border-width: 4px; border-color: var(--red); box-shadow: 0 0 24px rgba(193,0,0,0.25); }

.member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.member-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.member-name {
  font-family: var(--font-condensed);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: var(--white);
  margin: 0;
  line-height: 1.2;
}
.president-card .member-name { font-size: 24px; }
.member-role {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(193,0,0,0.1);
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid rgba(193,0,0,0.2);
  display: inline-block;
  margin-top: 2px;
}
.role-president { background: rgba(193,0,0,0.15); border-color: rgba(193,0,0,0.35); }
.gold-member-card .member-role { color: var(--gold); background: rgba(244,196,48,0.08); border-color: rgba(244,196,48,0.25); }


.member-read-more {
  background: none;
  border: none;
  color: var(--red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  padding: 2px 0;
  margin-top: 4px;
  transition: color 0.2s, opacity 0.2s;
  font-family: var(--font-body);
  align-self: flex-start;
}
.member-read-more:hover { color: var(--white); }
.gold-member-card .member-read-more { color: var(--gold); }

/* ═══ GALLERY COVER ═══════════════════════════════ */
.gallery-cover {
  position: relative;
  width: 100%;
  height: clamp(260px, 40vw, 460px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.gallery-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.gallery-cover:hover .gallery-cover-img { transform: scale(1.03); }
.gallery-cover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 36px;
}
.gallery-cover-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(193,0,0,0.15);
  border: 1px solid rgba(193,0,0,0.35);
  border-radius: 20px;
  padding: 5px 14px;
  display: inline-block;
  margin-bottom: 10px;
  width: fit-content;
  backdrop-filter: blur(4px);
}
.gallery-cover-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 56px);
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

/* ═══ FULL-FEATURED LIGHTBOX ═══════════════════════ */
.muscb-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 0;
}
.muscb-lightbox.lb-open { display: flex; }
.muscb-lightbox.lb-visible { opacity: 1; }
.lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4,4,4,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.lb-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10010;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.lb-close:hover { background: var(--red); transform: scale(1.08) rotate(90deg); }
.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10010;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--white);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.lb-nav:hover { background: var(--red); }
.lb-prev { left: 16px; }
.lb-prev:hover { transform: translateY(-50%) scale(1.08); }
.lb-next { right: 16px; }
.lb-next:hover { transform: translateY(-50%) scale(1.08); }
.lb-counter {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10010;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.65);
  background: rgba(0,0,0,0.45);
  padding: 6px 18px;
  border-radius: 20px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}
.lb-stage {
  position: relative;
  z-index: 10000;
  width: 100%;
  max-width: min(92vw, 1100px);
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px 0;
  min-height: 0;
}
.lb-media {
  max-width: 100%;
  max-height: 68vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  display: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lb-media.lb-active { display: block; }
.lb-media.lb-visible { opacity: 1; }
.lb-caption {
  position: relative;
  z-index: 10010;
  text-align: center;
  font-family: var(--font-condensed);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 12px 20px 8px;
  min-height: 36px;
}
.lb-thumbs-bar {
  position: relative;
  z-index: 10010;
  display: flex;
  gap: 8px;
  padding: 10px 20px 20px;
  overflow-x: auto;
  max-width: min(92vw, 1100px);
  width: 100%;
  scrollbar-width: thin;
  scrollbar-color: rgba(193,0,0,0.5) transparent;
  justify-content: center;
  flex-wrap: nowrap;
}
.lb-thumbs-bar::-webkit-scrollbar { height: 3px; }
.lb-thumbs-bar::-webkit-scrollbar-track { background: transparent; }
.lb-thumbs-bar::-webkit-scrollbar-thumb { background: rgba(193,0,0,0.5); border-radius: 2px; }
.lb-thumb {
  width: 54px;
  height: 54px;
  border-radius: 6px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.5;
  transition: opacity 0.2s, border-color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.lb-thumb:hover { opacity: 0.85; transform: scale(1.06); }
.lb-thumb.lb-thumb-active { border-color: var(--red); opacity: 1; }
@media (max-width: 640px) {
  .lb-stage { padding: 56px 52px 0; max-width: 100vw; }
  .lb-nav { width: 40px; height: 40px; font-size: 18px; }
  .lb-prev { left: 8px; }
  .lb-next { right: 8px; }
  .lb-thumb { width: 44px; height: 44px; border-radius: 5px; }
  .lb-media { max-height: 58vh; border-radius: 8px; }
  .gallery-cover { height: clamp(200px, 50vw, 280px); border-radius: var(--radius-md); margin-bottom: 32px; }
  .gallery-cover-overlay { padding: 20px; }
}

/* ═══ GLOBAL RESPONSIVE HARDENING ═════════════════ */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}
*, *::before, *::after { box-sizing: border-box; }
img, video { max-width: 100%; height: auto; }

/* Ensure coremembers grid is 2-col on tablet, 1-col on mobile */
@media (max-width: 900px) {
  .coremembers-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 640px) {
  .coremembers-grid { grid-template-columns: 1fr; gap: 16px; }
  .member-card.president-card .member-photo-wrap { width: 110px; height: 110px; }
  .member-photo-wrap { width: 96px; height: 96px; }
  .member-name { font-size: 19px; }
  .president-card .member-name { font-size: 21px; }
  .gallery-cover-title { font-size: clamp(22px, 6vw, 36px); }
  .gallery-cover-tag { font-size: 10px; }
}

/* Hero title — always 2 lines, no wrapping */
.hero-title-line {
  white-space: nowrap;
  overflow: hidden;
}
@media (max-width: 380px) {
  .hero-title-line-one { font-size: 19px; }
  .hero-title-line-two { font-size: 20px; }
}
@media (min-width: 381px) and (max-width: 480px) {
  .hero-title-line-one { font-size: clamp(19px, 6.2vw, 28px); }
  .hero-title-line-two { font-size: clamp(20px, 6.4vw, 30px); }
}

/* Ticker — prevent any overflow or clipping */
.hero-ticker { overflow: hidden; contain: layout; }
.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker 35s linear infinite;
  will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }
\n
/* Update Core Members for Simplification */
.coremembers-grid .member-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.coremembers-grid .member-photo-wrap {
  width: 120px;
  height: 120px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.coremembers-grid .member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.coremembers-grid .member-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.member-bio {
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--white-80);
    margin: 24px 0 0 0;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 3px solid rgba(193, 0, 0, 0.5);
    transition: all 0.4s ease;
    text-align: left;
    white-space: pre-wrap;
    width: 100%;
    box-sizing: border-box;
    letter-spacing: 0.2px;
    font-weight: 400;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.1);
}

.gold-member-card .member-bio {
    border-left-color: rgba(244, 196, 48, 0.5);
    background: rgba(244, 196, 48, 0.03);
}

.member-bio::first-letter {
    font-size: 110%;
    font-weight: 600;
    color: var(--white);
}

/* Member Read More Updates */
.member-card .member-bio {
    display: none; /* Hidden on the card itself */
}
.member-read-more-btn {
    background: rgba(193,0,0,0.1);
    border: 1px solid rgba(193,0,0,0.3);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    margin-top: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}
.member-read-more-btn:hover {
    background: var(--red);
    border-color: var(--red);
    box-shadow: 0 4px 12px rgba(193,0,0,0.3);
}
.gold-member-card .member-read-more-btn {
    background: rgba(244,196,48,0.1);
    border-color: rgba(244,196,48,0.3);
}
.gold-member-card .member-read-more-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #000;
    box-shadow: 0 4px 12px rgba(244,196,48,0.3);
}
#member-bio-modal .member-bio {
    /* Reset scrollbar for modal bio */
}


/* ═══════════════════════════════════════════════════════════
   CORE MEMBERS — CLEAN CARD + READ MORE MODAL
   ═══════════════════════════════════════════════════════════ */

.member-bio-preview {
  color: var(--text-muted, #aaa);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 10px 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.member-bio {
  display: none !important; /* Hidden on card, shown in modal only */
}

.member-read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1.5px solid var(--red, #c10000);
  color: var(--red, #c10000);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 4px;
}

.member-read-more-btn:hover {
  background: var(--red, #c10000);
  color: #fff;
  transform: translateY(-1px);
}

/* ── Member Bio Modal ────────────────────────── */

#member-bio-modal {
  z-index: 9999;
}

.member-modal-content {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(193,0,0,0.2);
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.member-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: rgba(255,255,255,0.08);
  border: none;
  color: #fff;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
  line-height: 1;
}
.member-modal-close:hover {
  background: rgba(193,0,0,0.4);
  transform: rotate(90deg);
}

.member-modal-scroll {
  overflow-y: auto;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.member-modal-scroll::-webkit-scrollbar { width: 4px; }
.member-modal-scroll::-webkit-scrollbar-thumb { background: rgba(193,0,0,0.4); border-radius: 4px; }

.member-modal-photo-wrap {
  display: flex;
  justify-content: center;
}

.member-modal-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--red, #c10000);
  box-shadow: 0 0 0 6px rgba(193,0,0,0.15), 0 8px 32px rgba(0,0,0,0.5);
}

.member-modal-body {
  text-align: center;
}

.member-modal-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0 0 8px;
}

.member-modal-role {
  display: inline-block;
  background: rgba(193,0,0,0.15);
  border: 1px solid rgba(193,0,0,0.35);
  color: var(--red, #c10000);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.member-modal-bio {
  color: rgba(255,255,255,0.82);
  font-size: 0.97rem;
  line-height: 1.8;
  text-align: left;
  white-space: pre-line;
}

.member-modal-extras {
  margin-top: 8px;
  text-align: left;
}

@media (max-width: 640px) {
  .member-modal-content {
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    max-height: 90vh;
  }
  #member-bio-modal {
    align-items: flex-end;
    padding: 0;
  }
  .member-modal-scroll {
    padding: 28px 20px 60px;
  }
}

/* ═══════════════════════════════════════════════════════════
   CHANTS — EXPANDABLE CARD
   ═══════════════════════════════════════════════════════════ */

.chants-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.chant-card-new {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.chant-card-new:hover {
  border-color: rgba(193,0,0,0.3);
  box-shadow: 0 4px 24px rgba(193,0,0,0.08);
}

.chant-card-new.expanded {
  border-color: rgba(193,0,0,0.4);
}

.chant-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}

.chant-title-new {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0;
  flex: 1;
}

.chant-expand-btn {
  background: rgba(193,0,0,0.1);
  border: 1px solid rgba(193,0,0,0.25);
  color: var(--red, #c10000);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.25s;
}

.chant-expand-btn:hover {
  background: rgba(193,0,0,0.25);
}

.chant-card-new.expanded .chant-expand-btn {
  background: rgba(193,0,0,0.3);
  transform: rotate(180deg);
}

.chant-lyrics-new {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 22px;
}

.chant-card-new.expanded .chant-lyrics-new {
  max-height: 600px;
  padding: 0 22px 22px;
}

.chant-lyrics-new p {
  color: rgba(255,255,255,0.78);
  font-size: 1rem;
  line-height: 2;
  margin: 0;
  border-left: 3px solid var(--red, #c10000);
  padding-left: 18px;
}



/* ═══════════════════════════════════════════════════════════
   MUSCB MEMBERSHIP PLAN CARDS
   ═══════════════════════════════════════════════════════════ */

.muscb-plans-section {
  background: var(--black, #0a0a0a);
  padding: 80px 0;
}

.muscb-plans-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 56px auto 0;
  align-items: stretch;
}

@media (max-width: 700px) {
  .muscb-plans-grid { grid-template-columns: 1fr; max-width: 440px; }
}

.plan-card {
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.plan-card.featured-plan {
  border: 2px solid var(--red, #c10000);
  background: linear-gradient(145deg, #1a0808 0%, #120000 50%, #0e0e0e 100%);
  box-shadow: 0 0 40px rgba(193,0,0,0.2);
}

.plan-popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--red, #c10000), #8b0000);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 20px;
  border-radius: 50px;
  white-space: nowrap;
}

.plan-header {
  text-align: center;
  margin-bottom: 28px;
}

.plan-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}

.plan-badge.premium-badge {
  color: var(--red, #c10000);
}

.plan-name {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0 0 18px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.plan-currency {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold, #f4c430);
}

.plan-amount {
  font-size: 3.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.plan-period {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
}

.feature-item.not-included {
  opacity: 0.45;
}

.feature-check {
  width: 22px;
  height: 22px;
  background: rgba(46, 204, 113, 0.15);
  border: 1.5px solid rgba(46,204,113,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2ecc71;
  font-size: 0.75rem;
  font-weight: 900;
  flex-shrink: 0;
  line-height: 1;
}

.feature-check.excluded {
  background: rgba(255,77,77,0.1);
  border-color: rgba(255,77,77,0.3);
  color: rgba(255,77,77,0.7);
}

.feature-check.gold-check {
  background: rgba(244,196,48,0.15);
  border-color: rgba(244,196,48,0.4);
  color: var(--gold, #f4c430);
}

.premium-only {
  color: #fff;
}
.premium-only strong { color: var(--gold, #f4c430); }

.plan-btn {
  display: block;
  text-align: center;
  width: 100%;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s ease;
  margin-top: auto;
}

.plan-btn-lite {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: #fff;
}

.plan-btn-lite:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
}

.plan-btn-premium {
  background: linear-gradient(135deg, var(--red, #c10000), #8b0000);
  border: none;
  color: #fff;
  box-shadow: 0 6px 24px rgba(193,0,0,0.4);
}

.plan-btn-premium:hover {
  background: linear-gradient(135deg, #d40000, #a00000);
  box-shadow: 0 8px 32px rgba(193,0,0,0.6);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE — FULL REBUILD
   ═══════════════════════════════════════════════════════════ */

/* Info Strip */
.contact-info-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin: 40px 0;
  padding: 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-info-icon {
  width: 42px;
  height: 42px;
  background: rgba(193,0,0,0.12);
  border: 1px solid rgba(193,0,0,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red, #c10000);
  flex-shrink: 0;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-info-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}

.contact-info-value {
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.coming-soon-tag {
  color: rgba(244,196,48,0.7) !important;
  font-style: italic;
}

/* Social Cards Row */
.contact-social-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 56px;
}

/* Contact Form */
.contact-form-section {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  margin-bottom: 60px;
}

.contact-form-header {
  margin-bottom: 36px;
  text-align: center;
}

.contact-form-header h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  margin: 0 0 8px;
}

.contact-form-header p {
  color: rgba(255,255,255,0.5);
  font-size: 0.92rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 600px) {
  .contact-form-grid { grid-template-columns: 1fr; }
  .contact-form-section { padding: 28px 20px; }
  .contact-info-strip { grid-template-columns: 1fr 1fr; }
}

.contact-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}

.contact-form .form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.55);
}

.required-star { color: var(--red, #c10000); }

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  padding: 12px 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

.contact-form select option { background: #1a1a1a; color: #fff; }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red, #c10000);
  box-shadow: 0 0 0 3px rgba(193,0,0,0.12);
}

.contact-form input.field-invalid,
.contact-form select.field-invalid,
.contact-form textarea.field-invalid {
  border-color: #ff4d4d;
}

.contact-form textarea { resize: vertical; min-height: 120px; }

.field-error {
  font-size: 0.78rem;
  color: #ff4d4d;
  min-height: 16px;
  display: block;
}

.contact-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  font-size: 0.95rem;
  margin-top: 8px;
  border-radius: 50px;
}

.contact-success-msg {
  text-align: center;
  padding: 48px 24px;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(46,204,113,0.15);
  border: 2px solid rgba(46,204,113,0.4);
  border-radius: 50%;
  font-size: 1.8rem;
  color: #2ecc71;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-success-msg h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
}

.contact-success-msg p {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
}

.contact-success-msg a {
  color: var(--red, #c10000);
  text-decoration: none;
  font-weight: 600;
}

.contact-success-msg a:hover { text-decoration: underline; }


/* ── Football Page Gallery ── */
.football-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px auto;
  max-width: 1000px;
}
@media (max-width: 600px) {
  .football-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 28px auto;
  }
}
.football-gallery-item {
  border-radius: var(--radius-lg, 12px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  aspect-ratio: 16/9;
  display: flex;
  background: #000;
}
.football-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-base, 0.3s ease);
}
.football-gallery-item img:hover {
  transform: scale(1.04);
}

/* ── Committee Organization ── */
.committee-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gold, #f4c430);
  margin: 48px 0 24px;
  text-align: left;
  border-left: 4px solid var(--red, #c10000);
  padding-left: 14px;
  display: block;
}

.committee-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(193,0,0,0.3) 0%, rgba(255,255,255,0.05) 50%, rgba(193,0,0,0.3) 100%);
  margin: 56px 0 24px;
  border: none;
}
