.spaf-saha-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.spaf-saha {
  position: relative;
  flex: 1 1 48%;
  max-width: 500px;
  margin: 20px auto;
  height: 0;
  padding-top: 62%; /* Saha oranı width/height */
}

/* Saha Arka Planı */
.spaf-saha .saha-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.spaf-saha .saha-bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Satırlar */
.spaf-saha .line {
  display: flex;
  justify-content: space-around;
  position: absolute;
  width: 100%;
  left: 0;
}

/* Kaleci */
.spaf-saha .gk {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffcc00;
  padding: 4px 6px;
  border-radius: 50%;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
  white-space: nowrap;
}

/* Satır Yüzdeleri */
.spaf-saha .defenders   { bottom: 25%; }
.spaf-saha .midfielders { bottom: 50%; }
.spaf-saha .forwards    { bottom: 75%; }

/* Oyuncular */
.spaf-saha .line .player {
  background: #ffcc00;
  padding: 4px 6px;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
  font-size: 12px;
  white-space: nowrap;
  flex: 0 0 auto;
}

/* Responsive */
@media (max-width: 600px) {
  .spaf-saha {
    flex: 1 1 100%;
    max-width: 100%;
    padding-top: 62%;
  }

  .spaf-saha .line .player,
  .spaf-saha .gk {
    font-size: 10px;
    padding: 3px 5px;
  }
}
