    html, body {
      height: 100%;
      margin: 0;
      display: flex;
      flex-direction: column;
    }

    body {
      font-family: 'Orbitron', sans-serif;
      color: #e2e2e2;
      background: url('/images/fundo.png') no-repeat center center fixed;
      background-size: cover;
    }

    header {
      background: rgba(0, 0, 0, 0.75);
      border-bottom: 3px solid #c41c00;
      text-align: center;
      padding: 2rem 1rem;
      box-shadow: 0 0 15px #000000aa;
    }

    header h1 {
      font-size: 2.8rem;
      color: #c41c00;
      letter-spacing: 3px;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }

    nav a {
      color: #ddd;
      margin: 0 1rem;
      text-decoration: none;
      font-weight: bold;
      text-transform: uppercase;
    }

    nav a:hover {
      color: #c41c00;
    }

    /* ======= TÍTULO PRINCIPAL ======= */


    /* ======= CONTEÚDO ======= */
    #players-wrapper {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
      padding: 2rem;
    }

    .team-container {
      width: 90%;
      max-width: 900px;
      background: #0d0d0d;
      border: 1px solid #1f1f1f;
      border-radius: 6px;
      box-shadow: inset 0 0 10px #000;
      color: #d3d3d3;
      font-size: 13px;
      overflow: hidden;
    }

    .team-container h2 {
      margin: 0;
      padding: 10px;
      text-align: center;
      font-size: 18px;
      text-transform: uppercase;
      border-bottom: 2px solid #222;
    }

    .team-container.blue h2 {
      background: linear-gradient(to bottom, #0b1a33, #0a0f1a);
      color: #66b3ff;
    }

    .team-container.red h2 {
      background: linear-gradient(to bottom, #330b0b, #1a0a0a);
      color: #ff5555;
    }

    footer {
      background: rgba(0, 0, 0, 0.8);
      padding: 2rem;
      text-align: center;
      color: #aaa;
      border-top: 2px solid #c41c00;
      margin-top: auto;
    }

    footer a {
      color: #c41c00;
      margin: 0 0.5rem;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    footer a:hover {
      color: #ffffff;
    }
    .total-players {
  text-align: center;
  font-size: 1.6rem;
  color: #ff0000;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 10px #ff0000, 0 0 25px #5100ff;
  font-weight: bold;
  background: rgba(0, 255, 200, 0.05);
  padding: 0.8rem 2rem;
  border-radius: 10px;
  display: inline-block;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 0, 0, 0.25);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
}
