
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #0f0f0f;
      color: #ffffff;
      padding: 20px;
      margin: 0;
    }

    h1 {
      text-align: center;
      margin-bottom: 20px;
      font-size: 2.5rem;
      color: #00d9ff;
    }

    h2 {
      color: #00d9ff;
      border-left: 5px solid #00d9ff;
      padding-left: 10px;
      margin-top: 40px;
      margin-bottom: 20px;
    }

    #jogos-container {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .grupo-jogos {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 20px;
    }

    .card {
      background-color: #1e1e1e;
      border-radius: 10px;
      padding: 20px;
      box-shadow: 0 0 10px rgba(0, 217, 255, 0.15);
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .teams {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      margin-bottom: 15px;
    }

    .team {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 40%;
      text-align: center;
    }

    .team img {
      width: 50px;
      height: 50px;
      margin-bottom: 5px;
    }

    .versus {
      font-size: 1.5rem;
      font-weight: bold;
      color: #00d9ff;
    }

    .info {
      text-align: center;
      font-size: 0.95rem;
      color: #ccc;
      margin-top: 10px;
    }

    .tv-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background-color: #00d9ff;
      color: #000;
      padding: 3px 8px;
      border-radius: 5px;
      margin-top: 8px;
      font-weight: bold;
      font-size: 0.85rem;
    }

    .erro {
      color: red;
      text-align: center;
    }