/* orbitron-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 400;
  src: url('../assets/fonts/orbitron-v34-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* orbitron-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 700;
  src: url('../assets/fonts/orbitron-v34-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


body {
  background-color: #0f0f0f;
  color: #f0f0f0;
  font-family: 'Orbitron', sans-serif;
  padding: 2rem;
  font-weight: 400;
}
button, select, input {
  background-color: #1f1f1f;
  color: #00ffcc;
  border: 1px solid #00ffcc;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  margin: 0.5rem;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
}
button:hover, select:hover, input:hover {
  background-color: #2f2f2f;
}
#balanceDisplay {
  color: #00ffcc;
  font-size: 1.3rem;
  font-weight: bold;
  margin: 1rem 0;
}
#log {
  margin-top: 1rem;
  max-height: 300px;
  overflow-y: auto;
  background: #121212;
  border: 1px solid #333;
  padding: 1rem;
}
canvas {
  margin-top: 2rem;
  background: #1a1a1a;
  border: 1px solid #333;
}
.dice {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  text-align: center;
  line-height: 40px;
  font-size: 1.5rem;
  border-radius: 6px;
  border: 2px solid #555;
  transition: all 0.3s ease;
}
.win {
  background-color: #003300;
  border-color: #00cc00;
  color: #00ff00;
}
.lose {
  background-color: #330000;
  border-color: #cc0000;
  color: #ff6666;
}
.neutral {
  background-color: #333333;
  border-color: #888;
  color: #cccccc;
}
