* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #1e1e2e;
  color: white;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
}

.container {
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-align: center;
}

#game-container {
  width: 100%;
  height: 500px;
  background-color: #2e2e5e;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}

#game-canvas {
  width: 100%;
  height: 100%;
}

.controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  width: 100%;
}

button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.25rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.2s;
}

#start-button {
  background-color: #22c55e;
  color: white;
}

#start-button:hover {
  background-color: #16a34a;
}

#cashout-button {
  background-color: #ef4444;
  color: white;
}

#cashout-button:hover {
  background-color: #dc2626;
}

.instructions {
  margin-top: 1.5rem;
  color: #d1d5db;
  width: 100%;
}

.instructions h2 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.instructions ol {
  padding-left: 1.5rem;
}

.instructions li {
  margin-bottom: 0.25rem;
}