body {
  background-color: #000;
  color: #00ff00;
  font-family: "Courier New", monospace;
  text-align: center;
  padding: 20px;
}

h1 {
  font-size: 24px;
  letter-spacing: 2px;
}

.status {
  color: red;
  animation: blink 1s infinite;
}

.player {
  margin-top: 30px;
}

@keyframes blink {
  50% { opacity: 0; }
}

footer {
  margin-top: 100px;
  font-size: 10px;
  color: #444;
}
