#season {
  max-width: 7.5rem;
}

@media (max-width: 768px) {
  #season {
    display: inline;
    margin-right: 0;
    height: 32px;
  }
}

.v2-team-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 20px 0;
}

.v2-team-header img {
  width: 60px;
  height: 60px;
  display: none;
}

.v2-team-header h1 {
  color: white;
  margin: 0;
}

.v2-team-header h2 {
  color: #999;
  font-size: 0.9em;
  font-weight: normal;
  margin: 5px 0 0 0;
}

.v2-team-matches {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.v2-team-matches > div {
  flex: 1;
  min-width: 300px;
}

.hs-loader,
.hs-loader img,
img[src*="hosted.wh.geniussports.com/images/loading.gif"] {
  display: none !important;
}

.body::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #0b0b0b;
  z-index: 40;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.body::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  border: 1.5px solid rgba(252, 215, 85, 0.15);
  border-top-color: #fcd755;
  border-radius: 50%;
  animation: v2-spin 0.7s linear infinite;
  z-index: 41;
}

.body.v2-ready::before,
.body.v2-ready::after {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .body::after {
    animation: none;
    border-top-color: #fcd755;
    opacity: 0.7;
  }
}

@keyframes v2-spin {
  to { transform: rotate(360deg); }
}
