/* کانتینر اصلی برای جلوگیری از اسکرول افقی در کل صفحه */
#galaxy-container-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: transparent;
}

#galaxy-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    perspective: 1200px;
    background: transparent;
    overflow: hidden;
}

/* استایل سیاره‌ها */
.planet {
    position: absolute;
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50% !important;
    overflow: hidden;
    transform-origin: center;
    box-shadow: 0 0 10px rgba(255,255,255,0.4),
                0 0 20px rgba(0,191,255,0.4);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    z-index: 10;
}

.planet img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50% !important;
    pointer-events: none;
    display: block;
}

/* درخشش اطراف سیاره */
.planet::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,191,255,0.3) 0%, transparent 70%);
    opacity: 0.6;
    z-index: -1;
}

.planet:hover {
    transform: scale(1.5) !important;
    box-shadow: 0 0 30px rgba(0,191,255,0.8);
    z-index: 999 !important;
}

/* ریسپانسیو موبایل */
@media (max-width: 768px) {
    .planet {
        width: 45px;
        height: 45px;
    }
}
