/* 2026 FIFA World Cup Wiki - Stylesheet */

/* Design System & Root Variables */
:root {
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Outfit', sans-serif;
  
  /* Color Palette */
  --bg-primary: #07090e;
  --bg-secondary: #0d111b;
  --card-bg: rgba(20, 26, 42, 0.65);
  --card-border: rgba(255, 255, 255, 0.08);
  
  --accent-teal: #00f2fe;
  --accent-coral: #ff4b5c;
  --accent-gold: #ffd700;
  
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --shadow-glow-teal: 0 0 20px rgba(0, 242, 254, 0.25);
  --shadow-glow-coral: 0 0 20px rgba(255, 75, 92, 0.25);
  --shadow-glow-gold: 0 0 20px rgba(255, 215, 0, 0.25);
  
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-lg: 16px;
  --border-radius-md: 12px;
}

/* Resets & Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-primary);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Custom Scrollbars */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-teal);
}

/* Glassmorphism Helper */
.glass {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Nav Bar Styling */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 9, 14, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
}

.brand-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.brand-logo .year {
  color: var(--accent-teal);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  position: relative;
  transition: var(--transition-smooth);
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-teal);
  transition: var(--transition-smooth);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: radial-gradient(circle at top right, rgba(0, 242, 254, 0.12), transparent 50%),
              radial-gradient(circle at bottom left, rgba(255, 75, 92, 0.12), transparent 50%),
              var(--bg-secondary);
  padding: 5rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--card-border);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.host-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-primary);
  display: inline-block;
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* Layout Containers */
.main-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
  min-height: 60vh;
}

/* Tab content views switching behavior */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
}

.section-subtitle {
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

/* Stats Dashboard */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat-card {
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
}

.stat-num {
  font-size: 3rem;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

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

.glow-teal { color: var(--accent-teal); text-shadow: var(--shadow-glow-teal); }
.glow-coral { color: var(--accent-coral); text-shadow: var(--shadow-glow-coral); }
.glow-gold { color: var(--accent-gold); text-shadow: var(--shadow-glow-gold); }

/* Dashboard Layout & Spotlight */
.dashboard-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

.glass-container {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
}

.subsection-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.subtitle {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.spotlight-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.spotlight-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.spotlight-card:hover {
  transform: translateX(5px);
  border-color: var(--accent-teal);
  box-shadow: 0 0 15px rgba(0, 242, 254, 0.1);
}

.spotlight-flag {
  font-size: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem;
  border-radius: var(--border-radius-md);
}

.spotlight-info h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.spotlight-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0;
}

.spotlight-info .tag {
  color: var(--accent-teal);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.intro-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intro-card p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.f-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Filters & Search Header */
.filter-header {
  margin-bottom: 2.5rem;
}

.search-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1rem 1.5rem;
  margin-top: 1rem;
}

.search-box {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  padding: 0.6rem 1rem;
  border-radius: 8px;
  width: 100%;
  max-width: 450px;
}

.search-icon {
  margin-right: 0.75rem;
  font-size: 1rem;
}

.search-box input {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  width: 100%;
  outline: none;
}

.search-box input::placeholder {
  color: var(--text-muted);
}

.selectors {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.selectors select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--card-border);
  color: var(--text-primary);
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  outline: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.selectors select:hover {
  border-color: rgba(255, 255, 255, 0.25);
}

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

.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 1px solid var(--card-border);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* Teams Grid & Cards */
.teams-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.team-card {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  cursor: pointer;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-lg);
  transition: var(--transition-smooth);
}

.team-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.flag-icon {
  font-size: 2rem;
}

.group-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.08);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  color: var(--text-secondary);
}

.team-name {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 700;
  transition: var(--transition-smooth);
}

.team-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 1rem;
}

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

.meta-lbl {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.meta-val {
  font-size: 0.95rem;
  font-weight: 600;
}

.team-card-footer {
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.75rem;
}

/* Custom interactive team styling on hover */
.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--team-color, var(--accent-teal));
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 
              0 0 10px rgba(255, 255, 255, 0.05);
}

.team-card:hover .team-name {
  color: var(--accent-teal);
}

.team-card:hover::before {
  width: 6px;
}

.no-results {
  grid-column: 1 / -1;
  padding: 3rem;
  text-align: center;
  color: var(--text-secondary);
}

/* Groups View */
.groups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.group-board {
  padding: 1.5rem;
}

.group-board-header {
  border-bottom: 2px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}

.group-board-header h3 {
  font-size: 1.35rem;
  color: var(--accent-teal);
}

.group-table {
  width: 100%;
  border-collapse: collapse;
}

.group-table th {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  padding: 0.5rem;
  text-align: center;
}

.group-table td {
  padding: 0.65rem 0.5rem;
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  text-align: center;
}

.group-table tr:last-child td {
  border-bottom: none;
}

.clickable-row {
  cursor: pointer;
  transition: var(--transition-smooth);
}

.clickable-row:hover {
  background: rgba(255, 255, 255, 0.05);
}

.confed-badge {
  font-size: 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-weight: 500;
}

/* Host Cities Grid */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.city-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition-smooth);
}

.city-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.15);
}

.city-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.city-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
}

.country-badge {
  font-size: 0.8rem;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.3rem 0.6rem;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.city-body {
  margin-bottom: 1.25rem;
}

.city-body p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
}

.city-footer {
  font-size: 0.8rem;
  color: var(--accent-teal);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 0.75rem;
  font-weight: 600;
}

/* Modal Popup Window */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: 90%;
  max-width: 800px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  animation: modalScale 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes modalScale {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-hero-banner {
  height: 180px;
  background-size: cover;
  background-position: center;
  margin: -2.5rem -2.5rem 1.5rem -2.5rem;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom: 1px solid var(--card-border);
  opacity: 0.85;
}

.close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--card-border);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition-smooth);
}

.close-btn:hover {
  background: rgba(0, 0, 0, 0.7);
  color: var(--accent-teal);
}

.modal-header-hero {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 1.5rem;
}

.modal-flag-hero {
  font-size: 4rem;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.75rem;
  border-radius: var(--border-radius-md);
}

.modal-title-area h2 {
  font-size: 2.5rem;
  line-height: 1.1;
}

.modal-title-area .nickname {
  color: var(--accent-teal);
  font-style: italic;
  font-size: 1.1rem;
  margin-top: 0.25rem;
}

.modal-body-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2.5rem;
}

.modal-details-panel h3, .modal-sidebar-panel h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-row .lbl {
  color: var(--text-secondary);
}

.detail-row .val {
  font-weight: 600;
}

.glass-accent {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius-md);
}

.spotlight-player {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem;
}

.player-icon {
  font-size: 2rem;
  background: rgba(255, 215, 0, 0.1);
  padding: 0.5rem;
  border-radius: 50%;
}

.group-mates {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.group-mate-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.group-mate-row .rank-tag {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* Footer */
.footer {
  margin-top: 5rem;
  border-top: 1px solid var(--card-border);
  padding: 3rem 2rem;
  text-align: center;
  background: var(--bg-secondary);
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.footer-hosts {
  font-size: 1rem;
  letter-spacing: 0.05em;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .dashboard-layout {
    grid-template-columns: 1fr;
  }
  .modal-body-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .nav-container {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  .nav-menu {
    gap: 1.25rem;
  }
  .search-filter-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .selectors {
    justify-content: space-between;
  }
  .selectors select {
    flex: 1;
  }
}

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

.btn-lang {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--card-border);
  color: var(--text-primary);
  font-family: var(--font-primary);
  font-size: 0.8rem;
  padding: 0.4rem 0.85rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.btn-lang:hover {
  background: var(--accent-teal);
  color: #07090e;
  border-color: var(--accent-teal);
}

.btn-theme {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--card-border);
  color: var(--text-primary);
  font-size: 1rem;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.btn-theme:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Light Theme Variable Overrides */
body.light-theme {
  --bg-primary: #f8fafc;
  --bg-secondary: #f1f5f9;
  --card-bg: rgba(255, 255, 255, 0.75);
  --card-border: rgba(0, 0, 0, 0.08);
  
  --accent-teal: #0284c7; /* Darker blue/teal for readability */
  --accent-coral: #e11d48;
  --accent-gold: #b45309; /* Champion amber/gold */
  
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-muted: #64748b;
  
  --shadow-glow-teal: 0 0 15px rgba(2, 132, 199, 0.15);
  --shadow-glow-coral: 0 0 15px rgba(225, 29, 72, 0.15);
  --shadow-glow-gold: 0 0 15px rgba(180, 83, 9, 0.15);
}

body.light-theme .navbar {
  background: rgba(248, 250, 252, 0.85);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

body.light-theme .hero-section {
  background: radial-gradient(circle at top right, rgba(2, 132, 199, 0.08), transparent 50%),
              radial-gradient(circle at bottom left, rgba(225, 29, 72, 0.08), transparent 50%),
              #f1f5f9;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

body.light-theme .hero-content h1 {
  background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.light-theme .host-badge {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #334155;
}

body.light-theme .f-badge {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

body.light-theme .search-box, 
body.light-theme .selectors select {
  background: rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-theme .selectors select option {
  background: #ffffff;
  color: #0f172a;
}

body.light-theme .btn-secondary {
  background: rgba(0, 0, 0, 0.05);
  color: #0f172a;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

body.light-theme .btn-secondary:hover {
  background: rgba(0, 0, 0, 0.1);
}

body.light-theme .spotlight-card:hover {
  background: #ffffff;
  border-color: var(--accent-teal);
  box-shadow: 0 4px 20px rgba(2, 132, 199, 0.12);
}

body.light-theme .team-card:hover {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body.light-theme .group-board {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

body.light-theme .clickable-row:hover {
  background: rgba(0, 0, 0, 0.02);
}

body.light-theme .confed-badge {
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

body.light-theme .city-card:hover {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

body.light-theme .modal-overlay {
  background: rgba(15, 23, 42, 0.4);
}

body.light-theme .modal-content {
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

body.light-theme .close-btn {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #0f172a;
}

body.light-theme .close-btn:hover {
  background: #f1f5f9;
  color: var(--accent-teal);
}

body.light-theme .detail-row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.light-theme .glass-accent {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

body.light-theme .group-mate-row {
  background: rgba(0, 0, 0, 0.02);
}

body.light-theme .footer {
  background: #f1f5f9;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
