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

:root {
  --color-primary: #c41e3a;
  --color-primary-dark: #a01830;
  --color-gold: #c9a227;
  --color-gold-light: #d4b84a;
  --color-background: #0a0a0a;
  --color-surface: #1a1a1a;
  --color-surface-light: #2a2a2a;
  --color-border: #333333;
  --color-text: #ffffff;
  --color-text-muted: #888888;
  --color-text-light: #cccccc;
  --font-primary: 'Oswald', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-secondary);
  background-color: var(--color-background);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }
}

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 1.75rem;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-text);
  border: 2px solid var(--color-primary);
}

.btn-primary:hover {
  background-color: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-primary);
}

.btn-outline:hover {
  background-color: var(--color-primary);
}

.btn-gold {
  background-color: var(--color-gold);
  color: var(--color-background);
  border: 2px solid var(--color-gold);
}

.btn-gold:hover {
  background-color: var(--color-gold-light);
  border-color: var(--color-gold-light);
}

.text-primary { color: var(--color-primary); }
.text-gold { color: var(--color-gold); }
.text-muted { color: var(--color-text-muted); }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 70px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  padding: 0.5rem 1rem;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-link {
  color: var(--color-text);
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: var(--color-primary);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.65rem;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  cursor: pointer;
  position: relative;
  z-index: 1002;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background-color: var(--color-text);
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 85px;
  left: 0;
  right: 0;
  width: 100%;
  max-height: calc(100vh - 85px);
  overflow-y: auto;
  background-color: rgba(10, 10, 10, 0.98);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 0.75rem 0;
  z-index: 1001;
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu .nav-link {
  display: block;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-menu .nav-link:last-child {
  border-bottom: 0;
}

body.mobile-menu-open {
  overflow: hidden;
}

@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 85px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(10, 10, 10, 0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 4.5rem;
  line-height: 1;
  margin-bottom: 1.5rem;
}

.hero-text h1 span {
  display: block;
}

.hero-text h1 .text-gradient {
  background: linear-gradient(135deg, var(--color-primary), var(--color-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  max-width: 450px;
}

.hero-affiliation {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--color-border);
}

.hero-affiliation p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.hero-affiliation strong {
  color: var(--color-text);
  display: block;
}

.hero-affiliation img {
  height: 70px;
  width: auto;
}

/* Register Card */
.register-card {
  background-color: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-left: 4px solid var(--color-primary);
  border-radius: 8px;
  padding: 2rem;
  max-width: 380px;
  margin-left: auto;
}

.register-card-header {
  margin-bottom: 1.5rem;
}

.register-card-header h2 {
  font-size: 2rem;
  line-height: 1.1;
}

.register-card-header h2 span:first-child {
  color: var(--color-primary);
}

.register-card-header h2 span:last-child {
  color: var(--color-gold);
}

.register-card p {
  color: var(--color-text-light);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.register-features {
  margin-bottom: 1.5rem;
}

.register-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.register-features .check-icon {
  color: var(--color-primary);
  font-size: 1rem;
  margin-top: 0.125rem;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 3rem;
  }
  
  .hero-description {
    margin: 0 auto 2rem;
  }
  
  .hero-affiliation {
    justify-content: center;
  }
  
  .register-card {
    margin: 0 auto;
  }
}

/* ===== PAGE HEADER ===== */
.page-header {
  position: relative;
  padding: 10rem 0 4rem;
  text-align: center;
  overflow: hidden;
}

.page-header-background {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-header-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.8), rgba(10, 10, 10, 0.95));
}

.page-header h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.25rem;
  color: var(--color-text-muted);
}

/* ===== VALUES SECTION ===== */
.values-section {
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.value-card {
  text-align: center;
  padding: 2rem 1rem;
}

.value-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.value-card h4 {
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== NEWS SECTION ===== */
.news-section {
  padding: 5rem 0;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.news-header a {
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.news-header a:hover {
  color: var(--color-gold);
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.news-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.news-featured {
  grid-row: span 2;
}

.news-card {
  background-color: var(--color-surface);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.news-card:hover {
  transform: translateY(-4px);
}

.news-card-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card-content {
  padding: 1.25rem;
}

.news-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.news-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.news-card .news-date {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.news-card .read-more {
  color: var(--color-primary);
  font-weight: 600;
  margin-left: 0.5rem;
}

.news-featured .news-card-image {
  aspect-ratio: 4/3;
}

.news-featured h3 {
  font-size: 1.5rem;
}

.news-small {
  display: flex;
  gap: 1rem;
  background-color: var(--color-surface);
  border-radius: 8px;
  overflow: hidden;
}

.news-small .news-card-image {
  width: 120px;
  flex-shrink: 0;
  aspect-ratio: 1;
}

.news-small .news-card-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-small h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

/* Fixture Card */
.fixture-section {
  background-color: var(--color-surface);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.fixture-background {
  position: absolute;
  inset: 0;
}

.fixture-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.fixture-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.95));
}

.fixture-content {
  position: relative;
  padding: 2rem;
}

.fixture-date {
  text-align: center;
  margin-bottom: 2rem;
}

.fixture-date p {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
}

.fixture-date span {
  font-size: 1.5rem;
  font-weight: 700;
}

.fixture-teams {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.fixture-team {
  text-align: center;
}

.fixture-team img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 0.75rem;
}

.fixture-team p {
  font-family: var(--font-primary);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.fixture-vs {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  color: var(--color-text-muted);
}

.fixture-venue {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}

.fixture-venue p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: 1fr;
  }
  
  .news-main {
    grid-template-columns: 1fr;
  }
  
  .news-featured {
    grid-row: auto;
  }
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background-color: var(--color-surface);
  padding: 4rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text h2 {
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 4rem;
}

.stat-item {
  text-align: center;
}

.stat-icon {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.stat-number {
  font-family: var(--font-primary);
  font-size: 2.5rem;
  font-weight: 700;
}

.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.affiliation-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: right;
}

.affiliation-box p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.affiliation-box strong {
  color: var(--color-text);
}

.affiliation-box img {
  height: 80px;
  width: auto;
}

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .stats-grid {
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .affiliation-box {
    justify-content: center;
    text-align: center;
  }
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-border);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.footer-brand img {
  height: 80px;
  width: auto;
}

.footer-brand-text h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.footer-brand-text p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.footer-section h4 {
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  color: var(--color-text-muted);
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

.footer-links a:hover {
  color: var(--color-primary);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-surface-light);
  border-radius: 50%;
  color: var(--color-text);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--color-primary);
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-brand {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-contact p {
    justify-content: center;
  }
}

/* ===== TEAMS PAGE ===== */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.team-card {
  background-color: var(--color-surface);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.team-card:hover {
  transform: translateY(-4px);
}

.team-card-image {
  position: relative;
  aspect-ratio: 16/10;
  background-color: var(--color-surface-light);
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--color-primary);
  color: var(--color-text);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
}

.team-card-content {
  padding: 1.25rem;
}

.team-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.team-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.team-meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

/* ===== FIXTURES PAGE ===== */
.fixtures-tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.tab-btn {
  padding: 0.75rem 1.5rem;
  font-family: var(--font-primary);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text);
}

.fixtures-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fixture-row {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr 1fr;
  align-items: center;
  gap: 1.5rem;
  background-color: var(--color-surface);
  padding: 1.25rem 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--color-primary);
}

.fixture-row-date {
  text-align: center;
}

.fixture-row-date .day {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
}

.fixture-row-date .month {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.fixture-row-teams {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.fixture-row-teams img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.fixture-row-teams .team-names {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.fixture-row-teams .team-names span {
  font-size: 0.9375rem;
}

.fixture-row-info {
  text-align: center;
}

.fixture-row-info .time {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 600;
}

.fixture-row-info .venue {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.fixture-row-action .btn {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.result-score {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
}

.result-win {
  color: #22c55e;
}

.result-loss {
  color: var(--color-primary);
}

.result-draw {
  color: var(--color-gold);
}

@media (max-width: 768px) {
  .fixture-row {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 1rem;
  }
  
  .fixture-row-teams {
    justify-content: center;
    flex-direction: column;
  }
}

/* ===== GALLERY PAGE ===== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-text);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay p {
  font-size: 0.875rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--color-text);
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-text);
  font-size: 2rem;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  padding: 1rem;
  cursor: pointer;
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

/* ===== SHOP PAGE ===== */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background-color: var(--color-surface);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
}

.product-image {
  position: relative;
  aspect-ratio: 1;
  background-color: var(--color-surface-light);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 4px;
}

.product-badge.new {
  background-color: var(--color-gold);
  color: var(--color-background);
}

.product-badge.sale {
  background-color: var(--color-primary);
  color: var(--color-text);
}

.product-badge.bestseller {
  background-color: #22c55e;
  color: var(--color-text);
}

.product-content {
  padding: 1.25rem;
}

.product-content h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.product-rating .star {
  color: var(--color-gold);
}

.product-rating span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-left: 0.25rem;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.product-price .price {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
}

.product-price .original-price {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.promo-banner {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border-radius: 8px;
  padding: 3rem;
  text-align: center;
  margin-top: 3rem;
}

.promo-banner h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.promo-banner p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-form {
  background-color: var(--color-surface);
  border-radius: 8px;
  padding: 2rem;
}

.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background-color: var(--color-surface-light);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-text);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: var(--color-surface);
  padding: 1.25rem;
  border-radius: 8px;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  border-radius: 8px;
  font-size: 1.25rem;
}

.contact-card h4 {
  font-size: 0.9375rem;
  margin-bottom: 0.25rem;
}

.contact-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.contact-card a {
  color: var(--color-text-light);
}

.contact-card a:hover {
  color: var(--color-primary);
}

.contact-social h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.contact-social-links {
  display: flex;
  gap: 0.75rem;
}

.contact-social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-surface);
  border-radius: 8px;
  color: var(--color-text);
  font-size: 1.25rem;
  transition: all 0.3s ease;
}

.contact-social-links a:hover {
  background-color: var(--color-primary);
}

/* FAQ Section */
.faq-section {
  margin-top: 4rem;
}

.faq-section h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background-color: var(--color-surface);
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
}

.faq-question .icon {
  font-size: 1.25rem;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.25rem 1.25rem;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ===== NEWS PAGE FULL ===== */
.news-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.news-page-card {
  background-color: var(--color-surface);
  border-radius: 8px;
  overflow: hidden;
}

.news-page-card .news-card-image {
  aspect-ratio: 16/9;
}

.news-page-card .news-card-content {
  padding: 1.5rem;
}

.news-page-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.news-page-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.pagination button {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 4px;
  color: var(--color-text);
  font-weight: 500;
  transition: all 0.3s ease;
}

.pagination button:hover,
.pagination button.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

/* ===== ABOUT PAGE FULL ===== */
.about-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-content-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-content-text p {
  color: var(--color-text-light);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.about-image {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 8px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.3), transparent);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.about-value-card {
  background-color: var(--color-surface);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  border-bottom: 3px solid var(--color-primary);
}

.about-value-card .icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.about-value-card h4 {
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.about-value-card p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.timeline-section h3 {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 3rem;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: var(--color-border);
}

.timeline-item {
  position: relative;
  display: flex;
  justify-content: flex-end;
  padding-right: calc(50% + 2rem);
  margin-bottom: 2rem;
}

.timeline-item:nth-child(even) {
  justify-content: flex-start;
  padding-right: 0;
  padding-left: calc(50% + 2rem);
}

.timeline-content {
  background-color: var(--color-surface);
  padding: 1.5rem;
  border-radius: 8px;
  max-width: 350px;
}

.timeline-year {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
}

.timeline-content h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background-color: var(--color-primary);
  border-radius: 50%;
  border: 3px solid var(--color-background);
}

@media (max-width: 768px) {
  .about-content-grid {
    grid-template-columns: 1fr;
  }
  
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .timeline::before {
    left: 0;
  }
  
  .timeline-item,
  .timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-left: 2rem;
    padding-right: 0;
  }
  
  .timeline-dot {
    left: 0;
  }
}

.registration-form{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:20px;background:var(--color-surface);padding:30px;border-radius:12px}
.form-group{display:flex;flex-direction:column;gap:8px}
.form-group label{font-weight:600;color:var(--color-text-light)}
.form-group input,.form-group select,.form-group textarea{padding:12px;border-radius:6px;border:1px solid var(--color-border);background:#111;color:white}
.registration-form button{grid-column:1/-1}

.form-message {
  grid-column: 1 / -1;
  padding: 14px 16px;
  border-radius: 10px;
  background: #f4f4f4;
  font-weight: 600;
}
.form-message.success { background: #e8f7ed; color: #146c2e; }
.form-message.error { background: #fdecec; color: #9f1d1d; }
.registration-form small {
  display: block;
  margin-bottom: 8px;
  color: #666;
  font-size: 0.9rem;
}

/* BLP Registration / Program Info Updates */
.program-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.program-info-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.5rem;
}
.program-info-card h2 {
  margin-bottom: 1rem;
  color: var(--color-text-light);
}
.program-info-card ul {
  margin: 1rem 0 0 1.25rem;
  color: var(--color-text-muted);
}
.program-info-card li { margin-bottom: 0.5rem; }
.mission-card p { margin-bottom: 1rem; color: var(--color-text-muted); line-height: 1.7; }
.team-table-wrap { overflow-x: auto; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 12px; }
.blp-team-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.blp-team-table th, .blp-team-table td { padding: 1rem; border-bottom: 1px solid var(--color-border); text-align: left; }
.blp-team-table th { color: var(--color-text-light); background: rgba(255,255,255,0.04); }
.blp-team-table td { color: var(--color-text-muted); }
.blp-team-table tr:last-child td { border-bottom: 0; }
.eligibility-note { color: var(--color-text-muted); margin-top: 0.75rem; }


/* ===== UPDATED BLP TEAMS SHOWCASE ===== */
.teams-showcase-section { background: var(--color-background); }
.teams-section-heading { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 2rem; }
.teams-section-heading .section-title { margin-bottom: 0; }
.teams-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; }
.showcase-team-card { border-radius: 8px; background: #1a1a1a; overflow: hidden; box-shadow: 0 12px 28px rgba(0,0,0,.22); }
.showcase-team-card .team-card-image { aspect-ratio: 16 / 10; }
.showcase-team-card .team-badge { font-size: .65rem; letter-spacing: .03em; }
.team-read-more { margin-top: 1rem; color: var(--color-primary); font-weight: 700; text-transform: uppercase; font-size: .85rem; letter-spacing: .04em; }
.team-read-more:hover { color: var(--color-gold-light); }
.team-modal { position: fixed; inset: 0; z-index: 2000; display: none; align-items: center; justify-content: center; padding: 1.25rem; }
.team-modal.active { display: flex; }
.team-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.78); backdrop-filter: blur(4px); }
.team-modal-panel { position: relative; width: min(920px, 100%); max-height: 90vh; overflow: auto; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: 14px; display: grid; grid-template-columns: 1fr 1.15fr; box-shadow: 0 30px 80px rgba(0,0,0,.55); }
.team-modal-close { position: absolute; top: .75rem; right: .95rem; z-index: 2; color: white; font-size: 2rem; line-height: 1; }
.team-modal-image img { width: 100%; height: 100%; min-height: 380px; object-fit: cover; }
.team-modal-body { padding: 2rem; }
.team-modal-body .team-badge { position: static; display: inline-block; margin-bottom: 1rem; }
.team-modal-details { margin: 1.25rem 0; color: var(--color-text-light); }
.team-modal-details p { margin-bottom: .65rem; }
.team-modal-details strong { color: var(--color-text); }
@media (max-width: 900px) { .teams-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } .team-modal-panel { grid-template-columns: 1fr; } .team-modal-image img { min-height: 240px; } }
@media (max-width: 600px) { .teams-section-heading { align-items: flex-start; flex-direction: column; } .teams-card-grid { grid-template-columns: 1fr; } }

/* Dynamic frontend integration helpers */
.content-card{background:#fff;border-radius:18px;padding:32px;box-shadow:0 10px 28px rgba(0,0,0,.08);line-height:1.8;color:#1f2937}.content-card h2{font-family:Oswald,sans-serif;text-transform:uppercase;margin-bottom:16px;color:#0f172a}.muted{color:#64748b}.fixtures-list{display:grid;gap:18px}.fixture-card{display:grid;grid-template-columns:110px 1fr 220px auto;gap:20px;align-items:center;background:#171717;border-left:4px solid #d7193f;border-radius:10px;padding:22px;color:#fff}.fixture-card p{color:#9ca3af;margin:4px 0 0}.fixture-date{text-align:center;color:#d6bf28}.fixture-date strong{display:block;font-family:Oswald,sans-serif;font-size:32px}.fixture-date span{font-size:14px;color:#aaa}.fixture-tabs{display:flex;gap:16px;margin-bottom:24px}.public-tab{display:none}.public-tab.active{display:grid}.news-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px}.news-card,.gallery-card{background:#fff;border-radius:16px;overflow:hidden;box-shadow:0 10px 28px rgba(0,0,0,.08)}.news-card img,.gallery-card img{width:100%;height:220px;object-fit:cover}.news-card-content,.gallery-content{padding:22px}.news-card h3,.gallery-card h3{font-family:Oswald,sans-serif;text-transform:uppercase;margin-bottom:10px}.gallery-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(260px,1fr));gap:24px}.team-modal{display:none;position:fixed;inset:0;z-index:9999}.team-modal.active{display:block}.team-modal-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.75)}.team-modal-panel{position:relative;max-width:880px;margin:5vh auto;background:#111;border-radius:18px;overflow:hidden;color:#fff;box-shadow:0 25px 80px rgba(0,0,0,.5)}.team-modal-close{position:absolute;right:16px;top:12px;z-index:2;background:#d7193f;color:#fff;border:0;border-radius:50%;width:38px;height:38px;font-size:24px;cursor:pointer}.team-modal-image img{width:100%;height:320px;object-fit:cover}.team-modal-body{padding:28px}.team-modal-details{display:grid;gap:8px;margin:18px 0;color:#d1d5db}.team-badge{display:inline-block;background:#d7193f;color:#fff;padding:7px 12px;border-radius:5px;font-weight:700;text-transform:uppercase;font-size:12px;margin-bottom:10px}.team-meta{display:grid;gap:8px;color:#9ca3af;margin:12px 0}.read-more{color:#d7193f;font-weight:700;text-transform:uppercase;background:none;border:0;padding:0;cursor:pointer;text-decoration:none}.page-header{position:relative;min-height:270px;display:flex;align-items:center;color:#fff;overflow:hidden}.page-header-background,.page-header-background img,.page-header-overlay{position:absolute;inset:0}.page-header-background img{width:100%;height:100%;object-fit:cover}.page-header-overlay{background:linear-gradient(90deg,rgba(0,0,0,.85),rgba(0,0,0,.45))}.page-header .container{position:relative;z-index:1}.page-header h1{font-family:Oswald,sans-serif;text-transform:uppercase;font-size:56px;margin:0 0 10px}.page-header p{font-size:20px;color:#d1d5db}.section{padding:70px 0}.section-title{font-family:Oswald,sans-serif;text-transform:uppercase;font-size:36px}.teams-section-heading{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-bottom:28px}.teams-card-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:24px}.team-card{background:#1b1b1b;border-radius:10px;overflow:hidden;color:#fff}.team-card-image{position:relative;height:210px}.team-card-image img{width:100%;height:100%;object-fit:cover}.team-card-content{padding:20px}.team-card h3{font-family:Oswald,sans-serif;text-transform:uppercase}.btn{display:inline-flex;align-items:center;gap:8px;border-radius:6px;padding:13px 20px;font-weight:700;text-decoration:none;border:1px solid transparent;cursor:pointer}.btn-primary{background:#d7193f;color:#fff}.btn-outline{border-color:#d1d5db;color:inherit;background:transparent}.text-gradient{color:#d7193f}@media(max-width:768px){.fixture-card{grid-template-columns:1fr;text-align:left}.page-header h1{font-size:38px}.teams-section-heading{align-items:flex-start;flex-direction:column}.team-modal-panel{margin:0;min-height:100vh;border-radius:0}.team-modal-image img{height:240px}}


/* Public frontend restore/fix: categorized teams and spacing */
.team-category-block { margin-top: 2.5rem; }
.team-category-block + .team-category-block { margin-top: 4rem; }
.team-category-title { display:flex; align-items:center; justify-content:space-between; gap:1rem; margin-bottom:1.25rem; padding-bottom:.75rem; border-bottom:1px solid var(--color-border); }
.team-category-title h2 { margin:0; font-size:2rem; text-transform:uppercase; letter-spacing:.04em; }
.team-category-title span { color:var(--color-text-muted); font-weight:700; }
.empty-category { padding:1.5rem; }
.contact-form, .contact-info, .content-card { padding:2rem; }
.contact-card { padding:1.25rem; }
.faq-section { margin-top:3rem; }
@media (max-width:768px) { .team-category-title { align-items:flex-start; flex-direction:column; } .team-category-title h2 { font-size:1.5rem; } .contact-form, .contact-info, .content-card { padding:1.25rem; } }

/* BLP staff, sponsors and motto additions */
.hero-cta-row{display:flex;gap:1rem;flex-wrap:wrap;align-items:center;margin:1.2rem 0}
.motto-banner{background:linear-gradient(135deg,#0b2a5b,#2563eb);color:#fff;border-radius:18px;padding:1.25rem 1.5rem;margin-bottom:2rem;text-align:center;font-family:var(--font-primary);font-size:clamp(1.15rem,2.6vw,2rem);letter-spacing:.04em;text-transform:uppercase;box-shadow:0 18px 40px rgba(37,99,235,.18)}
.staff-grid,.sponsor-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1.5rem}
.staff-card,.sponsor-card{background:#fff;border:1px solid rgba(15,23,42,.08);border-radius:20px;overflow:hidden;box-shadow:0 14px 36px rgba(15,23,42,.08);padding:0}
.staff-photo{height:220px;background:#eef2ff;overflow:hidden}.staff-photo img{width:100%;height:100%;object-fit:cover;display:block}.staff-body,.sponsor-card{padding:1.25rem}.staff-body h3,.sponsor-card h3{margin:0 0 .25rem;font-size:1.35rem}.staff-role{font-weight:800;color:#2563eb;text-transform:uppercase;font-size:.84rem;letter-spacing:.06em;margin:.15rem 0 .75rem}.staff-contact{display:flex;flex-direction:column;gap:.35rem;font-size:.9rem;color:#475569}.sponsor-logo{height:130px;display:grid;place-items:center;background:#f8fafc;border-radius:16px;margin-bottom:1rem}.sponsor-logo img{max-width:90%;max-height:100px;object-fit:contain}.sponsor-logo span{width:74px;height:74px;border-radius:50%;display:grid;place-items:center;background:#0b2a5b;color:#fff;font-size:2rem;font-weight:900}
@media(max-width:700px){.hero-cta-row{flex-direction:column;align-items:stretch}.hero-cta-row .btn{justify-content:center}.staff-photo{height:190px}}

/* Public nav/staff/sponsor fixes */
.nav-menu li { list-style: none; }
.nav-menu li > .nav-link { display: inline-flex; align-items: center; white-space: nowrap; }
@media (min-width: 1025px){ .nav-menu{gap:.15rem;} .nav-link{padding:.5rem .72rem;font-size:.78rem;} }
.staff-page-section .section-title,
.sponsors-page-section .section-title { color: #fff; }
.staff-grid { align-items: stretch; }
.staff-card { background:#fff; color:#111827; border-radius:16px; overflow:hidden; border:1px solid rgba(255,255,255,.15); box-shadow:0 12px 30px rgba(0,0,0,.25); }
.staff-photo { height:220px; background:#f3f4f6; display:flex; align-items:center; justify-content:center; }
.staff-photo img { width:100%; height:100%; object-fit:cover; display:block; }
.staff-body { padding:24px; min-height:180px; }
.staff-body h3 { color:#111827; margin:0 0 8px; font-size:1.25rem; }
.staff-role, .sponsor-level { color:#1d4ed8; font-weight:800; text-transform:uppercase; letter-spacing:.08em; font-size:.82rem; margin-bottom:12px; }
.staff-bio, .staff-body p { color:#4b5563; line-height:1.6; }
.staff-contact { display:grid; gap:8px; margin-top:16px; color:#374151; }
.staff-contact span { color:#374151; overflow-wrap:anywhere; }
.team-pills { display:flex; flex-wrap:wrap; gap:8px; margin-top:14px; }
.team-pill { background:#e8f0ff; color:#1d4ed8; padding:6px 10px; border-radius:999px; font-weight:700; font-size:.8rem; }
.coaches-heading { margin-top:50px; }
.motto-banner { margin-bottom:42px; background:linear-gradient(135deg,#1d4ed8,#3b82f6); color:#fff; border-radius:14px; padding:24px 28px; text-align:center; font-family:var(--font-primary); text-transform:uppercase; letter-spacing:.08em; font-size:clamp(1.4rem,3vw,2.3rem); }
.sponsor-grid-large { display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:28px; }
.sponsor-card-large { background:#fff; border-radius:18px; padding:26px; color:#111827; display:flex; flex-direction:column; gap:18px; box-shadow:0 12px 30px rgba(0,0,0,.25); }
.sponsor-logo-large { min-height:170px; background:#f3f4f6; border-radius:14px; display:flex; align-items:center; justify-content:center; padding:20px; }
.sponsor-logo-large img { max-width:100%; max-height:140px; object-fit:contain; }
.sponsor-logo-large span { font-size:4rem; font-family:var(--font-primary); color:#1d4ed8; }
.sponsor-body h3 { color:#111827; font-size:1.35rem; margin:0 0 6px; }
.sponsor-body p { color:#4b5563; line-height:1.6; }
.news-card-content h3, .news-card-content p { color:#111827; }
.empty-state { background:#fff; color:#111827; border-radius:14px; padding:28px; }

/* ===== HOME RESTORE PATCH: original news/fixture layout + sponsor marquee ===== */
.home-original-news .home-news-grid{display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:start}
.home-original-news .news-main{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem}
.home-original-news .news-featured{grid-row:span 2}
.home-original-news .news-card{background-color:var(--color-surface);border-radius:8px;overflow:hidden;color:var(--color-text)}
.home-original-news .news-card-image{position:relative;aspect-ratio:16/9;overflow:hidden}
.home-original-news .news-card-image img{width:100%;height:100%;object-fit:cover}
.home-original-news .news-featured .news-card-image{aspect-ratio:4/3}
.home-original-news .news-card-content{padding:1.25rem}
.home-original-news .news-featured h3{font-size:1.5rem}
.home-original-news .news-small{display:flex;gap:1rem;background-color:var(--color-surface);border-radius:8px;overflow:hidden;color:var(--color-text)}
.home-original-news .news-small .news-card-image{width:120px;flex-shrink:0;aspect-ratio:1}
.home-original-news .news-small .news-card-content{padding:1rem;display:flex;flex-direction:column;justify-content:center}
.home-original-news .news-small h4{font-size:1rem;margin-bottom:.25rem}
.home-original-news .fixture-section{min-height:440px;background-color:var(--color-surface);border-radius:8px;overflow:hidden;position:relative;color:#fff}
.home-original-news .fixture-content{position:relative;padding:2rem;z-index:1}
.home-original-news .fixture-background,.home-original-news .fixture-background img,.home-original-news .fixture-overlay{position:absolute;inset:0}
.home-original-news .fixture-background img{width:100%;height:100%;object-fit:cover;opacity:.3}
.home-original-news .fixture-overlay{background:linear-gradient(to bottom,rgba(26,26,26,.9),rgba(26,26,26,.95))}
.home-original-news .fixture-date{text-align:center;margin-bottom:2rem;color:inherit}
.home-original-news .fixture-date p{font-family:var(--font-primary);font-size:.875rem;text-transform:uppercase;letter-spacing:.1em;color:var(--color-gold);margin:0 0 .35rem}
.home-original-news .fixture-date span{font-size:1.5rem;font-weight:700;color:#fff}
.home-original-news .fixture-teams{display:flex;justify-content:center;align-items:center;gap:2rem;margin-bottom:2rem}
.home-original-news .fixture-team{text-align:center}.home-original-news .fixture-team img{width:80px;height:80px;object-fit:contain;margin:0 auto .75rem}.home-original-news .fixture-team p{font-family:var(--font-primary);font-size:.875rem;text-transform:uppercase;letter-spacing:.05em;color:#fff}.home-original-news .fixture-vs{font-family:var(--font-primary);font-size:1.5rem;color:var(--color-text-muted)}
.home-original-news .fixture-venue{text-align:center;margin-bottom:1.5rem;padding-top:1.5rem;border-top:1px solid var(--color-border)}
.home-original-news .fixture-venue p{display:flex;align-items:center;justify-content:center;gap:.5rem;font-size:.875rem;color:var(--color-text-muted);margin:.2rem 0}
.sponsor-strip-section{padding:4rem 0;background:#0b0b0b;border-top:1px solid rgba(255,255,255,.08);overflow:hidden}.sponsor-strip-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:2rem}.sponsor-strip-header a{color:var(--color-primary);font-weight:700;text-transform:uppercase;font-size:.875rem;letter-spacing:.05em}.sponsor-marquee{width:100%;overflow:hidden;mask-image:linear-gradient(to right,transparent,#000 8%,#000 92%,transparent)}.sponsor-marquee-track{display:flex;gap:1.5rem;width:max-content;animation:blpSponsorScroll 32s linear infinite}.sponsor-marquee:hover .sponsor-marquee-track{animation-play-state:paused}.sponsor-marquee-item{width:210px;height:110px;display:flex;align-items:center;justify-content:center;padding:1rem 1.25rem;border-radius:18px;background:linear-gradient(180deg,#fff,#f3f4f6);box-shadow:0 18px 38px rgba(0,0,0,.25);text-decoration:none;color:#111827;font-family:var(--font-primary);text-transform:uppercase;font-weight:800;letter-spacing:.05em}.sponsor-marquee-item img{max-width:100%;max-height:82px;object-fit:contain;transition:transform .25s ease}.sponsor-marquee-item:hover img{transform:scale(1.06)}@keyframes blpSponsorScroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@media(max-width:1024px){.home-original-news .home-news-grid{grid-template-columns:1fr}.home-original-news .news-main{grid-template-columns:1fr}.home-original-news .news-featured{grid-row:auto}}
@media(max-width:640px){.home-original-news .news-small{display:block}.home-original-news .news-small .news-card-image{width:100%;aspect-ratio:16/9}.home-original-news .fixture-teams{gap:1rem}.sponsor-strip-header{align-items:flex-start;flex-direction:column;gap:.75rem}.sponsor-marquee-item{width:170px;height:90px}.about-grid{grid-template-columns:1fr;text-align:left}.stats-grid{justify-content:flex-start;gap:2rem;flex-wrap:wrap}.affiliation-box{text-align:left;justify-content:flex-start}}

/* ===== Better sponsors + album gallery patch ===== */
.home-sponsors-modern{padding:5rem 0;background:#090909;border-top:1px solid rgba(255,255,255,.08);overflow:hidden}
.home-sponsors-modern .eyebrow{display:block;color:#d7193f;text-transform:uppercase;font-weight:800;letter-spacing:.14em;font-size:.8rem;margin-bottom:.35rem}
.sponsor-feature-marquee{overflow:hidden;margin-top:1.25rem;mask-image:linear-gradient(to right,transparent,#000 5%,#000 95%,transparent)}
.sponsor-feature-track{display:flex;gap:1.4rem;width:max-content;animation:blpSponsorFeatureScroll 38s linear infinite;padding:1rem 0 1.4rem}
.sponsor-feature-marquee:hover .sponsor-feature-track{animation-play-state:paused}
.sponsor-feature-card{width:260px;min-height:190px;background:linear-gradient(180deg,#fff,#f7f7f8);border-radius:22px;text-decoration:none;color:#111827;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.55rem;padding:1.25rem;box-shadow:0 24px 50px rgba(0,0,0,.35);border:1px solid rgba(255,255,255,.08)}
.sponsor-feature-logo{height:105px;width:100%;display:grid;place-items:center;background:#f1f5f9;border-radius:16px;padding:14px}
.sponsor-feature-logo img{max-width:100%;max-height:86px;object-fit:contain;transition:transform .25s ease}
.sponsor-feature-card:hover .sponsor-feature-logo img{transform:scale(1.06)}
.sponsor-feature-card strong{font-family:Oswald,sans-serif;text-transform:uppercase;letter-spacing:.04em;text-align:center;font-size:1.05rem;line-height:1.1}
.sponsor-feature-card small{color:#d7193f;text-transform:uppercase;font-weight:800;letter-spacing:.08em}
@keyframes blpSponsorFeatureScroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}

.sponsor-showcase-page{background:#080808;color:#fff}.sponsor-hero-card{background:linear-gradient(135deg,#122b65,#315fe8);border-radius:24px;padding:34px;margin-bottom:42px;box-shadow:0 24px 60px rgba(0,0,0,.35);text-align:center}.sponsor-hero-card span{color:#c7d2fe;text-transform:uppercase;font-weight:800;letter-spacing:.14em;font-size:.78rem}.sponsor-hero-card h2{font-family:Oswald,sans-serif;text-transform:uppercase;font-size:40px;margin:8px 0}.sponsor-hero-card p{max-width:760px;margin:0 auto 18px;color:#e5e7eb;line-height:1.7}.motto-pill{display:inline-flex;background:rgba(255,255,255,.14);border:1px solid rgba(255,255,255,.25);border-radius:999px;padding:10px 20px;font-family:Oswald,sans-serif;text-transform:uppercase;letter-spacing:.08em;font-weight:800}.sponsor-tier-block{margin-bottom:46px}.sponsor-tier-head{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-bottom:22px}.sponsor-tier-head span{color:#9ca3af;text-transform:uppercase;font-weight:800;letter-spacing:.08em}.sponsor-showcase-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:26px}.sponsor-showcase-card{background:#fff;border-radius:24px;overflow:hidden;color:#111827;box-shadow:0 18px 45px rgba(0,0,0,.34);border:1px solid rgba(255,255,255,.09);transition:transform .2s ease, box-shadow .2s ease}.sponsor-showcase-card:hover{transform:translateY(-4px);box-shadow:0 26px 70px rgba(0,0,0,.42)}.sponsor-showcase-logo{height:210px;background:linear-gradient(180deg,#f8fafc,#eef2f7);display:grid;place-items:center;padding:28px}.sponsor-showcase-logo img{max-width:100%;max-height:160px;object-fit:contain}.sponsor-showcase-logo span{width:92px;height:92px;border-radius:50%;display:grid;place-items:center;background:#0b2a5b;color:#fff;font-family:Oswald,sans-serif;font-size:3rem}.sponsor-showcase-body{padding:24px}.sponsor-level-badge{display:inline-flex;background:#eef2ff;color:#1d4ed8;border-radius:999px;padding:6px 10px;font-size:.75rem;text-transform:uppercase;font-weight:900;letter-spacing:.08em;margin-bottom:12px}.sponsor-showcase-body h3{font-family:Oswald,sans-serif;text-transform:uppercase;font-size:1.55rem;margin:0 0 10px;color:#111827}.sponsor-showcase-body p{color:#4b5563;line-height:1.65}.sponsor-link{display:inline-flex;align-items:center;gap:8px;margin-top:12px;color:#d7193f;text-transform:uppercase;font-weight:900;text-decoration:none;letter-spacing:.04em}

.public-gallery-page{background:#080808;color:#fff}.public-gallery-page .section-subtitle{color:#9ca3af;margin-top:6px}.album-category-list{display:grid;gap:42px}.public-album-block{background:#141414;border:1px solid rgba(255,255,255,.08);border-radius:24px;padding:24px;box-shadow:0 18px 45px rgba(0,0,0,.28)}.public-album-head{display:flex;align-items:flex-start;justify-content:space-between;gap:20px;margin-bottom:22px}.public-album-head h3{font-family:Oswald,sans-serif;text-transform:uppercase;font-size:32px;margin:4px 0 6px;color:#fff}.public-album-head p{color:#cbd5e1;line-height:1.6;max-width:760px}.album-label{color:#d7193f;text-transform:uppercase;font-weight:900;letter-spacing:.12em;font-size:.76rem}.photo-count{display:inline-flex;white-space:nowrap;background:#d7193f;color:#fff;border-radius:999px;padding:9px 14px;text-transform:uppercase;font-weight:900;letter-spacing:.04em;font-size:.8rem}.album-photo-grid{display:grid;grid-template-columns:2fr 1fr 1fr;grid-auto-rows:185px;gap:14px}.album-photo{position:relative;display:block;overflow:hidden;border-radius:18px;background:#222;color:#fff;text-decoration:none}.album-photo.featured-photo{grid-row:span 2}.album-photo img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .28s ease, filter .28s ease}.album-photo:hover img{transform:scale(1.05);filter:brightness(.78)}.album-photo span{position:absolute;left:12px;right:12px;bottom:12px;background:linear-gradient(90deg,rgba(0,0,0,.72),rgba(0,0,0,.35));border-radius:10px;padding:8px 10px;font-weight:800}.album-more-note{color:#9ca3af;margin-top:14px}.empty-state{background:#fff;color:#111827;border-radius:18px;padding:28px;box-shadow:0 12px 35px rgba(0,0,0,.1)}
@media(max-width:900px){.album-photo-grid{grid-template-columns:1fr 1fr}.album-photo.featured-photo{grid-column:span 2}.sponsor-tier-head,.public-album-head{flex-direction:column}.sponsor-feature-card{width:220px}.sponsor-hero-card h2{font-size:30px}}
@media(max-width:560px){.album-photo-grid{grid-template-columns:1fr;grid-auto-rows:220px}.album-photo.featured-photo{grid-column:auto;grid-row:auto}.public-album-block{padding:16px}.sponsor-feature-card{width:185px;min-height:160px}.sponsor-feature-logo{height:82px}.sponsor-showcase-logo{height:170px}.sponsor-hero-card{padding:24px 18px}.motto-pill{border-radius:18px}}

/* ===== SPONSORS REDESIGN PATCH v2 ===== */
.sponsors-premium-page{
  background:
    radial-gradient(circle at 12% 8%, rgba(215,25,63,.18), transparent 30%),
    radial-gradient(circle at 90% 18%, rgba(37,99,235,.15), transparent 28%),
    #070707;
  color:#fff;
}
.sponsors-intro-panel{
  display:grid;
  grid-template-columns:1.6fr .9fr;
  gap:28px;
  align-items:stretch;
  background:linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.12);
  border-radius:30px;
  padding:34px;
  box-shadow:0 28px 80px rgba(0,0,0,.35);
  margin-bottom:52px;
}
.sponsors-intro-panel .eyebrow{
  color:#e01b46;
  font-weight:900;
  letter-spacing:.15em;
  text-transform:uppercase;
  font-size:.78rem;
}
.sponsors-intro-panel h2{
  font-family:Oswald,sans-serif;
  text-transform:uppercase;
  font-size:clamp(2rem,4vw,4.2rem);
  line-height:.98;
  margin:12px 0 16px;
  color:#fff;
}
.sponsors-intro-panel p{max-width:820px;color:#cbd5e1;line-height:1.75;font-size:1.05rem;margin:0}
.sponsor-motto-card{
  min-height:190px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  border-radius:24px;
  padding:28px;
  background:linear-gradient(135deg,#0b2a5b,#315fe8);
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.14),0 18px 50px rgba(49,95,232,.22);
}
.sponsor-motto-card small{color:#c7d2fe;text-transform:uppercase;font-weight:900;letter-spacing:.14em;margin-bottom:12px}
.sponsor-motto-card strong{font-family:Oswald,sans-serif;text-transform:uppercase;font-size:clamp(1.6rem,3vw,3rem);line-height:1.05;letter-spacing:.04em;color:#fff}
.sponsor-level-section{margin-bottom:64px}
.sponsor-level-titlebar{display:flex;align-items:end;gap:24px;margin-bottom:24px}
.sponsor-level-titlebar span{color:#93a4bd;text-transform:uppercase;font-weight:900;letter-spacing:.14em;font-size:.8rem}
.sponsor-level-titlebar h2{font-family:Oswald,sans-serif;text-transform:uppercase;color:#fff;font-size:clamp(2rem,3.5vw,3.5rem);line-height:1;margin:6px 0 0}
.sponsor-level-titlebar .level-line{height:1px;flex:1;background:linear-gradient(90deg,rgba(215,25,63,.8),rgba(255,255,255,.08))}
.sponsor-premium-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(330px,1fr));gap:28px}
.sponsor-premium-card{
  position:relative;
  display:grid;
  grid-template-columns:220px 1fr;
  min-height:230px;
  background:#fff;
  color:#111827;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 25px 70px rgba(0,0,0,.38);
  border:1px solid rgba(255,255,255,.1);
  transition:transform .2s ease,box-shadow .2s ease;
}
.sponsor-premium-card:hover{transform:translateY(-5px);box-shadow:0 34px 90px rgba(0,0,0,.48)}
.sponsor-premium-card::before{content:"";position:absolute;left:0;top:0;bottom:0;width:6px;background:linear-gradient(180deg,#d7193f,#315fe8)}
.sponsor-premium-media{
  background:
    linear-gradient(135deg,rgba(11,42,91,.06),rgba(49,95,232,.12)),
    #f8fafc;
  display:grid;
  place-items:center;
  padding:28px;
  min-height:230px;
}
.sponsor-premium-media img{width:100%;height:100%;max-width:170px;max-height:170px;object-fit:contain;filter:drop-shadow(0 10px 18px rgba(15,23,42,.18))}
.sponsor-premium-media span{width:112px;height:112px;border-radius:999px;background:#0b2a5b;color:#fff;display:grid;place-items:center;font-family:Oswald,sans-serif;font-size:4rem;font-weight:900}
.sponsor-premium-content{padding:30px 30px 28px;display:flex;flex-direction:column;justify-content:center;align-items:flex-start}
.sponsor-chip{display:inline-flex;align-items:center;border-radius:999px;background:#eef2ff;color:#1d4ed8;padding:7px 12px;font-size:.72rem;font-weight:900;text-transform:uppercase;letter-spacing:.1em;margin-bottom:14px}
.sponsor-premium-content h3{font-family:Oswald,sans-serif;text-transform:uppercase;font-size:clamp(1.55rem,2vw,2.1rem);line-height:1.05;color:#07111f;margin:0 0 10px}
.sponsor-premium-content p{color:#4b5563;line-height:1.6;margin:0 0 16px;font-size:1rem}
.sponsor-premium-content a{display:inline-flex;align-items:center;gap:8px;color:#d7193f;text-decoration:none;text-transform:uppercase;font-weight:900;letter-spacing:.06em;margin-top:auto}
.sponsor-premium-content a:hover{color:#0b2a5b}

/* make home sponsor strip logos larger and cleaner */
.sponsor-feature-card{width:300px;min-height:210px;border-radius:26px;background:linear-gradient(180deg,#fff,#f8fafc)}
.sponsor-feature-logo{height:130px;background:#fff;border:1px solid rgba(15,23,42,.08)}
.sponsor-feature-logo img{max-width:94%;max-height:105px}
.sponsor-marquee-item{width:250px;height:125px;background:#fff}
.sponsor-marquee-item img{max-height:96px}

@media(max-width:900px){
  .sponsors-intro-panel{grid-template-columns:1fr;padding:26px}
  .sponsor-premium-card{grid-template-columns:1fr}
  .sponsor-premium-media{min-height:190px}
  .sponsor-premium-media img{max-width:210px;max-height:150px}
}
@media(max-width:560px){
  .sponsors-intro-panel{border-radius:22px;padding:22px}
  .sponsor-premium-grid{grid-template-columns:1fr}
  .sponsor-premium-content{padding:24px}
  .sponsor-level-titlebar{align-items:flex-start;flex-direction:column;gap:12px}
  .sponsor-level-titlebar .level-line{width:100%}
  .sponsor-feature-card{width:220px;min-height:170px}
  .sponsor-feature-logo{height:95px}
}

/* Mobile menu reliability patch */
.mobile-menu-btn { touch-action: manipulation; }
.mobile-menu.active { display: block !important; }
@media (max-width: 1024px) {
  .nav-menu { display: none !important; }
  .mobile-menu-btn { display: flex !important; }
  .mobile-menu {
    position: fixed !important;
    top: 85px;
    left: 0;
    right: 0;
    z-index: 99999 !important;
  }
}

/* Club Shop public page */
.club-shop-public{background:#070707}.shop-window-banner{display:grid;grid-template-columns:minmax(0,1.3fr) minmax(260px,.7fr);gap:24px;align-items:center;background:linear-gradient(135deg,#111827,#0b2a5b);border:1px solid rgba(255,255,255,.1);border-radius:26px;padding:30px;margin-bottom:34px;box-shadow:0 18px 50px rgba(0,0,0,.35)}.shop-window-banner span{color:#d7193f;text-transform:uppercase;font-weight:900;letter-spacing:.12em}.shop-window-banner h2{font-family:Oswald,sans-serif;text-transform:uppercase;color:#fff;font-size:clamp(2rem,4vw,4rem);line-height:1;margin:8px 0}.shop-window-banner p{color:#dbeafe;font-size:1.05rem;line-height:1.65}.shop-window-details{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);border-radius:18px;padding:18px;color:#fff}.shop-window-details b,.shop-window-details small{display:block}.shop-window-details small{color:#cbd5e1;margin-top:8px}.shop-closed-notice,.shop-success,.shop-error{padding:15px 18px;border-radius:14px;margin-bottom:22px;font-weight:800}.shop-closed-notice{background:#fffbeb;color:#92400e}.shop-success{background:#dcfce7;color:#166534}.shop-error{background:#fee2e2;color:#991b1b}.shop-product-grid{display:grid;gap:34px}.shop-product-card{display:grid;grid-template-columns:minmax(280px,.85fr) minmax(0,1.15fr);background:#fff;color:#07111f;border-radius:28px;overflow:hidden;box-shadow:0 28px 80px rgba(0,0,0,.4)}.shop-product-media{background:#f4f7fb;min-height:380px;display:grid;place-items:center;padding:26px}.shop-product-media img{max-width:100%;max-height:440px;object-fit:contain}.shop-placeholder{width:140px;height:140px;border-radius:999px;background:#0b2a5b;color:#fff;font-family:Oswald,sans-serif;display:grid;place-items:center;font-size:3rem}.shop-product-info{padding:34px}.shop-chip{display:inline-flex;background:#eef2ff;color:#1d4ed8;border-radius:999px;padding:7px 12px;text-transform:uppercase;letter-spacing:.08em;font-weight:900;font-size:.72rem}.shop-product-info h2{font-family:Oswald,sans-serif;text-transform:uppercase;font-size:clamp(1.8rem,3vw,3rem);line-height:1;margin:14px 0 10px}.shop-product-info p{color:#475569;line-height:1.65}.shop-price{font-family:Oswald,sans-serif;font-size:2rem;color:#d7193f;margin:12px 0 20px}.sizing-details{border:1px solid #e2e8f0;border-radius:16px;padding:12px 14px;margin-bottom:20px;background:#f8fafc}.sizing-details summary{cursor:pointer;font-weight:900;text-transform:uppercase;letter-spacing:.05em;color:#0b2a5b}.sizing-details img{margin-top:12px;border-radius:10px;max-height:220px;object-fit:contain;background:#fff}.shop-order-form{border-top:1px solid #e2e8f0;padding-top:20px}.shop-form-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}.shop-form-grid label{display:flex;flex-direction:column;gap:6px;font-weight:900;color:#0f172a;font-size:.9rem}.shop-form-grid input,.shop-form-grid select,.shop-form-grid textarea{min-height:46px;border:1px solid #cbd5e1;border-radius:12px;padding:10px 12px;font:inherit;background:#fff;color:#0f172a}.shop-form-grid textarea{min-height:90px}.shop-form-grid small{color:#64748b}.shop-submit{width:100%;justify-content:center;margin-top:18px}.shop-submit:disabled{opacity:.55;cursor:not-allowed}.shop-form-grid .span-2{grid-column:span 2}
@media(max-width:900px){.shop-window-banner,.shop-product-card{grid-template-columns:1fr}.shop-product-media{min-height:260px}.shop-product-info{padding:24px}.shop-form-grid{grid-template-columns:1fr}.shop-form-grid .span-2{grid-column:span 1}}

/* Regular club shop with cart checkout */
.regular-shop-banner{margin-bottom:26px;}
.regular-shop-layout{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:28px;align-items:start;}
.shop-category-block{margin-bottom:38px;}
.shop-category-head{display:flex;justify-content:space-between;align-items:end;margin-bottom:18px;border-bottom:1px solid rgba(255,255,255,.12);padding-bottom:12px;}
.shop-category-head h2{font-family:Oswald,sans-serif;text-transform:uppercase;color:#fff;font-size:clamp(1.8rem,4vw,3rem);letter-spacing:.08em;margin:0;}
.shop-category-head span{color:#94a3b8;text-transform:uppercase;font-weight:900;letter-spacing:.12em;font-size:.78rem;}
.regular-product-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(250px,1fr));gap:22px;}
.regular-product-card{background:#fff;border-radius:22px;overflow:hidden;color:#07111f;box-shadow:0 22px 60px rgba(0,0,0,.34);display:flex;flex-direction:column;}
.regular-product-image{height:240px;background:#f5f7fb;display:grid;place-items:center;padding:18px;}
.regular-product-image img{width:100%;height:100%;object-fit:contain;display:block;}
.regular-product-body{padding:20px;display:flex;flex-direction:column;gap:10px;}
.regular-product-body>span{align-self:flex-start;background:#eef2ff;color:#1d4ed8;border-radius:999px;padding:6px 10px;text-transform:uppercase;font-weight:900;letter-spacing:.08em;font-size:.68rem;}
.regular-product-body h3{font-family:Oswald,sans-serif;text-transform:uppercase;font-size:1.45rem;line-height:1.05;margin:0;color:#07111f;}
.regular-product-body p{color:#64748b;line-height:1.5;margin:0;min-height:42px;}
.regular-price{font-family:Oswald,sans-serif;font-size:1.8rem;color:#d7193f;font-weight:900;}
.regular-add-form{display:grid;grid-template-columns:1fr 1fr 84px;gap:10px;margin-top:auto;}
.regular-add-form label{font-size:.75rem;text-transform:uppercase;font-weight:900;color:#334155;display:flex;flex-direction:column;gap:5px;}
.regular-add-form select,.regular-add-form input{height:42px;border:1px solid #cbd5e1;border-radius:12px;padding:8px 10px;font:inherit;background:#fff;color:#0f172a;min-width:0;}
.regular-add-form button{grid-column:1/-1;justify-content:center;margin-top:4px;}
.shop-cart-panel{position:sticky;top:96px;background:#fff;color:#0f172a;border-radius:24px;padding:22px;box-shadow:0 24px 80px rgba(0,0,0,.38);}
.shop-cart-panel h2{font-family:Oswald,sans-serif;text-transform:uppercase;letter-spacing:.05em;margin:0 0 16px;display:flex;justify-content:space-between;align-items:center;}
.shop-cart-panel h2 span{font-family:Open Sans,sans-serif;background:#d7193f;color:#fff;border-radius:999px;min-width:30px;height:30px;display:grid;place-items:center;font-size:.85rem;}
.cart-line{display:grid;grid-template-columns:58px 1fr 64px;gap:12px;align-items:center;border-bottom:1px solid #e2e8f0;padding:12px 0;}
.cart-line-img{width:58px;height:52px;border-radius:12px;background:#f1f5f9;display:grid;place-items:center;overflow:hidden;font-family:Oswald,sans-serif;font-weight:900;color:#0b2a5b;}
.cart-line-img img{width:100%;height:100%;object-fit:contain;}
.cart-line b{display:block;font-size:.9rem;line-height:1.2;}
.cart-line small{display:block;color:#64748b;font-size:.78rem;margin-top:2px;}
.cart-line input{height:38px;border:1px solid #cbd5e1;border-radius:10px;padding:6px;text-align:center;width:64px;}
.cart-update{width:100%;justify-content:center;margin:14px 0;}
.cart-total{display:flex;justify-content:space-between;align-items:center;border-top:2px solid #0f172a;padding-top:14px;margin-top:6px;font-size:1.1rem;}
.cart-total strong{font-family:Oswald,sans-serif;color:#d7193f;font-size:1.9rem;}
.checkout-box{margin-top:18px;background:#f8fafc;border:1px solid #e2e8f0;border-radius:18px;padding:16px;}
.checkout-box h3{font-family:Oswald,sans-serif;text-transform:uppercase;margin:0 0 8px;font-size:1.5rem;}
.checkout-box p{color:#475569;line-height:1.5;margin:0 0 12px;}
.checkout-form{display:grid;gap:10px;}
.checkout-form label{font-weight:900;color:#0f172a;font-size:.84rem;display:flex;flex-direction:column;gap:5px;}
.checkout-form input,.checkout-form textarea{border:1px solid #cbd5e1;border-radius:12px;min-height:42px;padding:9px 11px;font:inherit;background:#fff;color:#0f172a;}
.checkout-form textarea{min-height:80px;}
.checkout-form button{justify-content:center;}
.empty-cart{color:#64748b;line-height:1.55;background:#f8fafc;border:1px dashed #cbd5e1;border-radius:16px;padding:16px;}
@media(max-width:1050px){.regular-shop-layout{grid-template-columns:1fr}.shop-cart-panel{position:static}.regular-product-grid{grid-template-columns:repeat(auto-fill,minmax(220px,1fr))}}
@media(max-width:640px){.shop-category-head{align-items:flex-start;flex-direction:column}.regular-add-form{grid-template-columns:1fr}.regular-product-image{height:210px}.shop-cart-panel{padding:18px}.cart-line{grid-template-columns:52px 1fr 56px}.cart-line input{width:56px}.shop-window-details small{overflow-wrap:anywhere}}

/* Dynamic home section managed from admin */
.home-dynamic-section{background:#080808;padding:70px 0;border-top:1px solid rgba(255,255,255,.08);border-bottom:1px solid rgba(255,255,255,.08);}
.home-dynamic-card{background:linear-gradient(135deg,#141414,#0b0b0b);border:1px solid rgba(255,255,255,.12);border-radius:28px;overflow:hidden;box-shadow:0 24px 70px rgba(0,0,0,.35);display:grid;grid-template-columns:1fr;}
.home-dynamic-card.has-image{grid-template-columns:minmax(280px,.85fr) minmax(0,1.15fr);}
.home-dynamic-media{min-height:320px;background:#111;display:flex;align-items:center;justify-content:center;}
.home-dynamic-media img{width:100%;height:100%;object-fit:cover;display:block;}
.home-dynamic-content{padding:42px;color:#e5e7eb;}
.home-dynamic-content h2{font-family:var(--font-primary);font-size:clamp(2rem,4vw,4.25rem);line-height:1;text-transform:uppercase;letter-spacing:.06em;color:#fff;margin:0 0 18px;}
.home-dynamic-copy{font-size:1.05rem;line-height:1.75;color:#cbd5e1;}
.home-dynamic-copy h1,.home-dynamic-copy h2,.home-dynamic-copy h3{color:#fff;font-family:var(--font-primary);text-transform:uppercase;letter-spacing:.04em;}
.home-dynamic-copy a{color:#e11d48;font-weight:800;}
.home-dynamic-copy ul{padding-left:1.3rem;}
@media(max-width:850px){.home-dynamic-card.has-image{grid-template-columns:1fr}.home-dynamic-media{min-height:220px}.home-dynamic-content{padding:26px}.home-dynamic-section{padding:44px 0}}

/* Regular checkout style for club shop */
.regular-shop-layout{display:grid;grid-template-columns:minmax(0,1fr) 360px;gap:28px;align-items:start;}
.regular-product-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(255px,1fr));gap:26px;}
.regular-product-card{background:#fff;color:#0f172a;border-radius:24px;overflow:hidden;box-shadow:0 20px 50px rgba(0,0,0,.26);display:flex;flex-direction:column;min-width:0;}
.regular-product-image{height:245px;background:#f8fafc;display:grid;place-items:center;padding:18px;border-bottom:1px solid #eef2f7;}
.regular-product-image img{width:100%;height:100%;object-fit:contain;display:block;}
.regular-product-body{padding:20px;display:flex;flex-direction:column;gap:12px;flex:1;}
.regular-product-body>span{align-self:flex-start;background:#eef2ff;color:#1d4ed8;border-radius:999px;padding:6px 10px;font-size:.72rem;font-weight:900;letter-spacing:.08em;text-transform:uppercase;}
.regular-product-body h3{font-family:Oswald,sans-serif;text-transform:uppercase;font-size:1.55rem;line-height:1.05;margin:0;color:#07111f;}
.regular-product-body p{color:#64748b;line-height:1.5;margin:0;min-height:44px;}
.regular-price{font-family:Oswald,sans-serif;font-size:2rem;color:#d7193f;font-weight:900;}
.regular-add-form{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:auto;}
.regular-add-form label{display:flex;flex-direction:column;gap:6px;font-size:.78rem;font-weight:900;text-transform:uppercase;letter-spacing:.04em;color:#0f172a;min-width:0;}
.regular-add-form select,.regular-add-form input{width:100%;min-width:0;height:46px;border:1px solid #cbd5e1;border-radius:12px;padding:0 12px;background:#fff;color:#0f172a;font:inherit;text-transform:none;letter-spacing:0;}
.regular-add-form label:nth-of-type(3){grid-column:1 / 2;}
.regular-add-form .btn,.regular-add-form button{grid-column:1 / -1;width:100%;justify-content:center;border-radius:14px;min-height:52px;font-family:Oswald,sans-serif;text-transform:uppercase;font-size:1.05rem;}
.shop-cart-panel{position:sticky;top:96px;background:#fff;color:#0f172a;border-radius:24px;padding:22px;box-shadow:0 20px 50px rgba(0,0,0,.26);}
.shop-cart-panel h2{display:flex;justify-content:space-between;align-items:center;margin:0 0 16px;font-family:Oswald,sans-serif;text-transform:uppercase;}
.shop-cart-panel h2 span{display:inline-grid;place-items:center;min-width:30px;height:30px;border-radius:999px;background:#d7193f;color:#fff;font-size:.9rem;}
.cart-line{display:grid;grid-template-columns:58px minmax(0,1fr) 64px;gap:12px;align-items:center;padding:12px 0;border-bottom:1px solid #e2e8f0;}
.cart-line-img{width:58px;height:58px;border-radius:12px;background:#f8fafc;display:grid;place-items:center;overflow:hidden;font-weight:900;color:#0b2a5b;}
.cart-line-img img{width:100%;height:100%;object-fit:contain;}
.cart-line b{display:block;line-height:1.2;}
.cart-line small{display:block;color:#64748b;margin-top:3px;}
.cart-line input{width:64px;height:40px;border:1px solid #cbd5e1;border-radius:10px;text-align:center;}
.cart-total{display:flex;justify-content:space-between;align-items:center;margin:16px 0;padding-top:4px;font-size:1.2rem;}
.cart-total strong{font-family:Oswald,sans-serif;color:#d7193f;font-size:1.8rem;}
.checkout-box{border-top:1px solid #e2e8f0;padding-top:16px;margin-top:16px;}
.checkout-box h3{font-family:Oswald,sans-serif;text-transform:uppercase;margin:0 0 8px;}
.checkout-form{display:grid;gap:12px;}
.checkout-form label{display:flex;flex-direction:column;gap:6px;font-size:.82rem;font-weight:900;color:#0f172a;}
.checkout-form input,.checkout-form textarea{border:1px solid #cbd5e1;border-radius:12px;min-height:44px;padding:10px 12px;font:inherit;}
.checkout-form textarea{min-height:86px;}
.checkout-form .btn{width:100%;justify-content:center;min-height:50px;}
@media(max-width:1050px){.regular-shop-layout{grid-template-columns:1fr}.shop-cart-panel{position:static}.regular-product-grid{grid-template-columns:repeat(auto-fill,minmax(230px,1fr));}}
@media(max-width:520px){.regular-product-grid{grid-template-columns:1fr}.regular-product-image{height:225px}.regular-add-form{grid-template-columns:1fr}.regular-add-form label:nth-of-type(3){grid-column:auto}.shop-window-banner{grid-template-columns:1fr!important;padding:22px!important}.cart-line{grid-template-columns:50px minmax(0,1fr) 56px}.regular-product-body{padding:18px}.regular-add-form select{font-size:.92rem}.club-shop-public .container{padding-left:14px;padding-right:14px}}

/* Club shop custom add-ons polish */
.shop-customize-box{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  padding:12px;
  border:1px solid #e2e8f0;
  border-radius:16px;
  background:#f8fafc;
}
.shop-customize-box label{margin:0!important;}
.shop-customize-box small{display:inline;color:#e11d48;font-weight:900;margin-left:4px;}
.regular-add-form input,
.regular-add-form select{
  min-width:0;
}
.cart-line small{display:block;line-height:1.35;overflow-wrap:anywhere;}
.cart-line{align-items:flex-start;}
@media(max-width:640px){
  .shop-customize-box{grid-template-columns:1fr;}
  .regular-product-card{border-radius:22px;}
  .regular-product-body{gap:14px;}
  .regular-add-form{gap:12px;}
  .regular-add-form .btn{width:100%;justify-content:center;}
}

/* Club shop product-card redesign: compact, balanced and mobile friendly */
.club-shop-public .regular-product-grid{
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:24px;
  align-items:start;
}
.club-shop-public .regular-product-card{
  align-self:start;
  height:auto;
  border:1px solid rgba(15,23,42,.08);
  border-radius:22px;
  box-shadow:0 14px 36px rgba(0,0,0,.22);
  transition:transform .22s ease,box-shadow .22s ease;
}
.club-shop-public .regular-product-card:hover{
  transform:translateY(-5px);
  box-shadow:0 22px 46px rgba(0,0,0,.3);
}
.club-shop-public .regular-product-image{
  height:260px;
  padding:16px;
  background:linear-gradient(145deg,#f8fafc,#eef2f7);
}
.club-shop-public .regular-product-image img{
  object-fit:contain;
  border-radius:12px;
}
.club-shop-public .regular-product-body{
  display:block;
  padding:20px;
}
.club-shop-public .regular-product-body>span{
  display:inline-flex;
  margin-bottom:11px;
  padding:6px 11px;
  background:#edf3ff;
  color:#2454d8;
}
.club-shop-public .regular-product-body h3{
  font-size:1.55rem;
  margin:0 0 7px;
}
.club-shop-public .regular-product-body>p{
  min-height:0;
  margin:0 0 14px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.club-shop-public .regular-price{
  margin:2px 0 18px;
  font-size:2rem;
  line-height:1;
}
.club-shop-public .regular-add-form{
  margin-top:0;
  padding-top:17px;
  border-top:1px solid #e7edf4;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:12px;
}
.club-shop-public .regular-add-form label{
  font-size:.72rem;
  letter-spacing:.065em;
}
.club-shop-public .regular-add-form select,
.club-shop-public .regular-add-form input{
  height:45px;
  border-radius:11px;
  border-color:#cbd5e1;
  padding:0 11px;
  font-size:.9rem;
}
.club-shop-public .regular-add-form select:focus,
.club-shop-public .regular-add-form input:focus{
  outline:none;
  border-color:#2563eb;
  box-shadow:0 0 0 3px rgba(37,99,235,.12);
}
.club-shop-public .shop-customize-box{
  margin-top:2px;
  padding:14px;
  border-radius:14px;
  background:#f7f9fc;
  border:1px solid #dde5ee;
}
.club-shop-public .shop-customize-box:before{
  content:'Personalization';
  grid-column:1 / -1;
  font-size:.72rem;
  font-weight:900;
  letter-spacing:.09em;
  text-transform:uppercase;
  color:#334155;
  margin-bottom:-2px;
}
.club-shop-public .shop-customize-box small{
  display:block;
  margin:2px 0 0;
  font-size:.7rem;
}
.club-shop-public .regular-add-form>label:nth-last-of-type(1){
  max-width:110px;
}
.club-shop-public .regular-add-form .btn,
.club-shop-public .regular-add-form button{
  min-height:50px;
  border-radius:12px;
  margin-top:2px;
  box-shadow:none;
}
.club-shop-public .regular-add-form .btn:hover,
.club-shop-public .regular-add-form button:hover{
  transform:none;
  filter:brightness(.94);
}

@media (min-width:1180px){
  .club-shop-public .regular-product-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}
@media (max-width:1179px) and (min-width:720px){
  .club-shop-public .regular-product-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}
@media (max-width:719px){
  .club-shop-public .regular-shop-layout{gap:20px;}
  .club-shop-public .regular-product-grid{grid-template-columns:1fr;gap:18px;}
  .club-shop-public .regular-product-card{border-radius:18px;}
  .club-shop-public .regular-product-image{height:235px;padding:12px;}
  .club-shop-public .regular-product-body{padding:17px;}
  .club-shop-public .regular-add-form{grid-template-columns:1fr 1fr;gap:10px;}
  .club-shop-public .shop-customize-box{grid-template-columns:1fr 1fr;padding:12px;}
}
@media (max-width:430px){
  .club-shop-public .regular-add-form{grid-template-columns:1fr;}
  .club-shop-public .shop-customize-box{grid-template-columns:1fr;}
  .club-shop-public .regular-add-form>label:nth-last-of-type(1){max-width:none;}
}

/* Calendar / events */
.home-events-section{background:#111;color:#fff;padding-top:56px;padding-bottom:56px}.home-events-header,.public-section-heading{display:flex;justify-content:space-between;align-items:flex-end;gap:20px;margin-bottom:26px}.home-events-header a{color:#e31946;text-transform:uppercase;font-weight:800;text-decoration:none}.home-events-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.home-event-card{position:relative;display:grid;grid-template-columns:84px 1fr 36px;align-items:center;gap:18px;background:#1b1b1b;border:1px solid rgba(255,255,255,.08);border-radius:14px;padding:18px;color:#fff}.home-event-card.is-featured{border-color:rgba(227,25,70,.55);box-shadow:inset 4px 0 #e31946}.home-event-date{width:68px;height:68px;border-radius:14px;background:#0e0e0e;display:flex;flex-direction:column;align-items:center;justify-content:center;color:#fff}.home-event-date strong{font-family:Oswald,sans-serif;font-size:30px;line-height:1;color:#e4bd22}.home-event-date span{font-size:12px;letter-spacing:.12em}.event-type-label{display:inline-flex;width:max-content;padding:6px 10px;border-radius:999px;background:#eef2ff;color:#2453d4;text-transform:uppercase;font-size:11px;font-weight:900;letter-spacing:.08em}.home-event-body h3,.public-event-content h3{font-family:Oswald,sans-serif;text-transform:uppercase;margin:8px 0}.event-meta{display:flex;flex-wrap:wrap;gap:10px 16px;color:#9ca3af;font-size:13px}.event-card-arrow{width:34px;height:34px;border-radius:50%;display:grid;place-items:center;background:#e31946;color:#fff;text-decoration:none}.home-original-news .home-news-grid.no-fixture{grid-template-columns:1fr}.home-original-news .home-news-grid.no-fixture .news-main{grid-template-columns:minmax(340px,1.25fr) minmax(250px,.75fr)}
.public-events-section{background:#0d0d0d;color:#fff}.public-events-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:22px}.public-event-card{background:#181818;border:1px solid #292929;border-radius:16px;overflow:hidden}.public-event-card.is-featured{border-color:#e31946}.public-event-image{height:190px}.public-event-image img{width:100%;height:100%;object-fit:cover}.public-event-content{padding:22px}.public-event-top{display:flex;justify-content:space-between;gap:14px;align-items:center}.public-event-date{display:flex;align-items:baseline;gap:8px}.public-event-date strong{font:700 34px/1 Oswald,sans-serif;color:#e4bd22}.public-event-date span{font-weight:800;letter-spacing:.12em}.public-event-content p{color:#a7a7a7}.event-detail-card{max-width:980px;margin:auto}.event-detail-image{width:100%;max-height:460px;object-fit:cover;border-radius:16px;margin-bottom:24px}.event-detail-meta{display:flex;flex-wrap:wrap;gap:12px 22px;padding:16px 0 22px;color:#64748b}.empty-public-state{padding:34px;border:1px dashed #3f3f46;border-radius:14px;color:#9ca3af;text-align:center}
@media(max-width:900px){.home-events-grid,.public-events-grid{grid-template-columns:1fr}.home-original-news .home-news-grid.no-fixture .news-main{grid-template-columns:1fr}.home-events-header,.public-section-heading{align-items:flex-start;flex-direction:column}.home-event-card{grid-template-columns:70px 1fr}.event-card-arrow{display:none}}
@media(max-width:520px){.home-event-card{grid-template-columns:1fr}.home-event-date{width:62px;height:62px}.event-meta{display:grid;gap:7px}.public-event-top{align-items:flex-start}}

/* Contact message system */
.contact-honeypot{position:absolute!important;left:-10000px!important;width:1px!important;height:1px!important;overflow:hidden!important}
.contact-form-intro{margin:-8px 0 24px;color:#758097;line-height:1.6}
.contact-submit{width:100%;justify-content:center;min-height:52px}
.contact-alert{display:flex;gap:14px;align-items:flex-start;padding:18px 20px;border-radius:14px;margin-bottom:24px;font-size:15px}
.contact-alert i{font-size:22px;margin-top:2px}.contact-alert strong{display:block;margin-bottom:3px}.contact-alert p{margin:0}
.contact-alert-success{background:#ecfdf3;border:1px solid #a7f3d0;color:#166534}.contact-alert-error{background:#fff1f2;border:1px solid #fecdd3;color:#9f1239}
