@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

    .marcador-wrapper {
      width: 100%;
      height: auto;
      box-sizing: border-box;
      display: flex;
      justify-content: center;
    }

    .marcador {
      background: #fff;
      border: 2px solid #BB3625;
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      box-sizing: border-box;
      position: relative;
      padding: 10px;
      width: 100%;
      min-height: 125px;
      height: auto;
      font-family: 'Poppins', sans-serif;
    }

    .enjuego {
      position: absolute;
      top: 10px;
      right: 50%;
      transform: translateX(50%);
      background: #00ff40;
      color: white;
      padding: 5px 15px;
      font-weight: 600;
      font-size: 16px;
      border-radius: 5px;
      animation: parpadeo 1s infinite;
      z-index: 2;
    }

    @keyframes parpadeo {
      0% { opacity: 1; }
      50% { opacity: 0; }
      100% { opacity: 1; }
    }

    .equipos {
      display: flex;
      justify-content: space-between;
      align-items: start;
      width: 100%;
      gap: 20px;
      margin-bottom: 10px;
    }

    .equipo {
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100px;
      max-width: 100px;
      text-align: center;
      
    }

    .equipo img {
      top: 10px;
      width: 64px;
      height: 64px;
      object-fit: contain;
      margin-bottom: 10px;
    }

    .equipo span {
      font-size: 14px;
      font-weight: 600;
      color: #333;
      text-align: center;
      word-break: break-word;
      white-space: normal;
    }

    .resultado {
      font-size: 32px;
      font-weight: 600;
      text-align: center;
      margin-top: 40px;
      color: #BB3625;
    }

    .tiempo {
      position: absolute;
      font-size: 18px;
      color: #BB3625;
      bottom: 10px;
      font-weight: 600;
    }

    .penalties {
      font-size: 18px;
      color: #BB3625;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .penalties-cab,
    .global-cab {
      font-size: 18px;
      font-weight: 600;
      margin-top: 10px;
    }

    .loader {
      font-family: 'Poppins', sans-serif;
      font-size: 18px;
      font-weight: 600;
      color: #BB3625;
      padding: 40px;
      text-align: center;
    }
    @media (max-width: 400px) {
      .equipo span {
        display: none;
      }
    }

    @media (max-width: 360px) {
      
      .resultado {
        font-size: 20px;
      }
      .enjuego {
        font-size: 14px;
        padding: 5px 10px;
      }
      .tiempo {
        font-size: 14px;
      }
    }