body {
    background-color: #1a1a2e;
    color: white;
    font-family: 'Arial', sans-serif;
    text-align: center;
}

h1 {
    font-size: 36px;
}

.game-container {
    position: relative;
}

#planetArea {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    border: 3px dashed #00a8ff;
    margin: 20px 0;
}

.planet {
    position: absolute;
    border-radius: 50%;
    transition: transform 0.2s;
    cursor: pointer;
}

button {
    padding: 10px 20px;
    background-color: #00a8ff;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

button:hover {
    background-color: #007bb5;
}




