* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', 'Segoe UI', 'Meiryo', sans-serif;
  background: rgb(0, 0, 0);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.stats-display {
  font-size: 48px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  display: flex;
  gap: 30px;
  align-items: center;
}

.stat-value {
  color: #ffffff;
  margin-right: 8px;
}

.stat-value.win {
  color: #5cb85c;
}

.stat-value.loss {
  color: #d9534f;
}

.last-update {
  font-size: 14px;
  opacity: 0.3;
  color: #ffffff;
}
