#cosmic-bg-container-4c2a286b {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; /* Behind all content */
    pointer-events: none; /* Let clicks pass through */
    background: #0A122A;
    overflow: hidden;
}

/* Blinking Stars */
.stars-layer-4c2a286b {
    position: absolute;
    width: 100%;
    height: 100%;
}

.star-4c2a286b {
    position: absolute;
    background: #FFF;
    border-radius: 50%;
    animation: blink-4c2a286b linear infinite alternate;
}

@keyframes blink-4c2a286b {
    0% { opacity: 0.1; box-shadow: none; }
    100% { opacity: 0.8; box-shadow: 0 0 5px #FFF; }
}

/* Zodiac Wheel in Perspective */
.zodiac-wheel-layer-4c2a286b {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200vw; /* Very large to cover background */
    height: 200vw;
    margin-left: -100vw;
    margin-top: -100vw;
    opacity: 0.05; /* Subtle opacity */
    transform: perspective(1000px) rotateX(60deg) rotateY(10deg);
    border: 2px solid #C5A059;
    border-radius: 50%;
}

.wheel-inner-4c2a286b {
    position: relative;
    width: 100%;
    height: 100%;
}

/* House lines and labels */
.house-line-4c2a286b {
    position: absolute;
    top: 0;
    bottom: 50%;
    left: 50%;
    width: 1px;
    background: rgba(197, 160, 89, 0.5);
    transform-origin: bottom center;
}

.house-label-4c2a286b {
    position: absolute;
    top: 10%;
    left: -20px;
    width: 40px;
    text-align: center;
    color: #C5A059;
    font-size: 2vw;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Planets */
.planet-4c2a286b {
    position: absolute;
    top: 50%;
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.planet-dot-4c2a286b {
    width: 1vw;
    height: 1vw;
    background: #FFF;
    border-radius: 50%;
    box-shadow: 0 0 10px #FFF;
}

.planet-label-4c2a286b {
    color: #C5A059;
    font-size: 1vw;
    margin-top: 5px;
}

/* Glowing Sun at Edge */
.glowing-sun-4c2a286b {
    position: absolute;
    top: 10%;
    right: -5vw;
    width: 20vw;
    height: 20vw;
    background: radial-gradient(circle, rgba(255, 200, 100, 0.4) 0%, rgba(255, 200, 100, 0) 70%);
    border-radius: 50%;
    animation: sun-pulse-4c2a286b 4s ease-in-out infinite alternate;
}

@keyframes sun-pulse-4c2a286b {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.1); opacity: 0.9; }
}