body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #121212;
    color: #ffffff;
    display: flex;
    flex-direction: column; /* Added to allow main to take vertical space */
    justify-content: flex-start;
    align-items: center;
    height: 100vh;
    text-align: center;
}


.container {
    display: flex;
    flex-direction: column;
}

/* header {
    margin-bottom: 20px;
} */

.main-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px #00bcd4, 0 0 20px #00bcd4, 0 0 30px #00bcd4;
}

.score {
    font-size: 1.5em;
    margin-top: 10px;
}

#gameCanvas {
    background-color: #000;
    border: 2px solid #00eaff;
    box-shadow: 0 0 20px #00eaff;
}

.restart-button {
    display: none; /* Wird per JS eingeblendet */
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff4136;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.restart-button:hover {
    background-color: #ff6347;
}

/* --- Stile für den "Back to Home"-Link (identisch zu anderen Seiten) --- */
.back-link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #1a1a1a;
  color: #00eaff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  border: 1px solid #00eaff;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  transition: color 0.3s, background-color 0.3s, box-shadow 0.3s;
}

.back-link:hover {
  background-color: #00eaff;
  color: #000;
  box-shadow: 0 0 15px #00eaff, 0 0 25px #00eaff;
}