:root {
    --neon-blue: #00d2ff;
    --neon-orange: #ff6600;
    --glass: rgba(255, 255, 255, 0.05);
}

body {
    background-color: #050505;
    color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
    overflow-x: hidden;
}

/* حاوية اللينكات */
.links-container {
    width: 100%;
    max-width: 450px;
    padding: 40px 20px;
    text-align: center;
    z-index: 10;
}

.profile-img img {
    width: 250px; /* العرض اللي أنت محدده */
    height: 250px; /* الارتفاع اللي أنت محدده */
    border-radius: 50%; /* عشان الصورة تكون مدورة */
    border: 3px solid var(--neon-blue);
    box-shadow: 0 0 20px var(--neon-blue);
    
    /* 👇 السطر السحري اللي هيحل المشكلة 👇 */
    object-fit: cover; 
    
    /* اختياري: عشان تضمن إن وشك يكون في نص الدايرة بالظبط */
    object-position: center; 
}

h1 { font-size: 1.5rem; margin-bottom: 5px; }
.bio { color: #888; font-size: 0.9rem; margin-bottom: 25px; }

/* الأيقونات */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
}

.social-icons a {
    color: white;
    font-size: 1.4rem;
    transition: 0.3s;
}

.social-icons a:hover { color: var(--neon-blue); transform: translateY(-5px); }

/* كروت اللينكات */
.category-title {
    text-align: left;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #555;
    margin: 25px 0 10px 10px;
    letter-spacing: 2px;
}

.link-card {
    display: flex;
    align-items: center;
    background: var(--glass);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 25px;
    margin-bottom: 15px;
    border-radius: 15px;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.link-card i:first-child { font-size: 1.2rem; margin-right: 15px; width: 25px; }
.link-card span { flex: 1; text-align: left; font-weight: 500; }
.arrow { font-size: 0.8rem; opacity: 0.3; }

/* تأثير الـ Hover */
.link-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--neon-blue);
    transform: translateX(10px);
    box-shadow: -5px 0 15px rgba(0, 210, 255, 0.3);
}

.whatsapp:hover {
    border-color: #25d366;
    box-shadow: -5px 0 15px rgba(37, 211, 102, 0.3);
}

/* الخلفية المتحركة */
.bg-animation {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, #111, #000);
    z-index: -1;
}