/* Background Scene Component Styles */
.asc-title-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.asc-title-background__stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(2px 2px at 20px 30px, #ffffff, rgba(0,0,0,0)), 
                      radial-gradient(2px 2px at 40px 70px, #ffffff, rgba(0,0,0,0)), 
                      radial-gradient(2px 2px at 50px 160px, #ffffff, rgba(0,0,0,0)), 
                      radial-gradient(2px 2px at 90px 40px, #ffffff, rgba(0,0,0,0)), 
                      radial-gradient(2px 2px at 130px 80px, #ffffff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkle 4s ease-in-out infinite;
}

.asc-title-background__mountains {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 25%;
    background-image: linear-gradient(transparent 0%, #0f172a 80%), 
                      linear-gradient(135deg, #1e293b 25%, transparent 25%), 
                      linear-gradient(225deg, #1e293b 25%, transparent 25%);
    background-position: 0 0, 0 50%, 0 50%;
    background-size: auto, 50px 100px, 50px 100px;
    background-repeat: repeat-x;
    opacity: 0.5;
}

.asc-title-background__tower {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 80%;
    background: linear-gradient(to bottom, transparent, rgba(30, 41, 59, 0.5));
    mask-image: linear-gradient(to top, #000 70%, transparent);
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}