body {
    margin: 0;
    overflow: hidden;
    background-color: #000;
}

canvas {
    display: block;
}

#info {
    position: absolute;
    top: 10px;
    width: 100%;
    text-align: center;
    color: white;
    font-family: Arial, sans-serif;
    pointer-events: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#info h1 {
    margin: 0;
    font-size: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#info p {
    margin: 5px 0;
    font-size: 16px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.version-info {
    font-size: 14px !important;
    color: #aaa;
    margin-top: 15px !important;
    font-style: italic;
}

#pauseMenu {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    color: white;
    font-family: Arial, sans-serif;
    text-align: center;
    display: none;
}

#pauseMenu h2 {
    margin: 0 0 20px 0;
    font-size: 24px;
}

#pauseMenu p {
    margin: 10px 0;
    font-size: 16px;
}

.menu-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #ff4444;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.menu-link:hover {
    background-color: #ff6666;
}

#startOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

#startOverlay p {
    color: white;
    font-size: 24px;
    font-family: Arial, sans-serif;
    text-align: center;
}

#errorOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#errorOverlay p {
    color: #ff4444;
    font-size: 20px;
    font-family: Arial, sans-serif;
    text-align: center;
    max-width: 80%;
    line-height: 1.5;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    border: 1px solid #ff4444;
} 