.match-stickybar{
  position: sticky;
  top: 10px;
  z-index: 30;
  background: rgba(255,255,255,.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 10px 12px;
  border: 1px solid rgba(148,163,184,.12);
}

.match-header-card{
  border-radius: var(--radius);
}
.match-league-kicker{
  color: rgba(234,240,255,.70);
}
.match-team{
  display:flex;
  align-items:center;
  gap: 10px;
  min-width: 0;
}
.match-team-logo{
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 12px 24px rgba(0,0,0,.30));
}
.match-team-name{
  font-weight: 900;
  color: rgba(234,240,255,.96);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.match-score-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  min-width: 140px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(148,163,184,.18);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  color: rgba(234,240,255,.98);
}
.match-score-pill .sep{ opacity: .7; }
.match-meta{
  color: rgba(234,240,255,.68);
}

.match-actions .btn{ border-radius: 999px; }
.match-quicklinks .btn{ border-radius: 999px; }

.match-tabs.nav-pills .nav-link{
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(148,163,184,.14);
  color: rgba(234,240,255,.88);
  font-weight: 800;
}
.match-tabs.nav-pills .nav-link:hover{
  background: rgba(255,255,255,.07);
}
.match-tabs.nav-pills .nav-link.active{
  background: linear-gradient(135deg, rgba(124,58,237,.85), rgba(79,70,229,.85));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 18px 50px rgba(124,58,237,.18);
}

.match-surface{
  border-radius: var(--radius);
}
.match-table thead th{
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(10,15,28,.92) !important;
  color: rgba(234,240,255,.92) !important;
  border-color: rgba(148,163,184,.16) !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.match-table td{
  border-color: rgba(148,163,184,.12) !important;
}

.score-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(148,163,184,.18);
  font-weight: 900;
  min-width: 74px;
  font-variant-numeric: tabular-nums;
  color: rgba(234,240,255,.95);
}

.match-metric{
  border-radius: 16px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(148,163,184,.14);
}

@media (max-width: 767.98px){
  .match-team-logo{ width: 34px; height: 34px; }
  .match-score-pill{ min-width: 0; width: 100%; }
}


