body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f172a;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.scoreboard {
  display: flex;
  gap: 80px;
  background: #1e2a4a;
  padding: 40px 60px;
  border-radius: 20px;
}

.team {
  text-align: center;
  color: #e5e7eb;
}

.team h2 {
  font-size: 28px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.score {
  
  color: #f94f6d;
  font-family: 'Cursed Timer ULiL', monospace;
  font-size: 70px;
  padding: 20px 40px;
  border-radius: 8px;
  margin-bottom: 20px;
  letter-spacing: 4px;
  text-align: center;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.8);
  
  
  /* Glow effect */
  text-shadow: 0 0 8px #f94f6d,
               0 0 16px #f94f6d,
               0 0 24px #f94f6d;
}

/* Leader highlight */
.leader {
  box-shadow: 0 0 20px greenyellow;
  transform: scale(1.05);
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
}

button {
  background: transparent;
  border: 2px solid #94a3b8;
  color: #e5e7eb;
  padding: 10px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.2s;
}

button:hover {
  background: #334155;
}

@keyframes flicker {
  0% { opacity: 1; }
  98% { opacity: 1; }
  99% { opacity: 0.85; }
  100% { opacity: 1; }
}