/* Banner (kapak) alanı */
.site-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 150px;
}

.site-banner .banner-text h1 {
  font-size: 3.5rem;
  margin: 0;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
  color: white;
}

.site-banner .banner-text p {
  margin: 10px 0 0 0;
  font-size: 1.5rem;
  font-weight: 500;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
  color: white;
}

.site-banner {
  background-image: url('img/banner.png'); /* banner.jpg senin görselin */
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  text-align: center;
  color: white;
  font-size: 36px;
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
}
.site-banner h1 {
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

html, body {
  height: auto;
  min-height: 100vh;
  overflow-y: auto;
  margin: 0;
  padding: 0;
}

body {
  color: white;
  font-size: 28px;
  font-family: Arial, sans-serif;
  background-image: url("arkaplan.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  padding: 28px;
  text-align: left;
}
/* ... önceki kodların aynen kalabilir ... */

.player-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 12px;
}

.player-card .left {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
}

.player-card .left img.player-photo {
  width: 350px;
  height: auto;
  border-radius: 8px;
  border: 2px solid gold;
  box-shadow: 0 0 10px gold;
}

.player-card .left h2 {
  margin: 0;
  font-size: 24px;
  color: white;
}

.player-card .right {
  flex: 1;
  text-align: left;
  font-size: 18px;
  color: #eee;
}

.player-card .right img.flag {
  width: 32px;
  height: 20px;
  vertical-align: middle;
  margin-right: 10px;
}

h1, h2 {
  color: black;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: black;
  font-size: 0.9em;
  display: block;
  margin-top: 10px;
}

a:hover {
  color: #cfe8f2;
}

.team-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0;
  max-width: 1000px;
  margin: 20px auto;
}

.team-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: none;
  padding: 12px;
  border-radius: 10px;
  background-color: transparent;
  height: 220px;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  font-weight: bold;
  color: #a8c6d8;
  overflow: visible; /* Dilersen hidden yapabilirsin */
}

.team-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border: 3px solid gold;
  border-radius: 10px;
  padding: 8px;
  background-color: transparent;
  box-shadow: 0 0 10px gold;
  display: inline-block;
  box-sizing: border-box;
}
.oyuncu img.player-photo {
  display: inline-block;
  vertical-align: middle;
}

.oyuncu::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 20px;
  background-size: cover;
  background-position: center;
  margin-left: 10px;
  vertical-align: left;
}

/* Ülke bayrakları */
.tr::after { background-image: url("../../../flags/tr.png"); }
.ba::after { background-image: url("../../../flags/ba.png"); }
.br::after { background-image: url("../../../flags/br.png"); }
.ci::after { background-image: url("../../../flags/ci.png"); }
.cl::after { background-image: url("../../../flags/cl.png"); }
.cy::after { background-image: url("../../../flags/cy.png"); }
.ge::after { background-image: url("../../../flags/ge.png"); }
.jm::after { background-image: url("../../../flags/jm.png"); }
.pt::after { background-image: url("../../../flags/pt.png"); }
.se::after { background-image: url("../../../flags/se.png"); }
.si::after { background-image: url("../../../flags/si.png"); }
.tactic-container {
  max-width: 1200px;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  padding: 0 20px;
}

.tactic-card {
  background-color: rgba(0, 0, 0, 0.3);
  border: 2px solid gold;
  border-radius: 12px;
  width: 320px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
  transition: transform 0.2s ease;
}

.tactic-card:hover {
  transform: scale(1.04);
}

.tactic-card img {
  width: 100%;
  border-radius: 8px;
  border: 2px solid gold;
  box-shadow: 0 0 10px gold;
  margin-bottom: 15px;
}

.tactic-card h2 {
  margin: 0 0 10px;
  font-size: 24px;
  color: gold;
}

.tactic-card p {
  font-size: 16px;
  color: #eee;
  line-height: 1.5;
}

.back-link {
  display: block;
  text-align: center;
  margin: 40px auto;
  font-size: 18px;
  color: white;
  background-color: gold;
  padding: 10px 20px;
  border-radius: 8px;
  width: fit-content;
  text-decoration: none;
}

.match {
  border: 1px solid rgba(255, 215, 0, 0.6); /* Altın renkli sınır */
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 30px;
  background-color: rgba(255, 215, 0, 0.1); /* Çok açık altın ton */
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
  transition: background-color 0.3s ease;
  color: #eee; /* Açık yazı */
}

.match:hover {
  background-color: rgba(255, 215, 0, 0.2);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
}

.teams {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1.3em;
  gap: 25px;
  color: gold; /* Altın ton */
  text-shadow: 0 0 5px #0008;
}

.team {
  display: flex;
  align-items: center;
  gap: 15px;
}

.team img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
  border: 1.5px solid gold;
  box-shadow: 0 0 8px rgba(255, 215, 0, 0.7);
}

.versus {
  font-size: 1.5em;
  font-weight: 900;
  color: gold;
  user-select: none;
  text-shadow: 0 0 6px #0008;
}

.comment {
  font-size: 1.1em;
  line-height: 1.6;
  color: #000;
  white-space: pre-wrap; /* Satır kırma için */
  word-wrap: break-word;
  margin-top: 10px;
  /* max-width yok, genişlik match kutusuna göre esnek */

}
/* Önceki stil blokları burada biter */

nav ul li a {
  color: gold;
  font-weight: bold;
  font-size: 18px;
  text-shadow: 1px 1px 2px black;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.3s ease;
  display: inline-block;
}

nav ul li a:hover {
  background-color: rgba(255, 215, 0, 0.2);
  color: white;
  box-shadow: 0 0 10px gold;
  text-decoration: none;
}
.duyuru-banner {
  background-color: #ffd700; /* Altın sarısı zemin */
  color: #000; /* Siyah yazı */
  padding: 10px;
  font-weight: bold;
  font-size: 16px;
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
}
.week-nav {
  background: rgba(17, 17, 17, 0.01); /* %70 opaklık siyah */
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  border-radius: 6px; /* Köşeleri biraz yumuşatır, opsiyonel */
}

.week-nav a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px; /* punto */
  padding: 4px 8px;
}

.week-nav a:hover {
  text-decoration: underline;
}