<style>
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #0e1621 0%, #00152a 250px, #0e1621 100%);
    color: white;
  }

  .banner-header {
    aspect-ratio: 1920 / 380;
    width: 100%;
    max-height: 230px;
    overflow: hidden;
  }

  .banner-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  nav {
    background-color: transparent;
    padding: 10px 0;
    text-align: center;
    position: relative;
  }

  nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
  }

  nav ul li {
    position: relative;
  }

  nav a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    font-weight: bold;
    transition: color 0.3s;
  }

  nav a:hover {
    color: #ff3333;
  }

  nav ul ul {
    display: none;
    position: absolute;
    background-color: #00152a;
    top: 100%;
    left: 0;
    min-width: 160px;
    z-index: 1000;
  }

  nav ul li:hover > ul {
    display: block;
  }

  nav ul ul ul {
    left: 100%;
    top: 0;
  }

  main {
    padding: 40px 20px;
    text-align: center;
  }

  footer {
    background-color: #00152a;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    color: #ccc;
    margin-top: 40px;
  }

  .team-banner {
     max-width: 70%;
  max-height: 280px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

  .trainer-bereich,
  .kader,
  .spielplan {
    text-align: center;
    margin: 40px 0;
  }

  .profilbild {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #fff;
    transition: transform 0.2s ease;
  }

  .profilbild:hover {
    transform: scale(1.05);
  }

  .spieler-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .spieler {
    max-width: 180px;
    text-align: center;
  }

  .spieler p {
    margin-top: 10px;
    font-size: 0.95em;
  }

  a img {
    border: none;
    outline: none;
    text-decoration: none;
    box-shadow: none;
  }

  .spieler-gruppe {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
  }

  .spieler-gruppe h2 {
    width: 100%;
    text-align: center;
  }

  .co-trainer-container {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-top: 2rem;
  }

  .trainer-box {
    text-align: center;
  }

  .teamfoto {
    text-align: center;
    margin: 2rem 0 1rem 0;
  }

  .teamfoto-img {
     max-width: 100%;
  max-height: 700px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.4);
}

  .trainingszeiten {
  background-color: rgba(255, 255, 255, 0.06); 
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  margin: 60px auto 40px auto; 
  max-width: 600px;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.trainingszeiten h2 {
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #fff;
}

.trainingszeiten .icon {
  font-size: 1.2em;
  margin-right: 6px;
}

.trainingszeiten p {
  margin: 8px 0;
  font-size: 1.1em;
}

.trainingszeiten .blue-fighters {
  color: #3399ff;
}

.kontakt-button {
  display: inline-block;
  margin-top: 20px;
  background-color: #ff4b4b;
  color: white;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.kontakt-button:hover {
  background-color: #e60000;
}

  .spielplan-button {
  margin-top: 30px;
  text-align: center;
}

.spielplan-button a {
  background-color: #ff3333;
  color: #ffffff; /* Weißer Text */
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;

  }

  /* 📱 Responsive */
  @media (max-width: 768px) {
    nav ul {
      flex-direction: column;
      align-items: center;
    }

    nav ul li {
      width: 100%;
      text-align: center;
    }

    nav ul ul,
    nav ul ul ul {
      position: static;
      width: 100%;
    }

    .spieler {
      max-width: 45%;
    }

    .co-trainer-container {
      flex-direction: column;
      gap: 2rem;
    }

    .profilbild {
      width: 120px;
      height: 120px;
    }

    .trainer-bereich,
    .kader,
    .spielplan {
      margin: 20px 0;
    }
	.teamfoto-caption {
  margin-top: 10px;
  font-size: 1em;
  color: #ccc;
}
</style>