* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Cairo', sans-serif; /* استخدام الخط العربي */
}

body {
    background: linear-gradient(135deg, #d5006d, #8e24aa);
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
}

@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    text-align: center;
    width: 100%;
    max-width: 600px;
    padding: 20px;
}

.image-box {
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 50%;
    margin: 0 auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: move 2s infinite alternate;
}

@keyframes move {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ffffff;
}

.name {
    font-size: 2.5rem;
    margin-top: 15px;
    position: relative;
    display: inline-block;
    color: #ffffff;
    animation: lightning 1s infinite alternate;
}

@keyframes lightning {
    0% { text-shadow: 0 0 5px #ffffff, 0 0 10px #ffffff; }
    100% { text-shadow: 0 0 15px #ff00ff, 0 0 30px #ff00ff; }
}

.bio {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #ccc;
}

.buttons {
    margin-top: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0075ff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    margin: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 8px rgba(0, 117, 255, 0.5);
}

.btn:hover {
    background-color: #005bb5;
    transform: scale(1.05);
}



footer {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #aaa;
}
