/* CSS Variables - Fenerbahçe Color Scheme */
:root {
  --fb-navy: #00205B;
  --fb-yellow: #D4A800;
  --dark-bg: #FFFFFF;
  --light-bg: #F5F5F5;
  --border-color: #E0E0E0;
  --text-primary: #1A1A1A;
  --text-secondary: #666666;
}

/* Reset ve Temel Stiller */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Be Vietnam Pro', 'Noto Sans', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--dark-bg);
}

/* Utility Classes - Tailwind benzeri */
.bg-dark-bg { background-color: var(--dark-bg); }
.bg-light-bg { background-color: var(--light-bg); }
.text-text-primary { color: var(--text-primary); }
.text-text-secondary { color: var(--text-secondary); }
.border-border-color { border-color: var(--border-color); }
.border-fb-yellow { border-color: var(--fb-yellow); }
.fb-navy { color: var(--fb-navy); }
.fb-yellow { color: var(--fb-yellow); }
.hover\:text-fb-yellow:hover { color: var(--fb-yellow); }

/* Flexbox Utilities */
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.flex-col { flex-direction: column; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }

/* Size Utilities */
.size-full { width: 100%; height: 100%; }
.size-10 { width: 2.5rem; height: 2.5rem; }
.h-10 { height: 2.5rem; }
.w-10 { width: 2.5rem; }
.h-12 { height: 3rem; }
.w-12 { width: 3rem; }
.h-23 { height: 93px; }
.w-75 { width: 300px; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }

/* Position Utilities */
.relative { position: relative; }
.overflow-x-hidden { overflow-x: hidden; }

/* Layout */
.layout-container { 
  display: flex; 
  height: 100%; 
  flex-grow: 1; 
  flex-direction: column; 
}

/* Header Stilleri */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  white-space: nowrap;
  border-bottom: 1px solid var(--border-color);
  padding: 1.5rem 2.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 32, 91, 0.04), 0 4px 6px -2px rgba(0, 32, 91, 0.03);
  background-color: var(--dark-bg);
  min-height: 100px;
}

/* Logo Section */
header .flex.items-center {
  display: flex;
  align-items: center;
}

/* Site Logo Styles */
.site-logo {
  height: 72px !important;
  width: 230px !important;
  border-radius: 8px;
  object-fit: contain !important;
  max-width: none !important;
  max-height: none !important;
}

header img {
  border-radius: 8px;
  object-fit: cover;
}

header h1 {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

nav a {
  text-decoration: none;
  transition: color 0.3s ease;
  padding-bottom: 0.25rem;
}

nav a.text-text-secondary {
  color: var(--text-secondary);
}

nav a.text-text-primary {
  color: var(--text-primary);
  font-weight: 700;
  border-bottom: 2px solid var(--fb-yellow);
  padding-bottom: 0.25rem;
}

nav a:hover {
  color: var(--fb-yellow);
}

nav button {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.3s ease;
}

nav button:hover {
  color: var(--fb-yellow);
}

/* Material Icons */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

/* User Avatar */
.rounded-full {
  border-radius: 50%;
}

.bg-cover {
  background-size: cover;
}

.bg-center {
  background-position: center;
}

/* Typography Utilities */
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.tracking-tight { letter-spacing: -0.025em; }

/* Transition Utilities */
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; }
.duration-300 { transition-duration: 0.3s; }

/* Border Utilities */
.border-b { border-bottom-width: 1px; }
.border-b-2 { border-bottom-width: 2px; }
.border-solid { border-style: solid; }
.pb-1 { padding-bottom: 0.25rem; }

/* Padding Utilities */
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }

/* Shadow Utilities */
.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 32, 91, 0.04), 0 4px 6px -2px rgba(0, 32, 91, 0.03);
}

/* Width Utilities */
.w-full { width: 100%; }
.max-w-6xl { max-width: 72rem; }

/* Flex Utilities */
.flex-1 { flex: 1; }
.justify-center { justify-content: center; }

/* Ana İçerik */
main {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}

.container {
  width: 100%;
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.welcome-section {
  text-align: center;
  background: var(--light-bg);
  padding: 3rem 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 25px 50px -12px rgba(0, 32, 91, 0.08);
  margin: 2rem 0;
  border: 1px solid var(--border-color);
}

.welcome-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, var(--fb-yellow) 0%, var(--fb-navy) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.welcome-message {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 37.5rem;
  margin: 0 auto;
  line-height: 1.75;
}

/* Footer Stilleri */
.main-footer {
  background: linear-gradient(135deg, #FFFFFF 0%, #F0F0F0 100%);
  color: var(--text-primary);
  margin-top: 3rem;
}

.footer-container {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
  gap: 2.5rem;
  padding: 3.125rem 0;
}

.footer-section h3 {
  color: var(--fb-yellow);
  font-size: 1.125rem;
  margin-bottom: 1.25rem;
  font-weight: 600;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  margin-bottom: 1.25rem;
}

.footer-logo-img {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 2px solid var(--fb-yellow);
}

.footer-title {
  font-size: 1.1875rem;
  font-weight: 600;
  color: var(--fb-yellow);
}

.footer-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

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

.footer-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-link:hover {
  color: var(--fb-yellow);
  transform: translateX(0.3125rem);
}

.contact-info {
  color: var(--text-secondary);
}

.contact-item {
  margin-bottom: 0.625rem;
}

.contact-label {
  font-weight: 600;
  color: var(--fb-yellow);
}

.contact-link {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-link:hover {
  color: var(--fb-yellow);
}

.social-links {
  display: flex;
  gap: 0.9375rem;
  margin-top: 0.9375rem;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(135deg, var(--fb-yellow) 0%, var(--fb-navy) 100%);
  color: var(--dark-bg);
  transform: translateY(-0.1875rem);
  box-shadow: 0 0.3125rem 0.9375rem rgba(255, 237, 0, 0.3);
}

.footer-bottom {
  border-top: 1px solid #444;
  padding: 1.5625rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.copyright {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5625rem;
}

.footer-bottom-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-bottom-link:hover {
  color: var(--fb-yellow);
}

/* Takım Bilgisi Sayfası Stilleri */
.team-info-card {
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 25px rgba(0, 32, 91, 0.06);
}

.team-logo {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  object-fit: cover;
  border: 3px solid var(--fb-yellow);
}

.team-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  background: var(--dark-bg);
  border-radius: 8px;
  border-left: 4px solid var(--fb-yellow);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.stat-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
}

.color-badge {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.color-badge.red {
  background-color: var(--fb-navy);
}

.color-badge.yellow {
  background-color: var(--fb-yellow);
}

.achievements-card, .quick-stats-card {
  background: var(--light-bg);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 25px rgba(0, 32, 91, 0.06);
  margin-bottom: 1.5rem;
}

.achievement-item {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
}

.achievement-item:last-child {
  border-bottom: none;
}

.achievement-icon {
  font-size: 2rem;
  margin-right: 1rem;
  width: 50px;
  text-align: center;
}

.achievement-title {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.achievement-count {
  font-size: 0.875rem;
  color: var(--fb-yellow);
  font-weight: 500;
}

.quick-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
}

.quick-stat:last-child {
  border-bottom: none;
}

.quick-stat-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.quick-stat-value {
  color: var(--fb-yellow);
  font-weight: 700;
  font-size: 1.1rem;
}

.history-section {
  margin-top: 3rem;
  background: var(--light-bg);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 25px rgba(0, 32, 91, 0.06);
}

.history-content {
  margin-top: 1rem;
}

/* Grid Utilities */
.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.gap-8 {
  gap: 2rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.ml-6 {
  margin-left: 1.5rem;
}

.leading-relaxed {
  line-height: 1.625;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.font-extrabold {
  font-weight: 800;
}

@media (min-width: 1024px) {
  .lg\:col-span-2 {
    grid-column: span 2 / span 2;
  }
  
  .lg\:col-span-1 {
    grid-column: span 1 / span 1;
  }
  
  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 640px) {
  .sm\:text-5xl {
    font-size: 3rem;
    line-height: 1;
  }
  
  .sm\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  header {
    padding: 0.75rem 1rem;
  }
  
  .h-23 { height: 60px; }
  .w-75 { width: 193px; }
  
  nav {
    gap: 1rem;
    font-size: 0.75rem;
  }
  
  .welcome-title {
    font-size: 2rem;
  }
  
  .welcome-message {
    font-size: 1rem;
  }
  
  .welcome-section {
    padding: 2rem 1.25rem;
    margin: 1.25rem 0;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.875rem;
    padding: 2.5rem 0;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  /* Takım Sayfası Mobile */
  .team-info-card, .achievements-card, .quick-stats-card, .history-section {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .team-logo {
    width: 60px;
    height: 60px;
  }
  
  .ml-6 {
    margin-left: 1rem;
  }
  
  .team-stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .text-4xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }
  
  .text-3xl {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

/* Fikstür Kontrolleri - Ekteki Tasarıma Göre */
.fixture-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.view-toggle {
  display: flex;
  background: var(--light-bg);
  padding: 0.375rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0, 32, 91, 0.04);
}

.toggle-option {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.toggle-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle-option.active,
.toggle-option:has(input:checked) {
  background: var(--fb-navy);
  color: white;
  box-shadow: 0 2px 4px rgba(193, 14, 33, 0.3);
}

.toggle-text {
  font-weight: 500;
}

.filter-controls {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.control-group {
  position: relative;
  min-width: 200px;
}

.control-select {
  width: 100%;
  background: var(--light-bg);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  font-size: 0.875rem;
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.control-select:focus {
  outline: none;
  border-color: var(--fb-yellow);
  box-shadow: 0 0 0 2px rgba(255, 237, 0, 0.2);
}

.control-select option {
  background: var(--light-bg);
  color: var(--text-primary);
}

.select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  pointer-events: none;
  font-size: 0.75rem;
}

/* Fikstür Tablosu - Ekteki Tasarıma Göre */
.fixtures-table-wrapper {
  background: var(--light-bg);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 6px rgba(0, 32, 91, 0.04);
}

.fixtures-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.fixtures-table thead {
  background: rgba(0, 32, 91, 0.06);
}

.fixtures-table th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border-bottom: 1px solid var(--border-color);
}

.fixtures-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.fixture-row {
  transition: all 0.2s ease;
}

.fixture-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.fixture-row.fb-row {
  background: rgba(255, 237, 0, 0.05);
}

.fixture-row.fb-row:hover {
  background: rgba(255, 237, 0, 0.1);
}

.col-date, .col-time {
  font-weight: 500;
  color: var(--text-primary);
}

.col-time {
  color: var(--fb-yellow);
  font-weight: 600;
}

.team-cell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.col-home .team-cell {
  justify-content: flex-end;
  flex-direction: row-reverse;
}

.col-away .team-cell .team-icon-wrapper {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.team-name {
  font-weight: 500;
  color: var(--text-primary);
}

.team-name.fb-team {
  color: var(--fb-yellow);
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 32, 91, 0.3);
}

.team-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
}

.team-icon-placeholder {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.col-score {
  text-align: center;
}

.score-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.col-tournament {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.col-status {
  text-align: center;
}

.status-live {
  color: #dc3545;
  font-weight: 600;
  animation: pulse 2s infinite;
}

.status-finished {
  color: #28a745;
  font-weight: 500;
}

.status-upcoming {
  color: var(--text-secondary);
  font-weight: 500;
}

.col-details {
  text-align: center;
  width: 100px;
}

.detail-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  background: linear-gradient(135deg, var(--fb-yellow) 0%, var(--fb-navy) 100%);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 70px;
}

.detail-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(255, 237, 0, 0.3);
}

.detail-btn .material-symbols-outlined {
  font-size: 16px;
}

.no-detail {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* Modern Fikstür Sayfası Stilleri (Eski - Yedek) */
.modern-filters {
  background: var(--light-bg);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 32, 91, 0.04);
}

.filter-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.filter-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--dark-bg);
  border: 1px solid var(--border-color);
  border-radius: 2rem;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
  min-width: 120px;
  justify-content: center;
}

.filter-tab:hover {
  background: rgba(255, 237, 0, 0.1);
  color: var(--fb-yellow);
  border-color: var(--fb-yellow);
}

.filter-tab.active {
  background: linear-gradient(135deg, var(--fb-navy) 0%, var(--fb-yellow) 100%);
  color: white;
  border-color: var(--fb-navy);
  box-shadow: 0 4px 12px rgba(193, 14, 33, 0.3);
}

.tab-icon {
  font-size: 1.1rem;
}

.tab-text {
  font-size: 0.9rem;
  font-weight: 600;
}

.filter-selectors {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.selector-group {
  min-width: 200px;
}

.modern-select {
  width: 100%;
  background: var(--dark-bg);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}

.modern-select:focus {
  outline: none;
  border-color: var(--fb-yellow);
  box-shadow: 0 0 0 3px rgba(255, 237, 0, 0.2);
}

.modern-select option {
  background: var(--dark-bg);
  color: var(--text-primary);
}

/* Modern Maç Kartları */
.fixtures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.match-card {
  background: var(--light-bg);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 32, 91, 0.04);
}

.match-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 32, 91, 0.06);
}

.match-card.fb-match {
  border-left: 4px solid var(--fb-yellow);
  background: linear-gradient(135deg, rgba(255, 237, 0, 0.05) 0%, rgba(193, 14, 33, 0.05) 100%);
}

.match-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: rgba(0, 32, 91, 0.04);
  border-bottom: 1px solid var(--border-color);
}

.match-date {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.match-time {
  color: var(--fb-yellow);
  font-weight: 600;
  font-size: 0.9rem;
}

.match-league {
  color: var(--text-secondary);
  font-size: 0.8rem;
  background: var(--dark-bg);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
}

.match-body {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  gap: 1rem;
}

.team-section {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.team-section.home-team {
  justify-content: flex-end;
  flex-direction: row-reverse;
}

.team-section.away-team {
  justify-content: flex-start;
}

.team-logo {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-color);
}

.team-logo-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-secondary);
  border: 2px solid var(--border-color);
}

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

.team-name {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
  display: block;
}

.team-name.fb-team {
  color: var(--fb-yellow);
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 32, 91, 0.3);
}

.score-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  min-width: 120px;
}

.live-indicator {
  background: linear-gradient(135deg, #dc3545 0%, #ff6b6b 100%);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  animation: pulse 2s infinite;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.score-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.score-home, .score-away {
  min-width: 30px;
  text-align: center;
}

.score-separator {
  color: var(--text-secondary);
  font-weight: 400;
}

.score {
  min-width: 30px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

.match-score-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Maç Özeti Makalesi Stilleri */
.match-summary-article {
  max-width: none;
  width: 100%;
}

.match-summary-article h2 {
  color: var(--fb-yellow);
  border-bottom: 2px solid var(--fb-yellow);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

.article-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
  text-align: justify;
}

.article-content p:first-child {
  font-size: 1.125rem;
  color: var(--text-primary);
}

.article-content strong {
  color: var(--fb-yellow);
  font-weight: 600;
}

.article-tags {
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
  margin-top: 1.5rem;
}

.article-tags p {
  margin-bottom: 0;
  font-style: italic;
}

/* FAQ Stilleri */
.faq-section {
  background: var(--card-bg);
  margin-top: 2rem;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  text-align: center !important;
}

.faq-section .team-info-card h2,
.faq-section .team-info-card .text-2xl,
.team-info-card h2.text-2xl {
  text-align: center !important;
  width: 100% !important;
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.faq-container {
  max-width: none;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  padding: 1.5rem 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 600;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--fb-yellow);
}

.faq-question span:first-child {
  flex: 1;
  padding-right: 1rem;
}

.faq-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--fb-yellow);
  transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Mobile FAQ Stilleri */
@media (max-width: 768px) {
  .faq-question {
    font-size: 1rem;
    padding: 1rem 0;
  }
  
  .faq-answer {
    font-size: 0.9rem;
  }
  
  .faq-item.active .faq-answer {
    padding-bottom: 1rem;
  }
}

/* Future Season & Loading Styles */
.future-season-message {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #F5F5F5 0%, #EAEAEA 100%);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  margin: 2rem 0;
}

.future-season-message h3 {
  color: var(--fb-yellow);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.future-season-message p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.loading-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border-color);
  border-top: 3px solid var(--fb-yellow);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loading-indicator p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-style: italic;
}

/* Mobile Navigation Styles */

.mobile-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 6px;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: var(--fb-yellow);
  transition: all 0.3s ease;
  transform-origin: center;
  border-radius: 2px;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 32, 91, 0.95);
  z-index: 9998;
}

.mobile-menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, #F5F5F5 0%, #EAEAEA 100%);
  transition: transform 0.3s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.mobile-menu-panel .menu-header {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10000;
}

.mobile-menu-panel .close-button {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--fb-yellow);
  border-radius: 50%;
  color: var(--fb-yellow);
  font-size: 36px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-panel .close-button:hover {
  background: var(--fb-yellow);
  color: #000000;
  transform: scale(1.1);
}

.mobile-menu-panel nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.mobile-menu-panel nav a {
  display: block;
  padding: 25px 50px;
  color: #ffffff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border-radius: 12px;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  margin: 10px 0;
}

.mobile-menu-panel nav a:hover {
  background: var(--fb-yellow);
  color: #000000;
  transform: scale(1.05);
  border-color: var(--fb-yellow);
}

/* Mobile Menu Responsive */
@media (max-width: 767px) {
  header {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  
  /* Desktop menüyü gizle */
  .desktop-nav {
    display: none !important;
  }
  
  /* Hamburger butonu göster */
  .mobile-hamburger {
    display: flex !important;
  }
  
  /* Mobil logo boyutu */
  .site-logo {
    height: 60px !important;
    width: 190px !important;
    object-fit: contain !important;
  }
  
  .mobile-menu-panel nav a {
    font-size: 22px;
    padding: 20px 40px;
    min-width: 260px;
  }
}

@media (min-width: 768px) {
  /* Desktop'ta hamburger menüyü gizle */
  .mobile-hamburger {
    display: none !important;
  }
  
  #mobile-menu-overlay {
    display: none !important;
  }
  
  /* Desktop menüyü göster */
  .desktop-nav {
    display: flex !important;
  }
  
  /* Desktop logo boyutu */
  .site-logo {
    height: 72px !important;
    width: 230px !important;
    object-fit: contain !important;
  }
}

@media (max-width: 480px) {
  #mobile-menu {
    width: 260px;
    max-width: 90vw;
  }
  
  .site-logo {
    height: 50px !important;
    width: 160px !important;
    object-fit: contain !important;
  }
}

.match-status-text {
  color: var(--text-secondary);
  font-size: 0.8rem;
  text-align: center;
}

.match-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border-color);
  background: rgba(0, 32, 91, 0.03);
}

.match-detail-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: linear-gradient(135deg, var(--fb-yellow) 0%, var(--fb-navy) 100%);
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.match-detail-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 237, 0, 0.4);
}

.btn-icon {
  font-size: 1rem;
}

.btn-text {
  font-size: 0.9rem;
}

/* Eski stiller - uyumluluk için */
.filters-section {
  background: var(--light-bg);
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
  box-shadow: 0 4px 6px rgba(0, 32, 91, 0.04);
}

.filter-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.filter-item {
  display: flex;
  flex-direction: column;
}

.filter-label {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.filter-select {
  background: var(--dark-bg);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.filter-select:focus {
  outline: none;
  border-color: var(--fb-yellow);
  box-shadow: 0 0 0 2px rgba(255, 237, 0, 0.2);
}

.filter-select option {
  background: var(--dark-bg);
  color: var(--text-primary);
}

.fixtures-container {
  background: var(--light-bg);
  border-radius: 1rem;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 32, 91, 0.06);
}

.fixtures-stats {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  gap: 1rem;
}

.stat-badge {
  background: var(--dark-bg);
  color: var(--fb-yellow);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.fixtures-table-container {
  overflow-x: auto;
}

.fixtures-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 800px;
}

.fixtures-table thead {
  background: rgba(0, 32, 91, 0.06);
}

.fixtures-table th {
  padding: 1rem;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--border-color);
}

.fixtures-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.fixture-row {
  transition: all 0.3s ease;
}

.fixture-row:hover {
  background: rgba(255, 237, 0, 0.05);
}

.fixture-row.fb-match {
  background: rgba(255, 237, 0, 0.1);
  border-left: 4px solid var(--fb-yellow);
}

.fixture-row.fb-match:hover {
  background: rgba(255, 237, 0, 0.15);
}

.date-cell, .time-cell {
  font-weight: 500;
  color: var(--text-primary);
}

.team-cell {
  font-weight: 600;
}

.team-name {
  color: var(--text-primary);
}

.team-name.fb-team {
  color: var(--fb-yellow);
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0, 32, 91, 0.3);
}

.score-cell {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.league-cell {
  color: var(--text-secondary);
  font-size: 0.8125rem;
}

.status-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.status-upcoming {
  background: rgba(108, 117, 125, 0.2);
  color: #6c757d;
}

.status-finished {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
}

.status-live {
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
  animation: pulse 2s infinite;
}

.status-postponed {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}

@keyframes pulse {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

.error-message, .no-data-message {
  padding: 2rem;
  text-align: center;
  color: var(--text-secondary);
}

.error-message h3, .no-data-message h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.sync-link {
  color: var(--fb-yellow);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.sync-link:hover {
  color: var(--fb-navy);
}

/* Text Alignment Utilities */
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

/* Responsive Fikstür Tasarımı */
@media (max-width: 768px) {
  .fixture-controls {
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
  }
  
  .view-toggle {
    justify-content: center;
  }
  
  .filter-controls {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .control-group {
    min-width: 150px;
    flex: 1;
  }
  
  .fixtures-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .fixtures-table {
    min-width: 600px;
  }
  
  .fixtures-table th,
  .fixtures-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.8rem;
  }
  
  .team-name {
    font-size: 0.8rem;
  }
  
  .score-text {
    font-size: 1rem;
  }
  
  .team-icon, .team-icon-placeholder {
    width: 20px;
    height: 20px;
  }
  
  .detail-btn {
    padding: 0.4rem 0.6rem;
    font-size: 0.7rem;
    min-width: 60px;
  }
  
  .detail-btn .material-symbols-outlined {
    font-size: 14px;
  }
  
  /* Eski responsive stiller */
  .filter-tabs {
    flex-direction: row;
    gap: 0.25rem;
  }
  
  .filter-tab {
    min-width: auto;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .tab-text {
    display: none;
  }
  
  .tab-icon {
    font-size: 1.2rem;
  }
  
  .filter-selectors {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .selector-group {
    min-width: auto;
  }
  
  .fixtures-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .match-card {
    margin: 0 -0.5rem;
  }
  
  .match-body {
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
  }
  
  .team-section {
    width: 100%;
    justify-content: center;
    flex-direction: row;
  }
  
  .team-section.home-team {
    flex-direction: row;
  }
  
  .score-section {
    order: -1;
    min-width: auto;
    width: 100%;
  }
  
  .score-display {
    font-size: 1.25rem;
  }
  
  .match-header {
    padding: 0.75rem 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  
  .match-date, .match-time {
    font-size: 0.8rem;
  }
  
  .match-league {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }
  
  .fixtures-stats {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  /* Eski responsive stiller */
  .filter-group {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .fixtures-table th,
  .fixtures-table td {
    padding: 0.75rem 0.5rem;
    font-size: 0.8125rem;
  }
  
  .score-cell {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .modern-filters {
    padding: 1rem;
    margin: 0 -0.5rem 1.5rem;
    border-radius: 0.75rem;
  }
  
  .filter-tabs {
    gap: 0.125rem;
  }
  
  .filter-tab {
    padding: 0.4rem 0.8rem;
  }
  
  .fixtures-grid {
    margin: 0 -1rem;
  }
  
  .match-card {
    border-radius: 0.75rem;
    margin: 0;
  }
  
  .team-logo, .team-logo-img, .team-logo-placeholder {
    width: 40px;
    height: 40px;
  }
  
  .team-name {
    font-size: 0.85rem;
  }
  
  .match-detail-btn {
    padding: 0.6rem;
    font-size: 0.85rem;
  }
}

/* Oyuncular Sayfası Stilleri */
.col-number {
  text-align: center;
  width: 60px;
}

.player-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: var(--fb-yellow);
  color: var(--dark-bg);
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.8rem;
}

.col-photo {
  text-align: center;
  width: 80px;
}

.player-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-color);
}

.player-photo-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--dark-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--text-secondary);
  border: 2px solid var(--border-color);
  margin: 0 auto;
}

.col-name {
  min-width: 200px;
}

.player-name {
  font-weight: 600;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.25rem;
}

.player-nationality {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.col-position {
  text-align: center;
  width: 120px;
}

.position-badge {
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.position-goalkeeper {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}

.position-defender {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
}

.position-midfielder {
  background: rgba(23, 162, 184, 0.2);
  color: #17a2b8;
}

.position-attacker, .position-forward {
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
}

.position-unknown {
  background: rgba(108, 117, 125, 0.2);
  color: #6c757d;
}

.col-age, .col-nationality {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.col-appearances, .col-goals, .col-assists {
  text-align: center;
  width: 80px;
}

.stat-number {
  font-weight: 600;
  color: var(--text-primary);
}

.stat-number.highlight {
  color: var(--fb-yellow);
  font-weight: 700;
}

.col-rating {
  text-align: center;
  width: 80px;
}

.rating-badge {
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.8rem;
}

.rating-good {
  background: rgba(40, 167, 69, 0.2);
  color: #28a745;
}

.rating-average {
  background: rgba(255, 193, 7, 0.2);
  color: #ffc107;
}

.rating-poor {
  background: rgba(220, 53, 69, 0.2);
  color: #dc3545;
}

/* Responsive Oyuncular */
@media (max-width: 768px) {
  .view-toggle {
    flex-wrap: wrap;
    gap: 0.25rem;
  }
  
  .toggle-option {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
  
  .player-photo, .player-photo-placeholder {
    width: 40px;
    height: 40px;
  }
  
  .player-number {
    width: 25px;
    height: 25px;
    font-size: 0.7rem;
  }
  
  .col-name {
    min-width: 150px;
  }
  
  .player-name {
    font-size: 0.85rem;
  }
  
  .player-nationality {
    display: none;
  }
  
  .position-badge {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }
}

@media (max-width: 480px) {
  .toggle-option .toggle-text {
    font-size: 0.7rem;
  }
  
  .fixtures-table th,
  .fixtures-table td {
    padding: 0.5rem 0.25rem;
    font-size: 0.75rem;
  }
  
  .col-nationality {
    display: none;
  }
  
  .col-rating {
    width: 60px;
  }
}

@media (max-width: 480px) {
  nav {
    gap: 0.5rem;
    font-size: 0.6875rem;
  }
  
  .size-10 {
    width: 1.875rem;
    height: 1.875rem;
  }
  
  .h-23 { height: 46px; }
  .w-75 { width: 150px; }
  
  header {
    padding: 0.5rem 0.75rem;
  }
}

/* Takım Bilgisi Sayfası - Kuruluş Amacı */
.founding-purpose {
    margin: 2rem 0;
}

.purpose-quote {
    background: linear-gradient(135deg, var(--fb-navy), var(--fb-yellow));
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    margin: 1rem 0;
}

.purpose-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--fb-yellow);
    font-weight: bold;
    line-height: 1;
}

.purpose-quote p {
    color: white;
    font-weight: 500;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Kurucular Listesi */
.founders-list {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 1.5rem;
    border-left: 4px solid var(--fb-yellow);
}

/* ========================================
   Oyuncu Listesi - Tıklanabilir Link
   ======================================== */
.player-name-link {
    text-decoration: none;
    display: block;
    transition: all 0.2s ease;
}

.player-name-link:hover .player-name {
    color: var(--fb-yellow);
}

.player-name-link:hover {
    transform: translateX(3px);
}

/* ========================================
   Oyuncu Detay Sayfası Stilleri
   ======================================== */
.player-profile-card {
    background: linear-gradient(135deg, #00205B 0%, #002E7A 100%);
    border-radius: 1.25rem;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 20px 60px rgba(0, 32, 91, 0.15);
    border: 1px solid rgba(0, 32, 91, 0.2);
    color: #FFFFFF;
}

.player-profile-card .player-profile-name {
    color: #FFFFFF;
    -webkit-text-fill-color: #FFFFFF;
    background: none;
}

.player-profile-card .detail-label {
    color: rgba(255, 255, 255, 0.6);
}

.player-profile-card .detail-value,
.player-profile-card .nationality-badge {
    color: #FFFFFF;
}

.player-profile-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem;
}

.player-photo-section {
    flex-shrink: 0;
}

.player-profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--fb-yellow);
    box-shadow: 0 8px 32px rgba(255, 237, 0, 0.3);
}

.player-profile-photo-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00205B, #001845);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-secondary);
    border: 4px solid var(--fb-yellow);
}

.player-info-section {
    flex: 1;
}

.player-profile-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, var(--fb-yellow), #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.player-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.position-badge-large {
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.position-badge-large.position-goalkeeper {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.4);
}

.position-badge-large.position-defender {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.4);
}

.position-badge-large.position-midfielder {
    background: rgba(23, 162, 184, 0.2);
    color: #17a2b8;
    border: 1px solid rgba(23, 162, 184, 0.4);
}

.position-badge-large.position-attacker,
.position-badge-large.position-forward {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.4);
}

.nationality-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
}

.player-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.detail-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Sezon İstatistikleri */
.season-stats-section {
    background: var(--light-bg);
    border-radius: 1rem;
    margin-bottom: 2rem;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.season-header {
    background: rgba(0, 32, 91, 0.08);
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.season-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--fb-yellow);
    margin: 0;
}

.stats-overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
    padding: 1.5rem;
}

.stat-card {
    background: rgba(0, 32, 91, 0.06);
    border-radius: 0.75rem;
    padding: 1.25rem 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 237, 0, 0.1);
    border-color: rgba(255, 237, 0, 0.3);
    transform: translateY(-2px);
}

.stat-icon {
    font-size: 1.5rem;
}

.stat-number-large {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
}

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

/* Detaylı İstatistikler */
.detailed-stats {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.subsection-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.detailed-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.detailed-stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(0, 32, 91, 0.06);
    border-radius: 0.5rem;
}

.detailed-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.detailed-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* Turnuva Bazında İstatistikler */
.league-stats {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.league-cell {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.league-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Geri Dön Butonu */
.back-button-container {
    text-align: center;
    margin-top: 2rem;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--fb-yellow), var(--fb-navy));
    color: white;
    text-decoration: none;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 237, 0, 0.3);
}

.back-link {
    color: var(--fb-yellow);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.back-link:hover {
    text-decoration: underline;
}

.no-stats-message {
    background: var(--light-bg);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

/* Responsive - Oyuncu Detay */
@media (max-width: 768px) {
    .player-profile-header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .player-profile-photo,
    .player-profile-photo-placeholder {
        width: 120px;
        height: 120px;
    }
    
    .player-profile-name {
        font-size: 1.75rem;
    }
    
    .player-meta {
        justify-content: center;
    }
    
    .player-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-overview-grid {
        grid-template-columns: repeat(3, 1fr);
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .stat-card {
        padding: 1rem 0.5rem;
    }
    
    .stat-number-large {
        font-size: 1.5rem;
    }
    
    .detailed-stats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .player-profile-photo,
    .player-profile-photo-placeholder {
        width: 100px;
        height: 100px;
    }
    
    .player-profile-name {
        font-size: 1.5rem;
    }
}

/* ========================================
   Son 10 Maç Bölümü
   ======================================== */
.last-matches-section {
    background: var(--light-bg);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--border-color);
}

.last-matches-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.last-matches-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.view-all-link {
    color: var(--fb-yellow);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    color: var(--fb-navy);
}

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

a.last-match-card {
    display: block;
    text-decoration: none;
    background: rgba(0, 32, 91, 0.06);
    border-radius: 0.75rem;
    padding: 1rem;
    border-left: 4px solid var(--border-color);
    transition: all 0.3s ease;
    cursor: pointer;
}

a.last-match-card:hover {
    background: rgba(0, 32, 91, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 32, 91, 0.08);
}

.last-match-card.result-win {
    border-left-color: #28a745;
}

.last-match-card.result-loss {
    border-left-color: #dc3545;
}

.last-match-card.result-draw {
    border-left-color: #ffc107;
}

.last-match-date {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.last-match-teams {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.last-match-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    flex: 1;
    min-width: 0;
}

.last-match-team.fb-team .last-match-team-name {
    color: var(--fb-yellow);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 32, 91, 0.3);
}

.last-match-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.last-match-logo-text {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.last-match-team-name {
    font-size: 0.75rem;
    color: var(--text-primary);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80px;
}

.last-match-score {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.75rem;
    background: rgba(0, 32, 91, 0.08);
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.score-home,
.score-away {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    min-width: 20px;
    text-align: center;
}

.score-separator {
    color: var(--text-secondary);
    font-weight: 400;
}

.last-match-league {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive - Son Maçlar */
@media (max-width: 768px) {
    .last-matches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .last-match-card {
        padding: 0.75rem;
    }
    
    .last-match-logo {
        width: 28px;
        height: 28px;
    }
    
    .last-match-team-name {
        font-size: 0.7rem;
        max-width: 60px;
    }
    
    .score-home,
    .score-away {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .last-matches-grid {
        grid-template-columns: 1fr;
    }
    
    .last-matches-header {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .last-match-team-name {
        max-width: 100px;
    }
}

/* ========================================
   Head to Head (H2H) Bölümü
   ======================================== */
.h2h-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 1.5rem;
}

.h2h-header {
    text-align: center;
    margin-bottom: 1rem;
}

.h2h-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.h2h-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.25rem;
}

.h2h-stat {
    text-align: center;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    background: rgba(0, 32, 91, 0.08);
}

.h2h-stat.fb-win {
    border-bottom: 3px solid #28a745;
}

.h2h-stat.draw {
    border-bottom: 3px solid #ffc107;
}

.h2h-stat.opp-win {
    border-bottom: 3px solid #dc3545;
}

.h2h-stat-num {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-primary);
}

.h2h-stat-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.h2h-matches {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 250px;
    overflow-y: auto;
}

.h2h-match {
    display: grid;
    grid-template-columns: 70px 1fr 60px 1fr;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.75rem;
    background: rgba(0, 32, 91, 0.06);
    border-radius: 0.5rem;
    font-size: 0.8rem;
    border-left: 3px solid var(--border-color);
}

.h2h-match.h2h-win {
    border-left-color: #28a745;
}

.h2h-match.h2h-loss {
    border-left-color: #dc3545;
}

.h2h-match.h2h-draw {
    border-left-color: #ffc107;
}

.h2h-match-date {
    color: var(--text-secondary);
    font-size: 0.7rem;
}

.h2h-match-home,
.h2h-match-away {
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.h2h-match-home {
    text-align: right;
}

.h2h-match-away {
    text-align: left;
}

.h2h-match-home.fb,
.h2h-match-away.fb {
    color: var(--fb-yellow);
    font-weight: 700;
}

.h2h-match-score {
    text-align: center;
    font-weight: 700;
    color: var(--text-primary);
    background: rgba(0, 32, 91, 0.08);
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

/* Responsive H2H */
@media (max-width: 768px) {
    .h2h-stats {
        gap: 1rem;
    }
    
    .h2h-stat {
        padding: 0.5rem 1rem;
    }
    
    .h2h-stat-num {
        font-size: 1.5rem;
    }
    
    .h2h-match {
        grid-template-columns: 60px 1fr 50px 1fr;
        font-size: 0.75rem;
        padding: 0.5rem;
    }
    
    .h2h-match-date {
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .h2h-stats {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .h2h-stat {
        flex: 1;
        min-width: 80px;
        padding: 0.5rem;
    }
    
    .h2h-stat-num {
        font-size: 1.25rem;
    }
    
    .h2h-stat-label {
        font-size: 0.6rem;
    }
    
    .h2h-match {
        grid-template-columns: 50px 1fr 45px 1fr;
        font-size: 0.7rem;
    }
}

/* ========================================
   Bir Sonraki Maç Kartı Stilleri
   ======================================== */
.next-match-section {
    background: linear-gradient(135deg, #00205B 0%, #002E7A 50%, #00205B 100%);
    border-radius: 1.25rem;
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: 0 20px 60px rgba(0, 32, 91, 0.15);
    border: 1px solid rgba(0, 32, 91, 0.2);
    position: relative;
    color: #FFFFFF;
}

/* Lacivert kart içi metin renk override'ları */
.next-match-section .next-match-team-name,
.next-match-section .next-match-date,
.next-match-section .h2h-title,
.next-match-section .h2h-stat-num,
.next-match-section .h2h-match-home,
.next-match-section .h2h-match-away,
.next-match-section .h2h-match-score {
    color: #FFFFFF;
}

.next-match-section .next-match-label {
    color: var(--fb-yellow);
}

.next-match-section .h2h-stat-label,
.next-match-section .h2h-match-date,
.next-match-section .venue-info,
.next-match-section .countdown-item,
.next-match-section .next-match-logo-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.next-match-section .countdown-item strong {
    color: #FFFFFF;
}

.next-match-section .h2h-stat {
    background: rgba(255, 255, 255, 0.1);
}

.next-match-section .h2h-match {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.next-match-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--fb-navy), var(--fb-yellow), var(--fb-navy));
}

.next-match-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    background: rgba(0, 32, 91, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.next-match-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--fb-yellow);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.next-match-league {
    background: rgba(255, 237, 0, 0.15);
    color: var(--fb-yellow);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 237, 0, 0.3);
}

.next-match-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 2rem;
    gap: 1rem;
}

.next-match-team {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    flex: 1;
    max-width: 200px;
}

.next-match-logo {
    width: 90px;
    height: 90px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 32, 91, 0.1));
    transition: transform 0.3s ease;
}

.next-match-logo:hover {
    transform: scale(1.1);
}

.next-match-logo-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00205B, #001845);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-secondary);
    border: 3px solid var(--border-color);
}

.next-match-team-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    line-height: 1.3;
}

.next-match-team-name.fb-highlight {
    color: var(--fb-yellow);
    text-shadow: 0 0 20px rgba(255, 237, 0, 0.3);
}

.next-match-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1rem;
}

.next-match-vs {
    font-size: 1.5rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    letter-spacing: 0.2em;
}

.next-match-datetime {
    text-align: center;
}

.next-match-date {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.next-match-time {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--fb-yellow), #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.next-match-countdown {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.countdown-item {
    background: rgba(255, 237, 0, 0.15);
    color: rgba(255, 255, 255, 0.7);
    padding: 0.35rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 237, 0, 0.25);
}

.countdown-item strong {
    color: #FFFFFF;
    font-weight: 700;
}

.next-match-footer {
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.venue-info {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive - Bir Sonraki Maç */
@media (max-width: 768px) {
    .next-match-section {
        margin-bottom: 1.5rem;
    }
    
    .next-match-header {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem 1.5rem;
        text-align: center;
    }
    
    .next-match-body {
        flex-direction: column;
        padding: 1.5rem 1rem;
        gap: 1.5rem;
    }
    
    .next-match-team {
        flex-direction: row;
        max-width: none;
        width: 100%;
        justify-content: center;
    }
    
    .next-match-team.home {
        order: 1;
    }
    
    .next-match-center {
        order: 0;
        padding: 0;
    }
    
    .next-match-team.away {
        order: 2;
    }
    
    .next-match-logo,
    .next-match-logo-placeholder {
        width: 60px;
        height: 60px;
    }
    
    .next-match-team-name {
        font-size: 1rem;
    }
    
    .next-match-vs {
        display: none;
    }
    
    .next-match-time {
        font-size: 1.75rem;
    }
    
    .next-match-countdown {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .countdown-item {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
}

@media (max-width: 480px) {
    .next-match-logo,
    .next-match-logo-placeholder {
        width: 50px;
        height: 50px;
    }
    
    .next-match-team-name {
        font-size: 0.9rem;
    }
    
    .next-match-date {
        font-size: 0.9rem;
    }
    
    .next-match-time {
        font-size: 1.5rem;
    }
    
    .next-match-label {
        font-size: 0.9rem;
    }
    
    .next-match-league {
        font-size: 0.75rem;
    }
}

/* Language Switcher */
.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border: 1px solid var(--fb-navy);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--fb-navy) !important;
    background: transparent;
    transition: all 0.2s;
    text-decoration: none !important;
}
.lang-switch:hover {
    background: var(--fb-navy);
    color: #FFED00 !important;
}
.lang-switch-mobile {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #FFED00 !important;
    text-decoration: none !important;
}