/* جلوگیری از اسکرول افقی */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}

/* پس‌زمینه کهکشانی */
#galaxy-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

/* استایل سیاره‌ها */
.planet {
    position: absolute;
    display: block;
    width: 60px; /* مقدار پیش‌فرض، در JS مقدار واقعی تنظیم می‌شه */
    height: 60px;
    border-radius: 50% !important;
    overflow: hidden;
    transition: transform 0.3s ease;
    box-shadow:
        0 0 10px rgba(255, 255, 255, 0.4),
        0 0 20px rgba(0, 191, 255, 0.3),
        0 0 30px rgba(0, 191, 255, 0.2);
    z-index: 10;
}

/* تصویر برند درون سیاره */
.planet img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50% !important;
    pointer-events: none;
}

/* افکت شب‌تاب هنگام هاور */
.planet:hover {
    transform: scale(1.2);
    box-shadow:
        0 0 12px rgba(255, 255, 255, 0.8),
        0 0 24px rgba(0, 191, 255, 0.6),
        0 0 36px rgba(0, 191, 255, 0.4);
}

html, body {
    background: transparent;
}
