.scoreboard {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  margin: 28px auto;
  max-width: 920px;
}

.title {
  color: #66f0ff;
  margin-bottom: 6px;
}

.winner {
  font-size: 1.25rem;
  color: #ffd700;
  font-weight: 700;
  margin-bottom: 14px;
}

.team-row {
  align-items: center;
}

.team-card {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* Circular Team Logo */
.team-icon {
  width: 120px;
  height: 120px;
  /* display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.25);
  overflow: hidden; */
}

.team-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* cover ke jagah contain use kiya */
  object-position: center;
}

/* .team-info h2 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
} */

.team-info .score {
  font-size: 2.6rem;
  font-weight: 700;
  color: #e03593;
  margin: 15px 0;
}

.team-left .team-icon {
  /* background: linear-gradient(135deg, #ffffff, #ffffff); */
}

.team-right .team-icon {
  /* background: linear-gradient(135deg, #ffffff, #ffffff); */
}

.vs {
  font-weight: 700;
  color: #fff;
  margin: 10px 0;
  font-size: 1.3rem;
}

.btn-custom {
  margin-top: 16px;
  padding: 9px 26px;
  background: linear-gradient(45deg, #e03593, #f7d794);
  border: none;
  border-radius: 50px;
  color: #222;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

/* ✅ Mobile/Tablet Fix */
@media (max-width: 768px) {
  .team-card {
    flex-direction: column; /* logo upar, text niche */
    text-align: center;
  }

  .team-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 10px;
  }

  /* .team-info h2 {
    font-size: 1rem;
  } */

  .team-info .score {
    font-size: 1.6rem;
    margin: 6px 0;
  }

  .vs {
    margin: 16px 0;
  }
}

/* second */

.match-card {
  /* background: #000000; */
  background:#031521;
  border: 2px solid 	#e03593;
  border-radius: 8px;
  padding: 16px;
  color: white;
}
.clrmain{
    color: white;
}

.team-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  /* box-shadow: rgba(255, 255, 255, 0.25) 0px 6px 12px -2px, rgba(255, 255, 255, 0.3) 0px 3px 7px -3px; */
  filter: drop-shadow(2px 4px 6px rgb(255, 255, 255));
}


.vs {
  font-weight: bold;
  color: #ff0057;
  font-size: 1.2rem;
}

.player-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 10px auto;
  display: block;
  border: 3px solid #e03593;
}

.player-of-match {
  color: #e03593;
  /* font-weight: 700;
            font-size: 0.9rem; */
  text-transform: uppercase;
}

.btn-match {
  background: #e03593;
  color: #ffffff;
  /* font-weight: 600; */
  border-radius: 4px;
  padding: 8px 18px;
}

.btn-sound {
  background: #001020;
  color: #e03593;
  margin-left: 6px;
  border: 2px solid #e03593;
  border-radius: 4px;
  padding: 8px 12px;
}

/* table */

/* table end */
