* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-black: #000000;
  --primary-white: #ffffffe5;
  --dark-bg: #0a0a0a;
  --card-bg: #1a1a1a;
  --accent-red: #e31e24;
  --accent-red-dark: #b71c1c;
  --accent-red-light: #ff5252;
  --accent-gold: #FFD700;
  --accent-silver: #c0c0c0e1;
  --text-primary: #ffffffb8;
  --text-secondary: #b0b0b0e6;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Tema değişimi için açık tema değişkenleri */
[data-theme="light"] {
  --dark-bg: #f5f5f5;
  --card-bg: #ffffff;
  --text-primary: #000000;
  --text-secondary: #666666;
  /* Renkleri çok bozmamak için beyaz/siyahı koruyoruz */
  --primary-black: #000000;
  --primary-white: #ffffff;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
    linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
}

.animated-bg::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background:
    radial-gradient(circle at 20% 50%, rgba(227, 30, 36, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(227, 30, 36, 0.03) 0%, transparent 50%);
  animation: bgMove 20s ease infinite;
}

@keyframes bgMove {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-50px, -50px);
  }
}
/* HEADER sağ tarafı (dil + menü) */
.header-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* Dil seçiciyi eski tema butonu gibi yap */
.language-selector {
  position: relative;
}

.language-selector select {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  transition: var(--transition);
  appearance: none;
  padding: 0;
}

/* Ok işareti istemiyoruz */
.language-selector::after {
  content: "";
}

.language-selector select:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.4);
}

.language-selector select option {
  background: #1a1a1a;
  color: var(--primary-white);
}


header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(26, 26, 26, 0.95) 100%);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid var(--accent-red);
  box-shadow: 0 4px 30px rgba(227, 30, 36, 0.3);
  transition: var(--transition);
}

header.scrolled {
  padding: 0.5rem 0;
  background: rgba(0, 0, 0, 0.98);
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
}

.logo {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-white) 0%, #d0d0d0c4 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
  color: var(--primary-black);
  position: relative;
  transition: var(--transition);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.logo img {
  /* Resmin, onu çevreleyen 70px'lik yuvarlak alanın dışına taşmamasını sağlar */
  max-width: 100%;
  max-height: 100%;

  /* Eğer resminiz kare ise, yuvarlak alana tam oturması için: */
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Resmin en boy oranını koruyarak sığdır */

  /* BJK yazısı ile çakışmaması için resminiz sadece bu alanı kaplamalıdır */
}

.logo::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: conic-gradient(from 180deg, var(--primary-white), var(--primary-black), var(--primary-white));
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.logo:hover {
  transform: scale(1.1) rotate(360deg);
  box-shadow: 0 0 50px var(--primary-white);
}

.logo:hover::after {
  opacity: 1;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

header h1 {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary-white), var(--accent-silver));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

nav a {
  padding: 0.875rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 12px;
  transition: var(--transition);
  border: 2px solid transparent;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

nav a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--primary-white), var(--accent-silver));
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

nav a:hover,
nav a.active {
  color: var(--primary-black);
  border-color: var(--primary-white);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.5);
}

nav a:hover::before,
nav a.active::before {
  opacity: 1;
}

img {
  max-width: 100%;
  height: auto;
}

@media(max-width: 480px) {

  .card,
  .player-card,
  .info-card {
    padding: 1.2rem;
  }

  .player-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }
}

table {
  font-size: 0.85rem;
}

.container {
  max-width: 1400px;
  margin: 3rem auto;
  padding: 0 2rem;
}

.mobile-btn {
  position: relative;
  z-index: 10000;
}

nav ul li a {
  padding: 10px 15px;
  display: block;
}

.hero {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(42, 42, 42, 0.9) 100%);
  padding: 5rem 3rem;
  border-radius: 30px;
  text-align: center;
  margin-bottom: 3rem;
  border: 3px solid var(--primary-white);
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  animation: fadeIn 1s ease-out;
}

.hero::before {
  content: '⚫⚪';
  position: absolute;
  font-size: 300px;
  opacity: 0.02;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

.hero h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 1.5rem;
  font-weight: 900;
  position: relative;
  text-shadow: 0 4px 20px rgba(255, 255, 255, 0.6);
  animation: fadeInUp 1s ease-out;
}

.hero p {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  opacity: 0.95;
  position: relative;
  animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.stats-banner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
  border-radius: 20px;
  border: 2px solid var(--primary-white);
  animation: slideUp 0.8s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-box {
  text-align: center;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-box:hover {
  transform: translateY(-5px) scale(1.05);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
  border-color: var(--primary-white);
}

.stat-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-white);
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.mobile-menu-btn {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--primary-white);
}

@media(max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    background: #111;
    padding: 1rem 0;
    border-radius: 10px;
  }

  nav ul.active {
    display: flex;
  }
}


.card {
  background: linear-gradient(135deg, var(--card-bg) 0%, #252525 100%);
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInCard 0.6s ease-out forwards;
  display: flex;
  /* Resim için eklendi */
  flex-direction: column;
  /* Resim için eklendi */
}

@keyframes fadeInCard {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s;
}

.card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-white);
  box-shadow: 0 15px 50px rgba(255, 255, 255, 0.4);
}

.card:hover::before {
  left: 100%;
}

.card h3,
.card h4 {
  color: var(--primary-white);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  border-bottom: 3px solid var(--primary-white);
  padding-bottom: 0.75rem;
}

.card p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* EFSANE OYUNCU RESMİ STİLİ */
.oyuncu-resmi {
  width: 100%;
  /* Kartın tam genişliğini kapla */
  height: 250px;
  /* Sabit bir yükseklik ver */
  object-fit: cover;
  /* Resmi kırparak alanı doldur, en boy oranını koru */
  border-radius: 15px;
  /* Kart köşeleriyle uyumlu yuvarlatma */
  margin-bottom: 1.5rem;
  /* Resim ile metin arasına boşluk koy */
  filter: grayscale(0.2) contrast(1.1);
  /* Resme hafif bir karartma ve kontrast ekle */
  transition: transform 0.4s ease-out;
  /* Hover efekti için geçiş ekle */
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.3);
  /* Hafif beyaz gölge */
}

.card:hover .oyuncu-resmi {
  transform: scale(1.02);
  /* Kart üzerine gelince resmi hafifçe büyüt */
  filter: grayscale(0) contrast(1.2);
  /* Rengi ve kontrastı artırarak öne çıkar */
}


/* Player Cards */
.player-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.player-card {
  background: linear-gradient(135deg, var(--primary-black), #2a2a2a);
  padding: 2rem 1.5rem;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeInCard 0.6s ease-out forwards;
}

.player-card::after {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  opacity: 0;
  transition: var(--transition);
}

.player-card:hover {
  transform: translateY(-10px) scale(1.05);
  border-color: var(--primary-white);
  box-shadow: 0 15px 50px rgba(255, 255, 255, 0.5);
}

.player-card:hover::after {
  opacity: 1;
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}

.player-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 10px rgba(255, 255, 255, 0.5));
}

.player-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  color: var(--primary-white);
  border: none;
  padding: 0;
}

.player-value {
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--primary-white), var(--accent-silver));
  color: var(--primary-black);
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.5);
}

/* Info Cards */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.info-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.5));
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid var(--primary-white);
  transition: var(--transition);
  animation: fadeInCard 0.6s ease-out forwards;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.7));
}

.info-card h4 {
  color: var(--primary-white);
  font-size: 1.4rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--primary-white);
  padding-bottom: 0.5rem;
}

.info-card p {
  color: var(--text-secondary);
  line-height: 1.8;
}

.info-card strong {
  color: var(--primary-white);
}

/* Timeline */
.timeline {
  position: relative;
  padding: 3rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, transparent, var(--primary-white), transparent);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  opacity: 0;
  animation: fadeInTimeline 0.8s ease-out forwards;
}

@keyframes fadeInTimeline {
  to {
    opacity: 1;
  }
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
}

.timeline-content {
  width: 45%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.8));
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid var(--primary-white);
  transition: var(--transition);
  position: relative;
}

.timeline-content::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: var(--primary-white);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 20px var(--primary-white);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    transform: translateY(-50%) scale(1);
  }

  50% {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 0 30px var(--primary-white);
  }
}

.timeline-item:nth-child(odd) .timeline-content::before {
  left: -60px;
}

.timeline-item:nth-child(even) .timeline-content::before {
  right: -60px;
}

.timeline-content:hover {
  transform: scale(1.05);
  border-color: var(--accent-silver);
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.5);
}

.timeline-year {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-white);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}
@media (max-width: 900px) {
  .timeline-item {
    flex-direction: column !important;
  }
  .timeline-content {
    width: 100%;
  }
}


/* Table Styles */
.table-container {
  overflow-x: auto;
  margin: 2rem 0;
  border-radius: 20px;
  border: 2px solid var(--primary-white);
  animation: fadeIn 0.8s ease-out;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(26, 26, 26, 0.9));
}

th,
td {
  padding: 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

th {
  background: linear-gradient(135deg, var(--primary-white), var(--accent-silver));
  font-weight: 700;
  color: var(--primary-black);
  text-transform: uppercase;
  letter-spacing: 1px;
}

tr {
  transition: var(--transition);
}

tr:hover {
  background: rgba(255, 255, 255, 0.1);
}

.highlight-row {
  background: rgba(255, 255, 255, 0.2);
  font-weight: 700;
  border-left: 4px solid var(--primary-white);
}

/* News Ticker */
.news-ticker {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  border: 2px solid var(--primary-white);
  border-radius: 15px;
  padding: 1rem 2rem;
  margin-bottom: 2rem;
  overflow: hidden;
  position: relative;
}

.news-ticker-content {
  display: flex;
  animation: scroll 30s linear infinite;
}

.news-ticker-content:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.news-item {
  white-space: nowrap;
  padding: 0 3rem;
  font-weight: 600;
  color: var(--primary-white);
}

/* Form */
.form-container {
  max-width: 700px;
  margin: 0 auto;
}

form {
  background: linear-gradient(135deg, var(--card-bg), #252525);
  padding: 3rem;
  border-radius: 25px;
  border: 2px solid var(--primary-white);
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.3);
}

label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--primary-white);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.5);
  color: var(--primary-white);
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-white);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

textarea {
  min-height: 180px;
  resize: vertical;
}

button {
  width: 100%;
  padding: 1.25rem 2rem;
  background: linear-gradient(135deg, var(--primary-white), var(--accent-silver));
  color: var(--primary-black);
  border: none;
  border-radius: 15px;
  font-size: 1.125rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.5);
}

button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.7);
  background: linear-gradient(135deg, var(--accent-silver), var(--primary-white));
}

button:active {
  transform: translateY(-1px);
}

.page-content {
  display: none;
  animation: fadeIn 0.6s ease-out;
}

.page-content.active {
  display: block;
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  margin-bottom: 2.5rem;
  text-align: center;
  font-weight: 900;
  position: relative;
  padding-bottom: 1rem;
  color: var(--primary-white);
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--primary-white), transparent);
  border-radius: 2px;
}

footer {
  background: var(--primary-black);
  padding: 3rem 2rem;
  margin-top: 5rem;
  border-top: 3px solid var(--primary-white);
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.social-links a {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.2);
  color: var(--primary-white);
  text-decoration: none;
  border-radius: 15px;
  transition: var(--transition);
  border: 2px solid var(--primary-white);
  font-weight: 600;
}

.social-links a:hover {
  background: var(--primary-white);
  color: var(--primary-black);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.6);
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-black);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

.loading.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  font-size: 5rem;
  animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-white);
  color: var(--primary-black);
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.5);
  z-index: 999;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.8);
}

.mt-4 {
  margin-top: 2rem;
}

.alert-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.5));
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid var(--primary-white);
  margin-bottom: 2rem;
  text-align: center;
}

.alert-box h4 {
  color: var(--primary-white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.flag-icon {
  width: 30px;
  height: 20px;
  margin-bottom: 1rem;
  border-radius: 3px;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
  }

  nav a {
    width: 100%;
  }

  .hero {
    padding: 3rem 1.5rem;
  }

  .stats-banner {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: column !important;
  }

  .timeline-content {
    width: 100%;
    margin-left: 40px;
  }

  .timeline-item:nth-child(odd) .timeline-content::before,
  .timeline-item:nth-child(even) .timeline-content::before {
    left: -60px;
  }

  .player-grid,
  .info-grid {
    grid-template-columns: 1fr;
  }
}

.search-container {
  position: relative;
  max-width: 500px;
  margin: 2rem auto;
}

.search-input {
  width: 100%;
  padding: 1rem 3rem 1rem 1.5rem;
  border-radius: 15px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.5);
  color: var(--text-primary);
  font-size: 1rem;
  transition: var(--transition);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-white);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.search-icon {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: var(--text-secondary);
  pointer-events: none;
}

.search-results {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.98), rgba(0, 0, 0, 0.98));
  border: 2px solid var(--primary-white);
  border-radius: 15px;
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  display: none;
}

.search-results.active {
  display: block;
  animation: slideDown 0.3s ease-out;
}

/* Resmi link kartları (bjk.com.tr/mobil tarzı) */
.official-links {
  margin: 2rem 0 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.official-link {
  display: flex;
  align-items: center;
  padding: 1rem 1.3rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.08),
      rgba(0, 0, 0, 0.9));
  text-decoration: none;
  color: var(--text-primary);
  transition: var(--transition);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
}

.official-link:hover {
  transform: translateY(-4px);
  border-color: var(--primary-white);
  box-shadow: 0 14px 35px rgba(255, 255, 255, 0.25);
}

.official-link-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle, #000 0%, #202020 60%, #000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  font-size: 1.3rem;
}

.official-link-text {
  display: flex;
  flex-direction: column;
}

.official-link-title {
  font-weight: 700;
  color: var(--primary-white);
  font-size: 0.95rem;
}

.official-link-sub {
  font-size: 0.8rem;
  color: var(--text-secondary);
}


/* Tesis & stadyum kartları (foto + harita butonu) */
.facility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.facility-card {
  background: linear-gradient(135deg, var(--card-bg), #101010);
  border-radius: 22px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
}

.facility-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.facility-content {
  padding: 1.3rem 1.5rem 1.6rem;
}

.facility-content h4 {
  margin-bottom: 0.7rem;
  font-size: 1.1rem;
  border-bottom: none;
}

.facility-meta {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.facility-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.facility-map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: var(--primary-black);
  background: linear-gradient(135deg, var(--primary-white), var(--accent-silver));
  font-weight: 600;
  transition: var(--transition);
}

.facility-map-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.35);
}

.facility-tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  border: 1px dashed rgba(255, 255, 255, 0.4);
  color: var(--accent-silver);
}

/* Küçük ekran düzeni */
@media (max-width: 768px) {
  .official-links {
    grid-template-columns: 1fr;
  }

  .facility-grid {
    grid-template-columns: 1fr;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-result-item {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.search-result-flag {
  width: 30px;
  height: 20px;
  border-radius: 3px;
  object-fit: cover;
}

.search-result-info {
  flex: 1;
}

.search-result-name {
  font-weight: 700;
  color: var(--primary-white);
  margin-bottom: 0.25rem;
}

.search-result-position {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.no-results {
  padding: 2rem;
  text-align: center;
  color: var(--text-secondary);
}

/* === Yeni İstatistik Sayfası Layout'u === */

.stats-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.6fr);
  gap: 2rem;
  margin-bottom: 3rem;
  align-items: stretch;
}

@media (max-width: 992px) {
  .stats-layout {
    grid-template-columns: 1fr;
  }
}

.stats-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.stats-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Saha */
.stats-pitch {
  width: 100%;
  border-radius: 24px;
  background: radial-gradient(circle at 50% 0%, #3ddc84 0%, #1b5e20 45%, #0b3d0b 100%);
  padding: 1.2rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
}

.pitch-outer {
  border-radius: 20px;
  border: 3px solid #ffffff;
  padding: 0.8rem;
}

.pitch-inner {
  position: relative;
  width: 100%;
  padding-top: 150%;
  /* oran koruma */
  border-radius: 16px;
  border: 2px solid #ffffff;
  box-sizing: border-box;
  overflow: hidden;
}

.pitch-inner::before,
.pitch-inner::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(255, 255, 255, 0.9);
}

/* orta çizgi */
.pitch-halfway {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-50%);
}

.pitch-center-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22%;
  height: 22%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%);
}

.pitch-box {
  position: absolute;
  left: 18%;
  right: 18%;
  height: 18%;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 18px;
}

.pitch-box-top {
  top: 0;
  border-bottom: none;
}

.pitch-box-bottom {
  bottom: 0;
  border-top: none;
}

.pitch-goal {
  position: absolute;
  left: 40%;
  right: 40%;
  height: 4%;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 8px;
}

.pitch-goal-top {
  top: 0;
  border-bottom: none;
}

.pitch-goal-bottom {
  bottom: 0;
  border-top: none;
}

.player-chip {
  position: absolute;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  padding: 0.15rem 0.7rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
  border: 1px solid rgba(255, 255, 255, 0.7);
  white-space: nowrap;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.8);
}

.player-chip:hover {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.6);
}

.stats-pitch-caption {
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.8;
  margin-top: 0.4rem;
}

/* Sağ taraftaki kartlar ve tablolar */
.stats-card {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 20px;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
}

.stats-card h4 {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stats-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.stats-table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.02);
}

.stats-table td,
.stats-table th {
  padding: 0.45rem 0.4rem;
}

.stats-table th {
  font-weight: 600;
  font-size: 0.85rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.stats-table.league th {
  text-align: center;
}

.stats-table.league td {
  text-align: center;
}

.stats-table .align-right {
  text-align: right;
  font-weight: 600;
}

.stats-table .highlight-row {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.1),
      rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.stats-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .stats-mini-grid {
    grid-template-columns: 1fr;
  }
}

.stats-mini-grid .mini-box h5 {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
  opacity: 0.9;
}

.stats-mini-grid .mini-box p {
  font-size: 0.85rem;
  opacity: 0.85;
}

/* === Son maç kadrosu layout === */

.last-match-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .last-match-layout {
    grid-template-columns: 1fr;
  }
}

.last-match-left {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.last-match-info {
  font-size: 0.9rem;
}

.match-league {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  opacity: 0.8;
}

.match-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 0.15rem;
}

.match-meta {
  opacity: 0.75;
  margin-top: 0.18rem;
}

.match-goals {
  margin-top: 0.35rem;
  font-weight: 500;
}

.match-formation {
  margin-top: 0.15rem;
  opacity: 0.8;
}

/* Mavi saha */

.last-pitch {
  width: 100%;
  padding: 1.1rem;
  border-radius: 20px;
  background: radial-gradient(circle at 50% 0%, #1a8cff 0%, #145a9c 40%, #021a33 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.75);
}

.last-pitch-inner {
  position: relative;
  width: 100%;
  padding-top: 140%;
  border-radius: 16px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  overflow: hidden;
  box-sizing: border-box;
}

.last-pitch-inner::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.7);
}

.pitch-center-circle-blue {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26%;
  height: 26%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  transform: translate(-50%, -50%);
}

.pitch-box-blue {
  position: absolute;
  left: 12%;
  right: 12%;
  height: 20%;
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.pitch-box-blue.top {
  top: 0;
  border-bottom: none;
}

.pitch-box-blue.bottom {
  bottom: 0;
  border-top: none;
}

.player-chip-blue {
  position: absolute;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.78);
  color: #ffffff;
  padding: 0.18rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  font-size: 0.7rem;
  white-space: nowrap;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.85);
}

.player-chip-blue span.number {
  font-weight: 600;
  margin-right: 0.15rem;
}

.player-chip-blue span.name {
  font-weight: 500;
}

/* Sağ taraftaki kartlar */

.last-match-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.last-match-card {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 18px;
  padding: 1.1rem 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.85);
}

.last-match-card h4 {
  margin-bottom: 0.6rem;
  font-size: 1rem;
}

.last-xi-list {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.86rem;
}

.last-xi-list li {
  padding: 0.22rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.last-xi-list li:last-child {
  border-bottom: none;
}

.bench-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.bench-table th,
.bench-table td {
  padding: 0.35rem 0.25rem;
}

.bench-table th {
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
}

.bench-table tbody tr:nth-child(odd) {
  background: rgba(255, 255, 255, 0.03);
}

.coach-line {
  margin-top: 0.6rem;
  font-size: 0.85rem;
  opacity: 0.9;
}

/* Puan durumu butonu (anasayfa başlığı) */

.standings-link-button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.standings-link-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #ffffff, #bbbbbb);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.standings-link-button:hover::after {
  transform: scaleX(1);
}

/* === Transfermarkt tarzı kulüp genel görünüm === */

.tm-overview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  align-items: stretch;
}

@media (max-width: 992px) {
  .tm-overview-layout {
    grid-template-columns: 1fr;
  }
}

.tm-overview-card {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 20px;
  padding: 1.3rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.tm-overview-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tm-header-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.tm-club-main {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.tm-club-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 12px;
  background: #ffffff;
  padding: 0.25rem;
}

.tm-club-name {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.tm-league-line {
  font-size: 0.8rem;
  opacity: 0.8;
}

.tm-market-value {
  text-align: right;
}

.tm-market-value .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

.tm-market-value .value {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 0.1rem;
}

.tm-market-value .sub {
  font-size: 0.75rem;
  opacity: 0.75;
}

.tm-badges-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.tm-badge {
  flex: 1 1 90px;
  min-width: 80px;
  padding: 0.5rem 0.6rem;
  border-radius: 12px;
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.8));
  text-align: center;
}

.tm-badge .badge-number {
  font-size: 1.1rem;
  font-weight: 700;
}

.tm-badge .badge-label {
  font-size: 0.75rem;
  opacity: 0.85;
}

.tm-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 1rem;
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .tm-info-grid {
    grid-template-columns: 1fr;
  }
}

.tm-info-item {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
  padding-bottom: 0.25rem;
}

.tm-info-item .label {
  opacity: 0.8;
}

.tm-info-item .value {
  font-weight: 600;
}

/* Sağ tarafta puan durumu kartı */
.tm-overview-right h4 {
  margin-bottom: 0.6rem;
}

.tm-note {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  opacity: 0.75;
}

/* Oyuncu istatistikleri tablosu */

.player-stats-wrapper {
  margin-top: 1rem;
}

.player-stats-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  font-size: 0.85rem;
}

.player-search-input {
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.85rem;
  min-width: 180px;
}

.player-search-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.player-stats-scroll {
  width: 100%;
  overflow-x: auto;
}

.player-stats-table th,
.player-stats-table td {
  white-space: nowrap;
  text-align: center;
}

.player-stats-table th:nth-child(2),
.player-stats-table td:nth-child(2) {
  text-align: left;
}

/* === YEŞİL SAHA TASARIMI === */
.last-pitch {
  width: 100%;
  max-width: 520px;
  aspect-ratio: 3/4.5;
  background: #1a7f2e;
  /* Ana yeşil */
  border-radius: 20px;
  padding: 10px;
  position: relative;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  margin: auto;
}

.last-pitch-inner {
  width: 100%;
  height: 100%;
  border: 3px solid #ffffff;
  border-radius: 18px;
  position: relative;
  background: repeating-linear-gradient(90deg,
      #19822d 0px,
      #19822d 25px,
      #1c8d33 25px,
      #1c8d33 50px);
  /* Çim hattı efekti */
}

/* SAHA ÇİZGİLERİ */
.pitch-center-circle-blue {
  width: 85px;
  height: 85px;
  border: 3px solid #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pitch-box-blue.top,
.pitch-box-blue.bottom {
  width: 65%;
  height: 80px;
  border: 3px solid #ffffff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.pitch-box-blue.top {
  top: 5%;
}

.pitch-box-blue.bottom {
  bottom: 5%;
}

/* OYUNCU BALONCUKLARI */
.player-chip-blue {
  position: absolute;
  padding: 3px 10px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.85);
  color: #000;
  font-weight: 600;
  font-size: 0.78rem;
  display: flex;
  gap: 4px;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.player-chip-blue .number {
  font-weight: 900;
}

.search-result-name {
  font-size: 16px;
  font-weight: bold;
  color: white;
}

.search-result-position {
  font-size: 13px;
  opacity: 0.8;
}

/* ===================== ARAMA ÇUBUĞU STİLLERİ ===================== */
.search-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto 2rem auto;
  z-index: 100;
}

.search-input {
  width: 100%;
  padding: 1rem 3.5rem 1rem 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--primary-white);
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-white);
  background: rgba(0, 0, 0, 0.8);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

.search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.search-icon {
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  pointer-events: none;
  opacity: 0.7;
}

.search-results {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.98), rgba(26, 26, 26, 0.98));
  border: 2px solid var(--primary-white);
  border-radius: 15px;
  max-height: 400px;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  z-index: 1000;
}

.search-results.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-result-item:last-child {
  border-bottom: none;
}

.search-result-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.search-result-flag {
  width: 32px;
  height: 22px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.search-result-info {
  flex: 1;
}

.no-results {
  padding: 2rem;
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ===================== FUTBOL SAHASI STİLLERİ ===================== */
.football-field-section {
  margin: 4rem 0;
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(26, 26, 26, 0.5));
  border-radius: 30px;
  border: 2px solid var(--primary-white);
}

.football-field {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 2/3;
  margin: 0 auto;
  background: linear-gradient(180deg, #2d5016 0%, #1a3d0f 50%, #2d5016 100%);
  border-radius: 15px;
  border: 3px solid var(--primary-white);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

/* Çim desen efekti */
.football-field::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg,
      rgba(255, 255, 255, 0.03) 0px,
      transparent 2px,
      transparent 40px,
      rgba(255, 255, 255, 0.03) 42px);
  pointer-events: none;
}

/* Saha çizgileri */
.field-lines {
  position: absolute;
  inset: 0;
}

/* Orta saha çizgisi */
.field-lines::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-50%);
}

/* Orta saha dairesi */
.field-lines::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

/* Ceza sahaları */
.penalty-area {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 15%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-top: none;
}

.penalty-area.top {
  top: 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.8);
}

.penalty-area.bottom {
  bottom: 0;
  border-top: 2px solid rgba(255, 255, 255, 0.8);
}

/* Kale alanları */
.goal-area {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 35%;
  height: 8%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  border-top: none;
}

.goal-area.top {
  top: 0;
}

.goal-area.bottom {
  bottom: 0;
  border-top: none;
  border-bottom: none;
}

/* Oyuncu pozisyonları */
.player-marker {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

.player-marker:hover {
  transform: scale(1.15);
  z-index: 50;
}

.player-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #000000, #333333);
  border: 3px solid var(--primary-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--primary-white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
  position: relative;
}

.player-number {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 22px;
  height: 22px;
  background: var(--primary-white);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  border: 2px solid #000;
}

.player-name {
  background: rgba(0, 0, 0, 0.9);
  color: var(--primary-white);
  padding: 0.4rem 0.8rem;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid var(--primary-white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

/* Detay kartı (hover'da görünür) */
.player-detail {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.98), rgba(26, 26, 26, 0.98));
  border: 2px solid var(--primary-white);
  border-radius: 15px;
  padding: 1rem 1.25rem;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
  z-index: 100;
}

.player-marker:hover .player-detail {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-5px);
}

.player-detail-name {
  font-size: 1rem;
  font-weight: 900;
  color: var(--primary-white);
  margin-bottom: 0.5rem;
}

.player-detail-info {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.player-detail-info strong {
  color: var(--primary-white);
}

/* Pozisyon grupları */
.formation-label {
  position: absolute;
  left: -80px;
  background: rgba(0, 0, 0, 0.8);
  color: var(--primary-white);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}

/* Takım Formu Kartı */
.team-form-card {
  background: linear-gradient(135deg, var(--card-bg) 0%, #252525 100%);
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 3rem;
  transition: var(--transition);
}

.team-form-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-white);
  box-shadow: 0 15px 50px rgba(255, 255, 255, 0.4);
}

.team-form-card h3 {
  color: var(--primary-white);
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  border-bottom: 3px solid var(--primary-white);
  padding-bottom: 1rem;
}

.match-results {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.match-result {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  border: 3px solid;
  transition: var(--transition);
  cursor: pointer;
}

.match-result.win {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  border-color: #16a34a;
  color: #000;
}

.match-result.draw {
  background: linear-gradient(135deg, #facc15, #eab308);
  border-color: #ca8a04;
  color: #000;
}

.match-result.loss {
  background: linear-gradient(135deg, #f87171, #ef4444);
  border-color: #dc2626;
  color: #fff;
}

.match-result:hover {
  transform: scale(1.15);
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.5);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .football-field {
    aspect-ratio: 2/3;
  }

  .player-avatar {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .player-number {
    width: 18px;
    height: 18px;
    font-size: 0.65rem;
  }

  .player-name {
    font-size: 0.65rem;
    padding: 0.3rem 0.6rem;
  }

  .formation-label {
    left: 5px;
    font-size: 0.7rem;
    padding: 0.3rem 0.6rem;
  }

  .player-detail {
    min-width: 160px;
    padding: 0.75rem 1rem;
  }
}
/* ========== SAHA GENEL ========== */

.football-field-section {
  padding: 1.5rem 0;
  display: flex;
  justify-content: center;
}

.football-field {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 9 / 16;              /* Telefon oranına yakın, dikey saha */
  margin: 0 auto;
  border-radius: 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, #1d7c42 0, #0e5a2a 40%, #053318 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

/* Saha çizgileri ve alanlar */

.field-lines,
.penalty-area,
.goal-area {
  position: absolute;
  box-sizing: border-box;
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.field-lines {
  inset: 6% 8%;
  border-radius: 18px;
}

.field-lines::before {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 2px solid rgba(255, 255, 255, 0.7);
  left: 50%;
  transform: translateX(-50%);
}

/* Üst ve alt ceza sahası */
.penalty-area.top {
  top: 6%;
  left: 20%;
  right: 20%;
  height: 14%;
}

.penalty-area.bottom {
  bottom: 6%;
  left: 20%;
  right: 20%;
  height: 14%;
}

/* Kale alanı */
.goal-area.top {
  top: 6%;
  left: 32%;
  right: 32%;
  height: 6%;
}

.goal-area.bottom {
  bottom: 6%;
  left: 32%;
  right: 32%;
  height: 6%;
}

/* Santra yuvarlağı */
.football-field::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  transform: translate(-50%, -50%);
}

/* ========== OYUNCU MARKERLARI ========== */

.player-marker {
  position: absolute;
  transform: translate(-50%, -50%);
  color: #f5f5f5;
  z-index: 5;
}

.player-marker.multi {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Yuvarlak ikon kısmı */
.player-marker.multi .player-avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 4px;
  background: rgba(0, 0, 0, 0.4);
}

/* İlk 11 ismi */
.player-main {
  font-weight: 600;
  font-size: 0.8rem;
  line-height: 1.15;
  color: rgba(255, 255, 255, 0.95);
}

/* Yedek isimler satırı */
.player-subs {
  font-size: 0.68rem;
  line-height: 1.15;
  opacity: 0.85;
  margin-top: 2px;
  max-width: 170px;
}

/* Buton gibi görünmesin, link gibi davransın */
.player-main,
.sub-name {
  background: none;
  border: none;
  padding: 0;
  margin: 0 2px;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}

.player-main:hover,
.sub-name:hover {
  text-decoration: underline;
}

/* ========== DETAY KARTI (JS BUNU AÇIP KAPATIYOR) ========== */

.player-marker .player-detail {
  position: absolute;
  bottom: 112%;
  left: 50%;
  transform: translateX(-50%) scale(0.94);
  background: rgba(5, 5, 5, 0.94);
  padding: 8px 10px;
  border-radius: 10px;
  width: 190px;
  font-size: 0.72rem;
  color: #f7f7f7;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 20;
}

.player-marker .player-detail::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: rgba(5, 5, 5, 0.94) transparent transparent transparent;
}

.player-marker .player-detail-name {
  font-weight: 700;
  margin-bottom: 4px;
}

.player-marker.show-detail .player-detail {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  pointer-events: auto;
}

/* ========== MOBİL İYİLEŞTİRME ========== */

@media (max-width: 768px) {
  .football-field {
    max-width: 420px;
    border-radius: 22px;
  }

  .player-marker.multi .player-avatar {
    width: 30px;
    height: 30px;
    font-size: 0.95rem;
  }

  .player-main {
    font-size: 0.75rem;
  }

  .player-subs {
    font-size: 0.62rem;
    max-width: 150px;
  }

  .player-marker .player-detail {
    width: 170px;
  }
}

@media (max-width: 430px) {
  .football-field {
    max-width: 100%;
    border-radius: 18px;
  }

  .player-marker.multi .player-avatar {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }

  .player-main {
    font-size: 0.7rem;
  }

  .player-subs {
    font-size: 0.6rem;
    max-width: 135px;
  }

  .player-marker .player-detail {
    width: 160px;
    font-size: 0.7rem;
  }
}
.header-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Tema toggle düğmesi */
.theme-toggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transition: var(--transition);
  color: #fff;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(20deg) scale(1.1);
}

/* Açık tema için buton görünümü */
[data-theme="light"] .theme-toggle {
  color: #000;
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.3);
}
/* Oyuncu detay modalı */
.player-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.player-modal.active {
  display: flex;
}

.player-modal-content {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  border: 3px solid var(--primary-white);
  text-align: center;
  position: relative;
}

.player-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition);
}

.player-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.player-modal-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 1rem auto;
  font-size: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
}

.player-modal h3 {
  font-size: 2rem;
  margin: 1rem 0;
}

.player-modal p {
  margin: 0.4rem 0;
}
/* ===========================
   CANLI SKOR KUTUSU
   =========================== */
.live-score-widget {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  border-left: 4px solid var(--accent-red);
  position: relative;
  overflow: hidden;
}

.live-indicator {
  position: absolute;
  top: 0.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-red);
  color: #fff;
  padding: 0.2rem 0.9rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 0 12px rgba(227, 30, 36, 0.8);
}

.score-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.8rem;
}

.team {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex: 1;
}

.team.home {
  justify-content: flex-start;
}

.team.away {
  justify-content: flex-end;
}

.team-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.team-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.team-name {
  font-weight: 700;
  color: var(--text-primary);
}

.team-side {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.score {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--primary-white);
}

.match-info {
  flex: 1.2;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.minute {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-red);
}

.competition {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.match-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ===========================
   SONRAKİ MAÇ GERİ SAYIM
   =========================== */
.next-match-countdown {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 1.5rem;
  margin: 1.5rem 0 2rem;
  border-right: 4px solid var(--primary-white);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.next-match-countdown h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--primary-white);
}

.match-details {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 70px;
}

.time-value {
  font-size: 2.1rem;
  font-weight: 900;
  padding: 0.4rem 0.6rem;
  border-radius: 12px;
  background: var(--primary-black);
  color: var(--accent-red);
}

.time-label {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}

/* Maç başladı yazısı için */
.next-match-started {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent-red);
}

/* Mobil uyum */
@media (max-width: 768px) {
  .score-container {
    flex-direction: column;
  }

  .team.home,
  .team.away {
    justify-content: center;
  }

  .score {
    font-size: 2.3rem;
  }
}
/* Dil değiştir butonu (TR / EN) */
.language-toggle {
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  background: radial-gradient(circle at 30% 30%, var(--accent-red-light), var(--accent-red-dark));
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 18px rgba(227, 30, 36, 0.8);
  transition: var(--transition);
}

.language-toggle:hover {
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 0 24px rgba(227, 30, 36, 1);
}

/* Mobile: header içindeki butonu sağa yasla */
@media (max-width: 768px) {
  .header-controls {
    margin-left: auto;
  }
}
/* === Dil bayrakları (TR / EN) – yeni görünüm === */
.language-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.65);
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 18px rgba(227, 30, 36, 0.7);
}

.lang-flag {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lang-flag.active {
  background: radial-gradient(circle at 30% 30%, var(--accent-red-light), var(--accent-red-dark));
  box-shadow: 0 0 16px rgba(227, 30, 36, 0.9);
}

.lang-flag:not(.active):hover {
  transform: translateY(-1px) scale(1.03);
}
/* Kadro alt oyuncu detay paneli */
.player-detail-panel {
  margin-top: 2.5rem;
  padding: 2rem;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.1), rgba(0, 0, 0, 0.9));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.5s ease-out;
}

.player-detail-panel h3 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
}
/* Kulüp logoları (puan durumu, fikstür, yaklaşan maç vb.) */
.club-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  margin-right: 0.35rem;
}

.club-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Örnek kulüp kimlikleri - kendi logo dosyalarınızı ekleyin */
.club-logo.besiktas {
  background: #000;
}
.club-logo.galatasaray {
  background: #fdda24;
}
.club-logo.fenerbahce {
  background: #0b2149;
}
.club-logo.trabzonspor {
  background: #6b002b;
}
.game-area {
  margin-top: 2rem;
}

.game-result {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.game-kadro-list {
  max-height: 260px;
  overflow: auto;
  margin: 1rem 0;
  padding-right: 0.5rem;
}

.game-kadro-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  padding: 0.25rem 0;
}

.quiz-question {
  margin-top: 1rem;
}

.quiz-opt {
  margin: 0.25rem 0.3rem 0;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: var(--primary-white);
  cursor: pointer;
  font-size: 0.85rem;
}

.quiz-opt.correct {
  background: rgba(76, 175, 80, 0.3);
}

.quiz-opt.wrong {
  background: rgba(244, 67, 54, 0.3);
}
/* Son 10 yıl kadroları için grid iyileştirme */
.ten-year-squads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .ten-year-squads-grid {
    grid-template-columns: 1fr;
  }
}
