/* Big Screen / Gym & Spectator Live Scoreboard Styles */
.live-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at center, #111a33 0%, #060913 100%);
  padding: 24px;
  justify-content: space-between;
}

.live-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 16px;
}

.live-match-title {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--text-main);
  text-transform: uppercase;
}

.live-set-indicator {
  font-family: var(--font-score);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--fb-yellow);
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 229, 0, 0.3);
}

.live-main-court {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: center;
  margin: 40px 0;
}

@media (max-width: 768px) {
  .live-main-court {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.live-team-panel {
  background: var(--bg-card);
  border: 3px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.live-team-panel.serving {
  border-color: var(--fb-yellow);
  box-shadow: 0 0 30px rgba(255, 229, 0, 0.25);
}

.live-team-logo {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.live-team-name {
  font-size: 2.2rem;
  font-weight: 900;
  text-align: center;
  letter-spacing: 1px;
}

.live-sets-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 24px;
  border-radius: var(--radius-full);
  font-size: 1.2rem;
  font-weight: 800;
}

.live-points-display {
  font-family: var(--font-score);
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.live-middle-divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.live-vs-text {
  font-family: var(--font-score);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-muted);
}

.live-footer-history {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 12px;
}

.live-history-set-badge {
  font-family: var(--font-score);
  font-size: 1.1rem;
  font-weight: 700;
  background: rgba(0, 0, 0, 0.4);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
