/* Starry Space Background Effect */
.space-carousel-wrapper_faeb9e11 {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    background-color: #030308;
    color: #ffffff;
    font-family: 'Cinzel', 'Montserrat', sans-serif;
}

.space-carousel-wrapper_faeb9e11.has-stars-bg {
    background-image: 
        radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 40px),
        radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 30px),
        radial-gradient(white, rgba(255,255,255,.1) 2px, transparent 40px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px;
}

.planet-swiper {
    padding: 30px 40px;
}

.planet-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    perspective: 1000px;
}

/* 3D Spinning Spheres styling */
.planet-sphere-container {
    position: relative;
    width: 240px;
    height: 240px;
    margin-bottom: 25px;
    border-radius: 50%;
}

.planet-glow {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.15), inset 0 0 25px rgba(255, 255, 255, 0.1);
    pointer-events: none;
    z-index: 2;
}

.planet-sphere {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    animation: spinPlanet 20s linear infinite;
    transform-style: preserve-3d;
    box-shadow: inset -25px -25px 50px #000, inset 15px 15px 30px rgba(255,255,255,0.4);
}

.planet-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transform: scale(1.05); /* hide raw edge */
}

/* Spin continuous axis rotation animation */
@keyframes spinPlanet {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.planet-info {
    margin-top: 15px;
}

.planet-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.planet-subtitle {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.8;
    margin: 0;
}

/* Navigation Arrows custom styling */
.planet-nav-next,
.planet-nav-prev {
    color: #ffffff;
    transition: all 0.3s ease;
}

.planet-nav-next:after,
.planet-nav-prev:after {
    font-size: 24px !important;
}

.planet-nav-next:hover,
.planet-nav-prev:hover {
    color: #ffcc00;
    transform: scale(1.1);
}
