@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary: #1F3D2B;
  --primary-light: #C7EEB4;
  --secondary: #1F3D2B;
  --accent: #C7EEB4;
  --warm: #8B7355;
  --warm-light: #a89078;
  --text: #1f2937;
  --text-light: #6b7280;
  --bg: #ffffff;
  --bg-light: #f9fafb;
  --bg-warm: #faf8f5;
  --border: #e5e7eb;
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

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

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  padding-bottom: 8px;
  background: var(--primary);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  transition: background-color 0.3s ease;
}

header.scrolled {
  background: var(--bg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 24px 0;
  width: 100%;
}

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

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

.logo-text {
  margin-left: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  transition: color 0.15s ease;
}

header.scrolled .logo-text {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent);
}

header.scrolled .nav-menu a {
  color: var(--text);
}

header.scrolled .nav-menu a:hover,
header.scrolled .nav-menu a.active {
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
  transition: color 0.15s ease;
}

header.scrolled .mobile-toggle {
  color: var(--primary);
}

/* Hero Section */
.hero {
  margin-top: 0;
  padding: 80px 0;
  background: var(--bg);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
  font-weight: 600;
  border: 2px solid var(--primary);
}

.btn-primary:hover {
  background: #b8e4a1;
  transform: translateY(-1px);
}

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

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

.hero-image {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
}

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

/* Sections */
section {
  padding: 80px 0;
}

.section-header {
  padding-bottom: 8px;
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Cards */
.cards {
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  transition: all 0.2s ease;
}

.card:hover {
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #16a34a 100%); box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 12px;
}

.card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* About Section */
.about {
  background: var(--bg-light);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 20px;
}

.about-text h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 16px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-image {
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
}

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

/* Page Header */
.page-header {
  padding-bottom: 8px;
  background: linear-gradient(180deg, #1F3D2B 0%, #1F3D2B 20%, #2d5a3f 100%);
  padding: 120px 0 60px;
  text-align: center;
  margin-bottom: 0;
}

.page-header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.page-header p {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
}

/* Contact Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px -5px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.15s ease;
}

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

.contact-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 24px;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.contact-item-icon {
  width: 24px;
  height: 24px;
  margin-right: 16px;
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.social-link {
  width: auto;
  min-width: auto;
  height: auto;
  padding: 10px 14px;
  background: #1F3D2B;
  color: #C7EEB4;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.85rem;
  font-weight: 500;
}

.social-link svg {
  fill: #C7EEB4;
  flex-shrink: 0;
}

.social-link:hover {
  background: #2d5a3f;
  transform: translateY(-2px);
}

/* Squad/Roster Styles */
.hero-content-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content-center h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 20px;
  line-height: 1.15;
}

.hero-content-center p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
}

.squad-section {
  margin-bottom: 60px;
}

.position-header {
  padding-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 32px;
  border-bottom: 3px solid var(--primary);
  text-align: center;
}

.player-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 24px;
}

.player-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.player-card:hover {
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.player-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: var(--bg-light);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-card .player-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: 42% center;
}

.player-info {
  padding: 20px;
  text-align: center;
}

.player-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}

.player-position {
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 500;
}

.player-contact {
  color: var(--text);
  font-size: 0.875rem;
  font-weight: 500;
}

/* Footer */
footer {
  background: var(--secondary);
  color: white;
  padding: 60px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.footer-section p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 10px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.15s ease;
}

.footer-section a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

/* Mobile */
@media (max-width: 768px) {
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary);
    flex-direction: column;
    gap: 0;
    padding: 20px;
    text-align: center;
    transition: background-color 0.3s ease;
    box-shadow: 0 8px 16px -8px rgba(0, 0, 0, 0.25);
  }
  
  header.scrolled .nav-menu {
    background: white;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu li {
    padding: 12px 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cards {
  margin-bottom: 2rem;
    grid-template-columns: 1fr;
  }
  
  section {
    padding: 60px 0;
  }
  
  .container {
    padding: 0 16px;
  }

  .player-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-content-center h1 {
    font-size: 2rem;
  }
  
  .page-header {
  padding-bottom: 8px;
    padding: 100px 0 40px;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
}

/* Match Banner Styles */
.match-banner {
    background: linear-gradient(180deg, #1F3D2B 0%, #1F3D2B 20%, #2d5a3f 100%);
    padding: 100px 0 2rem;
}

.match-cards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.match-card {
    background: #C7EEB4; color: #1F3D2B;
    border-radius: 16px;
    padding: 1.5rem 2.5rem;
    text-align: center;
    min-width: 380px; /* desktop only */
    border: 1px solid rgba(255,255,255,0.1);
}

.match-label {
    color: #1F3D2B;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #1F3D2B;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.match-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #1F3D2B;
}

.team-name { display: flex; align-items: center; gap: 0.5rem; white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
}

.match-score {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: rgba(31,61,43,0.15);
    padding: 0.25rem 0.75rem;
    border-radius: 8px;
}

.match-info {
    margin-top: 0.75rem;
    font-size: 0.9rem;
    color: #1F3D2B;
}

/* News Preview Styles */
.news-preview {
    padding: 1.5rem 0;
    background: var(--bg-light);
}

.news-preview-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    
    background: white;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: all 0.2s ease;
}

.news-preview-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.news-preview-image {
    width: 240px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.news-preview-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.news-tag {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.35rem 0.75rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-preview-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary);
    margin: 0.5rem 0;
    font-weight: 700;
}

.news-preview-card p {
    color: var(--text-light);
    margin: 0;
}

.read-more {
    display: inline-block;
    margin-top: 0.75rem;
    color: var(--primary);
    font-weight: 600;
}

/* Content Section */
.content-section {
    padding: 3rem 0;
}

.about-full {
    padding: 0 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-full .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--secondary);
}

.about-full h2 {
    font-family: 'Montserrat', sans-serif;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--secondary);
    font-weight: 700;
    font-size: 1.5rem;
}

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

/* News Styles */
.news-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 0;
}

.news-article {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.news-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.news-article h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.news-article h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary);
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.awards-list {
    list-style: none;
    padding: 0;
}

.awards-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.awards-list li:last-child {
    border-bottom: none;
}

/* Coach Section */
.coach-section {
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.coach-section h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.coach-card {
    background: linear-gradient(180deg, #1F3D2B 0%, #1F3D2B 20%, #2d5a3f 100%);
    border-radius: 16px;
    padding: 2rem;
    color: white;
}

.coach-card h3 {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.coach-card .coach-credentials {
    list-style: none;
    padding: 0;
    margin: 0;
}

.coach-card .coach-credentials li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255,255,255,0.9);
}

.coach-card .coach-credentials li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
}

/* Squad Styles */
.position-group {
    margin-bottom: 3rem;
}

.position-title {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary);
    font-weight: 700;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}

.squad-grid {
    align-items: start;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.squad-grid .player-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex; flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid var(--border);
}

.player-number {
    background: var(--secondary);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.squad-grid .player-info {
    padding: 0;
    text-align: left;
}

.squad-grid .player-info h4 {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    font-size: 1rem;
    color: var(--secondary);
    font-weight: 600;
}

.squad-grid .player-info .position {
    font-size: 0.8rem;
    color: var(--text-light);
    display: none;
}

/* Matches Page */
.matches-content {
    padding: 2rem 0;
}

.season-summary {
    background: linear-gradient(180deg, #1F3D2B 0%, #1F3D2B 20%, #2d5a3f 100%);
    border-radius: 16px;
    padding: 2.5rem;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

.season-summary h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.season-result {
    font-size: 1.5rem;
    margin: 1rem 0;
}

.external-links {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
}

.external-links h3 {
    font-family: 'Montserrat', sans-serif;
    margin-top: 0;
    color: var(--secondary);
    font-weight: 700;
}

.external-links p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.upcoming-section {
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 16px;
    text-align: center;
}

.upcoming-section h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary);
    font-weight: 700;
}

.upcoming-section p {
    color: var(--text-light);
}

.upcoming-section a {
    color: var(--primary);
    font-weight: 600;
}

/* SofaScore Widget */
.sofascore-widget {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
}

.sofascore-widget h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #1a472a;
    min-width: 150px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    border-radius: 8px;
    padding: 8px 0;
    z-index: 1000;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    color: #C7EEB4 !important;
    display: block;
    padding: 10px 16px;
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    background: rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        border-radius: 0;
        padding: 0;
    }
    
    .dropdown-menu a {
    color: #C7EEB4 !important;
        padding-left: 32px;
    }
    
    .dropdown .dropdown-menu {
        display: none;
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
}
/* ====================================
   NEW STYLES - February 2026 Update
   ==================================== */

/* Founder Quote Blockquote */
blockquote.founder-quote {
    background: linear-gradient(135deg, var(--bg-light) 0%, #f0f5eb 100%);
    border-left: 4px solid var(--primary);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 12px 12px 0;
}

blockquote.founder-quote p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--secondary);
    margin-bottom: 1rem;
}

blockquote.founder-quote cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

/* ====================================
   STAFF PAGE STYLES
   ==================================== */

/* Job Openings Banner */
.job-openings-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #2d5a3f 100%);
    border-radius: 12px;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.job-openings-banner p {
    color: white;
    font-weight: 500;
    margin: 0;
    font-size: 1rem;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

.job-openings-banner .btn-primary {
  background: var(--primary);
  color: white;
    background: white;
    color: var(--primary);
}

.job-openings-banner .btn-primary:hover {
    background: var(--bg-light);
}

/* Staff Featured Section */
.staff-featured {
    margin-bottom: 3rem;
}

.staff-card-featured {
    background: linear-gradient(180deg, #1F3D2B 0%, #1F3D2B 20%, #2d5a3f 100%);
    border-radius: 16px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2.5rem;
    align-items: start;
    color: white;
}

.staff-card-featured .staff-photo-placeholder {
    width: 200px;
    height: 250px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed rgba(255,255,255,0.3);
}

.staff-card-featured .staff-photo-placeholder span {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    text-align: center;
}

.staff-card-featured .staff-role {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.4rem 0.75rem;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.staff-card-featured h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.staff-card-featured p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Staff Section Title */
.staff-section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin: 2.5rem 0 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary);
}

/* Staff Grid */
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.staff-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 1px solid var(--border);
}

.staff-card .staff-photo-placeholder {
    width: 120px;
    height: 150px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border: 2px dashed var(--border);
}

.staff-card .staff-photo-placeholder span {
    color: var(--text-light);
    font-size: 0.8rem;
    text-align: center;
}

.staff-card .staff-role {
    display: inline-block;
    background: var(--bg-light);
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.35rem 0.6rem;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.staff-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.staff-card p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ====================================
   CAREERS PAGE STYLES
   ==================================== */

.careers-content {
    padding: 2rem 0;
}

.no-openings {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    max-width: 500px;
    margin: 0 auto;
}

.no-openings-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.no-openings h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.no-openings p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* ====================================
   SQUAD PAGE - FLAGS & DROPDOWNS
   ==================================== */

/* Coaches Grid */
.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.coach-card-new {
    background: linear-gradient(180deg, #1F3D2B 0%, #1F3D2B 20%, #2d5a3f 100%);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    color: white;
    cursor: pointer;
    transition: all 0.2s ease;
}

.coach-card-new:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.coach-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.coach-card-new .coach-info {
    flex: 1;
}

.coach-card-new h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.coach-title {
    font-size: 0.85rem;
    color: var(--accent);
}

.coach-dropdown {
    display: none;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.coach-card-new.expanded .player-dropdown {
    display: block;
}

.coach-card-new.expanded .dropdown-arrow {
    transform: rotate(180deg);
}

/* Flag Placeholder */
.flag-placeholder {
    width: 32px;
    height: 24px;
    background: rgba(107,83,68,0.15);
    border-radius: 4px;
    border: 1px dashed rgba(255,255,255,0.3);
    flex-shrink: 0;
}

.squad-grid .flag-placeholder {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--bg-light);
    border: 1px dashed var(--border);
}

/* Player Card Updates */
.squad-grid .player-card {
    position: relative;
    cursor: pointer;
    flex-wrap: wrap;
    padding-right: 50px;
}

.squad-grid .player-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
}

.squad-grid .player-info h4 {
    margin: 0;
}

.dropdown-arrow {
    font-size: 0.7rem;
    color: var(--text-light);
    transition: transform 0.2s ease;
}

.coach-card-new .dropdown-arrow {
    color: rgba(255,255,255,0.5);
}

/* Player Dropdown */
.player-dropdown {
    display: none;
    width: 100%;
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid var(--border);
}

.player-card.expanded .player-dropdown {
    display: block;
}

.player-card.expanded .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-item {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    color: var(--text);
}

.dropdown-item strong {
    color: var(--secondary);
}

.dropdown-item .tbd {
    color: var(--text-light);
    font-style: italic;
}

/* ====================================
   MOBILE FIXES - MATCH CARDS
   ==================================== */

@media (max-width: 768px) {
    /* Fix match cards on mobile */
    .match-cards {
        width: 100%;
        justify-content: center;
        flex-direction: column;
        align-items: center;
    }
    
    .match-card {
        margin: 0 auto;
    background: #C7EEB4; color: white;
        width: 100%;
        max-width: 350px;
        padding: 1.25rem 1.5rem;
    }
    
    .match-teams {
        flex-direction: column;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .team-name {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
        white-space: normal;
        text-align: center;
    }
    .team-name img {
        order: -1;
    }
    
    .match-score {
        font-size: 1.25rem;
        white-space: nowrap;
    }
    
    /* Fix news preview on mobile */
    .news-preview-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
        flex-direction: column !important;
        gap: 16px !important;
    }
    
    .news-preview-card img {
        width: 100% !important;
        height: 180px !important;
    }
    
    /* Staff featured card mobile */
    .staff-card-featured {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .staff-card-featured .staff-photo-placeholder {
        margin: 0 auto;
    }
    
    /* Staff grid mobile */
    .staff-grid {
        grid-template-columns: 1fr;
    }
    
    /* Job openings banner mobile */
    .job-openings-banner {
        flex-direction: column;
        text-align: center;
    }
    
    /* Coaches grid mobile */
    .coaches-grid {
        grid-template-columns: 1fr;
    }
}
/* ====================================
   V2 STYLES - February 22, 2026
   ==================================== */

/* Story Section Dropdowns (About Page) */
.story-section {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.2s ease;
}

.story-section:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.story-header {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-light);
}

.story-header h2 {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
}

.story-toggle {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}

.story-content {
    display: none;
    padding: 2rem;
}

.story-section.expanded .story-content {
    display: block;
}

.story-section.expanded .story-header {
    border-bottom: 1px solid var(--border);
}

/* Story Media */
.story-media-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.video-placeholder {
    background: var(--secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    color: white;
    font-size: 1.25rem;
}

.story-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
}

.story-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .story-media-row,
    .story-images-grid {
        grid-template-columns: 1fr;
    }
    
    .story-header {
        padding: 1.25rem 1.5rem;
    }
    
    .story-content {
        padding: 1.5rem;
    }
    
    .story-header h2 {
        font-size: 1.1rem;
    }
}

/* Job Card (Careers Page) */
.job-card {
    background: white;
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.2s ease;
}

.job-card:hover {
    box-shadow: 0 8px 25px rgba(103, 176, 49, 0.15);
    transform: translateY(-2px);
}

.job-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #16a34a 100%); box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
}

.job-details h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.job-details p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.careers-content h2 {
    font-family: 'Montserrat', sans-serif;
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .job-card {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* Player Card Styled (Squad Page) */
.player-card-styled {
    background: #C7EEB4 !important;
    border: none !important;
}

.player-card-styled:hover {
    background: #b8e4a3 !important;
}

.player-flags {
    font-size: 1.25rem;
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 4px;
}

.squad-grid .player-card {
    position: relative;
}

.player-link {
    color: var(--secondary);
    text-decoration: none;
}

.player-link:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Coach card flags */
.coach-card-new .player-flags {
    position: static;
    font-size: 1.5rem;
}

/* Staff page - dropdowns for mobile */
@media (max-width: 768px) {
    .staff-card {
        cursor: pointer;
    }
    
    .staff-card .staff-details p:not(:first-of-type) {
        display: none;
    }
    
    .staff-card.expanded .staff-details p {
        display: block;
    }
}

/* Contact page image */
.contact-hero-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 2rem;
}
/* ====================================
   V2 STYLES - February 22, 2026
   ==================================== */


/* Mobile nav - keep links signature green even when scrolled */
@media (max-width: 768px) {
    header.scrolled .nav-menu a,
    header.scrolled .nav-menu a:hover,
    header.scrolled .nav-menu a.active {
        color: #C7EEB4 !important;
    }
    header.scrolled .nav-menu {
        background: #1F3D2B !important;
    }
}

/* Hide Dante's commit banner on mobile */
@media (max-width: 768px) {
    .photo-commit-banner {
        display: none !important;
    }
}

/* News Section for Player Pages */
.news-section { padding: 3rem 0; }
.news-section h2 { font-family: 'Montserrat', sans-serif; color: var(--secondary); margin-bottom: 1.5rem; }
.news-card { background: white; border-radius: 12px; padding: 1.5rem; margin-bottom: 1rem; border-left: 4px solid var(--primary); }
.news-card h4 { font-family: 'Montserrat', sans-serif; margin: 0; }
.news-card a { color: var(--primary); text-decoration: none; }
.news-card a:hover { text-decoration: underline; }

/* ====================================
   MOBILE FIXES - HOMEPAGE WIDGET v78
   ==================================== */
@media (max-width: 768px) {
    .match-card {
        margin: 0 auto !important;
        padding: 1.25rem 1rem !important;
        max-width: 100% !important;
    }
    
    .match-teams {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.75rem !important;
        width: 100% !important;
    }
    
    .team-name {
        flex-direction: row !important;
        justify-content: center !important;
        font-size: 1rem !important;
        white-space: nowrap !important;
    }
    
    .match-score {
        font-size: 1.3rem !important;
        padding: 0.5rem 1rem !important;
    }
    
    .match-info {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        white-space: normal !important;
    }
    
    .match-label {
        font-size: 0.75rem !important;
    }
}

/* ====================================
   MOBILE FIXES v79 - BETTER CENTERING
   ==================================== */
@media (max-width: 768px) {
    .match-card {
        text-align: center !important;
    }
    
    .match-teams {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    
    .team-name {
        justify-content: center !important;
        font-size: 0.95rem !important;
    }
    
    .team-name img {
        height: 28px !important;
        width: 28px !important;
    }
    
    .match-score {
        font-size: 1.1rem !important;
        padding: 0.4rem 0.8rem !important;
    }
    
    .match-info {
        font-size: 0.8rem !important;
        text-align: center !important;
    }
}

/* ====================================
   MOBILE FIXES v80 - FINAL TWEAKS
   ==================================== */
@media (max-width: 768px) {
    /* Homepage widget - bigger team names/badges */
    .match-card .team-name {
        font-size: 1.1rem !important;
    }
    
    .match-card .team-name img {
        height: 36px !important;
        width: 36px !important;
    }
    
    /* Match info on separate lines */
    .match-card .match-info {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.25rem !important;
        font-size: 0.85rem !important;
    }
    
    .match-card .match-info span {
        display: block !important;
    }
}

/* ====================================
   MOBILE FIXES v81 - DESKTOP UNCHANGED
   ==================================== */
@media (max-width: 768px) {
    /* Homepage widget - match info line breaks */
    .match-card .match-info {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.2rem !important;
        font-size: 0.85rem !important;
        word-spacing: 100vw !important;
    }
    
    /* Super Cup logo bigger on mobile only */
    .fixture-comp img[alt="Super Cup"] {
        height: 64px !important;
    }
}

/* ====================================
   MOBILE FIXES v82 - ALIGNMENT & STYLING
   ==================================== */
@media (max-width: 768px) {
    /* Homepage widget - horizontal layout */
    .match-card .match-teams {
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0.75rem !important;
        flex-wrap: nowrap !important;
    }
    
    .match-card .team-name {
        font-size: 0.85rem !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.4rem !important;
    }
    
    .match-card .team-name img {
        height: 30px !important;
        width: 30px !important;
    }
    
    .match-card .match-score {
        font-size: 1rem !important;
        padding: 0.35rem 0.6rem !important;
        flex-shrink: 0 !important;
    }
    
    /* Match info styling - classy */
    .match-card .match-info {
        font-size: 0.8rem !important;
        font-style: italic !important;
        letter-spacing: 0.02em !important;
        opacity: 0.9 !important;
        margin-top: 0.75rem !important;
    }
    
    /* Matches page - center team text */
    .fixture .fixture-home {
        text-align: center !important;
        justify-content: center !important;
    }
    
    .fixture .fixture-away {
        text-align: center !important;
        justify-content: center !important;
    }
    
    /* Fix spacing - more gap around score */
    .fixture .fixture-score {
        margin: 0 0.5rem !important;
    }
    
    /* Logo sizes - UPSL smaller, Super Cup bigger */
    .fixture-comp img[alt=UPSL] {
        height: 24px !important;
    }
    
    .fixture-comp img[alt=Super Cup] {
        height: 40px !important;
    }
}

/* ====================================
   MOBILE FIXES v83 - HOMEPAGE WIDGET WIDTH
   ==================================== */
@media (max-width: 768px) {
    /* Homepage widget - vertical layout to fit */
    .match-card .match-teams {
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    
    .match-card .team-name {
        font-size: 1rem !important;
        justify-content: center !important;
    }
    
    .match-card .team-name img {
        height: 32px !important;
        width: 32px !important;
    }
    
    .match-card .match-score {
        font-size: 1.1rem !important;
        padding: 0.4rem 1rem !important;
        margin: 0.25rem 0 !important;
    }
    
    .match-card {
        max-width: 320px !important;
        margin: 0 auto !important;
    }
}

/* ====================================
   MOBILE/DESKTOP TEXT TOGGLE v84
   ==================================== */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: inline !important;
}

@media (max-width: 768px) {
    .mobile-only {
        display: inline !important;
    }
    
    .desktop-only {
        display: none !important;
    }
}

/* ====================================
   MOBILE FIXES v85 - WIDGET COMPACT & ALIGNED
   ==================================== */
@media (max-width: 768px) {
    /* Compact match info on one line */
    .match-card .match-info {
        white-space: nowrap !important;
        font-size: 0.75rem !important;
        font-style: italic !important;
        margin-top: 0.5rem !important;
    }
    
    /* Align team names and logos */
    .match-card .match-teams {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.4rem !important;
    }
    
    .match-card .team-name {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        font-size: 0.95rem !important;
        width: 100% !important;
    }
    
    .match-card .team-name img {
        height: 28px !important;
        width: 28px !important;
        flex-shrink: 0 !important;
    }
    
    /* Tighter padding */
    .match-card {
        padding: 1rem !important;
    }
    
    .match-card .match-label {
        margin-bottom: 0.5rem !important;
    }
}

/* ====================================
   MOBILE FIXES v86 - FINAL ALIGNMENT
   ==================================== */
@media (max-width: 768px) {
    /* Fix mobile-only display */
    .match-info .mobile-only {
        display: block !important;
        text-align: center !important;
        width: 100% !important;
        font-style: italic !important;
        font-size: 0.8rem !important;
    }
    
    .match-info .desktop-only {
        display: none !important;
    }
    
    /* Team alignment - both logos on left */
    .match-card .team-name {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        font-size: 0.95rem !important;
    }
    
    .match-card .team-name img {
        height: 28px !important;
        width: 28px !important;
        margin: 0 !important;
        order: -1 !important;
    }
}

/* ====================================
   MOBILE FIXES v87 - FORCE OVERRIDE
   ==================================== */
@media (max-width: 768px) {
    /* Force match info display */
    .match-banner .match-card .match-info .mobile-only {
        display: block !important;
        text-align: center !important;
        width: 100% !important;
        font-style: italic !important;
        font-size: 0.8rem !important;
        white-space: normal !important;
    }
    
    .match-banner .match-card .match-info .desktop-only {
        display: none !important;
    }
    
    .match-banner .match-card .match-info {
        text-align: center !important;
        width: 100% !important;
    }
    
    /* Force team alignment */
    .match-banner .match-card .match-teams {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.5rem !important;
        width: 100% !important;
    }
    
    .match-banner .match-card .match-teams .team-name {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        font-size: 0.95rem !important;
        width: 100% !important;
    }
    
    .match-banner .match-card .match-teams .team-name img {
        height: 28px !important;
        width: 28px !important;
        margin: 0 !important;
        order: -1 !important;
        flex-shrink: 0 !important;
    }
}

/* ====================================
   MOBILE FIXES v88 - SMALLER MATCH INFO
   ==================================== */
@media (max-width: 768px) {
    .match-banner .match-card .match-info .mobile-only {
        font-size: 0.7rem !important;
        letter-spacing: -0.01em !important;
    }
}

/* ====================================
   MOBILE FIXES v89 - SINGLE LINE
   ==================================== */
@media (max-width: 768px) {
    .match-banner .match-card .match-info .mobile-only {
        white-space: nowrap !important;
        font-size: 0.7rem !important;
        display: inline-block !important;
    }
    
    .match-banner .match-card .match-info {
        display: flex !important;
        justify-content: center !important;
    }
}

/* ====================================
   MOBILE FIXES v90 - DEFINITIVE OVERRIDE
   ==================================== */
@media (max-width: 768px) {
    span.mobile-only {
        display: inline !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: static !important;
        width: auto !important;
        height: auto !important;
        overflow: visible !important;
    }
    
    span.desktop-only {
        display: none !important;
    }
    
    .match-info {
        text-align: center !important;
        font-style: italic !important;
        font-size: 0.7rem !important;
        white-space: nowrap !important;
    }
}

/* ====================================
   MOBILE FIXES v92 - SIMPLE CLEAN
   ==================================== */
@media (max-width: 768px) {
    .match-banner .match-card .match-info {
        font-size: 0.65rem !important;
        font-style: italic !important;
        text-align: center !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        max-width: 100% !important;
    }
}

/* ====================================
   MOBILE FIXES v94 - FRESH START
   ==================================== */
@media (max-width: 768px) {
    /* Hide original match-info on mobile */
    .match-banner .match-card .match-info {
        display: none !important;
    }
    
    /* Add new centered text via pseudo-element on match-card */
    .match-banner .match-card {
        position: relative !important;
    }
    
    .match-banner .match-card .btn-primary::before {
        content: '3/22 • WA Super Cup • Inglewood MS' !important;
        display: block !important;
        text-align: center !important;
        font-size: 0.75rem !important;
        font-style: italic !important;
        color: #1F3D2B !important;
        margin-bottom: 0.75rem !important;
        font-family: 'Inter', sans-serif !important;
    }
}

/* ====================================
   MOBILE FIXES v95 - TEXT ABOVE BUTTON
   ==================================== */
@media (max-width: 768px) {
    /* Remove the button ::before */
    .match-banner .match-card .btn-primary::before {
        display: none !important;
        content: none !important;
    }
    
    /* Add text after match-teams using ::after */

/* Mobile match banner - FINAL centering fix */
@media (max-width: 768px) {
    .match-banner .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .match-banner .match-cards {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }
    .match-banner .match-card {
        margin: 0 auto !important;
        width: calc(100% - 30px) !important;
        max-width: 320px !important;
        box-sizing: border-box !important;
    }
}

/* Override min-width on mobile */
@media (max-width: 768px) {
    .match-card {
        min-width: 0 !important;
        min-width: unset !important;
    }

/* Mobile: Date and location on either side of NEXT MATCH */



/* Mobile: NEXT MATCH centered, date/location as subtitle below */
@media (max-width: 768px) {
    .match-banner .match-card .match-label {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 0.2rem !important;
        margin-bottom: 0.5rem !important;
    }
    .match-banner .match-card .match-label::after {
        content: '3/22  •  Inglewood';
        font-size: 0.65rem;
        opacity: 0.75;
        letter-spacing: 1px;
    }
}
