.match-card.premium {
  position: relative;
  border-radius: 18px;
  padding: 14px;
  background: linear-gradient(
    90deg,
    var(--home-color, #2a2a2a) 0%,
    #111 50%,
    var(--away-color, #2a2a2a) 100%
  );
  box-shadow: 0 8px 24px rgba(0,0,0,0.45);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.match-card.premium:hover {
  transform: scale(1.015);
  box-shadow: 0 12px 32px rgba(0,0,0,0.65);
}

.match-card.premium .teams {
  display: flex;
  align-items: center;
  gap: 10px;
}

.match-card.premium .team-logo {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6));
}

.match-card.premium .score-display {
  font-weight: 700;
  font-size: 1.05rem;
}

.match-card.premium::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255,255,255,0.06),
    transparent 60%
  );
  pointer-events: none;
}
