:root {
  --primary-color: #006bb5;
  --secondary-color: #333;
  --background-color: #f5f5f5;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.6;
  background-color: var(--background-color);
  color: var(--secondary-color);
}

.container {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
  color: var(--primary-color);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

.links {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.status-link {
  font-size: 0.9rem;
  color: #666;
  margin-top: 2rem;
  display: inline-block;
}

.construction-notice {
  background-color: #fff3cd;
  border: 1px solid #ffeeba;
  color: #856404;
  padding: 1rem;
  border-radius: 5px;
  margin: 2rem 0;
}

.game-container {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
  text-align: center;
}

#gameCanvas {
  border: 2px solid #006bb5;
  border-radius: 4px;
  margin-top: 1rem;
  width: 100%; /* Make canvas width responsive */
  height: 200px; /* Keep fixed height */
  max-width: 800px; /* Prevent the game from getting too wide */
}

.game-instructions {
  margin: 1rem 0;
  color: #666;
  font-size: 0.9rem;
}

.score-display {
  font-size: 1.2rem;
  font-weight: bold;
  color: #006bb5;
  margin: 1rem 0;
}
