body {
    background-color: #000;
    color: #0f0;
    /* Classic terminal green, or maybe white/amber based on preference. Let's go with white for now for better ASCII readability */
    color: #e0e0e0;
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

.container {
    position: relative;
    text-align: center;
}

pre {
    font-size: 12px;
    line-height: 12px;
    white-space: pre;
    text-align: left;
    /* Keep ASCII aligned */
    z-index: 10;
    position: relative;
}

#sun-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    /* Behind text? Or in front? Behind makes more sense for "sky" */
}

.celestial-body {
    position: absolute;
    font-size: 24px;
    transform: translate(-50%, -50%);
    transition: all 1s ease;
}

.sun {
    color: #ffff00;
    text-shadow: 0 0 10px #ffff00;
}

.moon {
    color: #ffffff;
    text-shadow: 0 0 5px #ffffff;
}

.star {
    position: absolute;
    color: #ffffff;
    font-size: 10px;
    animation: twinkle 2s infinite ease-in-out;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.message {
    margin-top: 20px;
    font-size: 1.5em;
    text-shadow: 0 0 5px #e0e0e0;
}

.status-line {
    border-top: 1px solid #333;
    margin-top: 10px;
    padding-top: 5px;
    font-size: 0.8em;
    color: #888;
}