* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: radial-gradient(circle at top left, #de27b9, transparent 50%),
              radial-gradient(circle at bottom right, #3333ff, transparent 50%),
              #000;
  color: white;
  font-family: 'Trebuchet MS', sans-serif;
}
.header {
    margin-top: 3%;
    font-size: 1.7rem;
    color: #ff00cc;
}
.choices {
    margin-top: 5%;
    margin-bottom: 7%;
}
.choices button {
    font-size: 7.5rem;
    margin: 0 20px;
    border-radius: 250px;
    cursor: pointer;   
    background: #424341; 
    color: white;

}
.choices button:hover {
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.7);
}
#playerDisplay, #computerDisplay{
    font-size: 2.5rem;
}
#playerDisplay {
    color: #00ffcc;
}
#computerDisplay{
    color: #ff0066;
}
#resultDisplay{
    font-size: 5rem;
    margin: 30px 0;
}
.scoreDisplay {
    font-size: 2rem;
    text-align: center;
}
.win , #playerScoreDisplay {
  color: #00ffcc; 
  text-shadow: 0 0 10px #00ffcc, 0 0 20px #00ffee;
}
.tie {
  color: #ffd700; 
  text-shadow: 0 0 10px #ffd700, 0 0 20px #ffea00;
}
.lose, #computerScoreDisplay {
  color: #ff0066; 
  text-shadow: 0 0 10px #ff0066, 0 0 20px #ff1a75;
}
.match-winner {
    font-size: 3rem;
    margin: 20px 0;
    font-weight: bold;
    text-align: center;
}
.reset-btn {
    font-size: 1.5rem;
    padding: 10px 20px;
    margin-top: 20px;
    background: #ff00cc;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}
.reset-btn:hover {
    background: #cc0099;
}
#matchResult {
    font-size: 3rem;
    margin: 20px 0;
    font-weight: bold;
    text-align: center;
}

