#planet-clicker-game {
    text-align: center;
}
#planet-clicker-game h1 {
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}
#planet-container {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    margin: 0 auto;
}
#current-image, #next-image {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    transition: opacity 0.5s ease, filter 0.3s, box-shadow 0.3s;
    z-index: 1;
}
#current-image.glow-effect.golden-glow, #next-image.glow-effect.golden-glow {
    filter: brightness(1.5);
    box-shadow: 0 0 20px #ffd700; /* Golden glow for special levels */
}
#next-image {
    opacity: 0;
    z-index: 2;
}
#click-btn, #reset-btn {
    padding: 10px 20px;
    font-size: 1em;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    margin: 10px 5px;
    transition: background-color 0.2s;
}
#clicks, #stage {
    font-size: 1.5em;
    margin: 10px 0;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    background-color: rgba(0, 0, 0, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
}
body {
    background-image: url('');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-color: #0a0a0a;
}