/* ===== المتغيرات والأساسيات ===== */
:root {
    --primary-color: #6c5ce7;
    --secondary-color: #a8a5e6;
    --dark-bg: #0f0f1f;
    --light-text: #f8f9fa;
    --accent-color: #ff7675;
}


/* ===== خلفية الجسيمات والنجوم فقط ===== */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
}

.stars-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ===== محوّل اللغة فقط ===== */
.lang-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.lang-btn {
    padding: 8px 20px;
    border-radius: 20px;
    background: rgba(108, 92, 231, 0.2);
    border: 1px solid var(--primary-color);
    color: var(--light-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* ===== التجاوب للمحوّل فقط ===== */
@media (max-width: 768px) {
    .lang-switcher {
        top: 10px;
        right: 10px;
    }
}