/* تنظیمات کلی صفحه */
body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1a1a1a;
    font-family: 'Vazir', Tahoma, sans-serif;
    overflow: hidden;
}

/* کانتینر اصلی */
.container {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* استایل عکس گرد */
.profile-img {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* افکت هاور روی عکس */
.profile-img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
}

/* استایل متن اصلی */
.caption {
    margin-top: 25px;
    color: #e0e0e0;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
    line-height: 1.8;
}

/* استایل آیدی اینستاگرام */
.handle {
    display: block;
    margin-top: 8px;
    font-size: 1.1rem;
    color: #b0b0b0;
    font-weight: 300;
}

/* واکنش‌گرا برای موبایل */
@media (max-width: 600px) {
    .profile-img {
        width: 160px;
        height: 160px;
    }
    .caption {
        font-size: 1.1rem;
    }
}