.top-profile-card{
    padding: 10px 0;
}

.profile-image{
    width: 100%;
    border-radius: 50%;
    height: 100%;
}
.profile-image img{
    border-radius: 50%;
}

/* پس‌زمینه تاریک */
.image-modal {
    display: none; /* بعداً با JS فعال میشه */
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* ظرف عکس */
.image-modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 18px;
    overflow: hidden;
    animation: popup 0.25s ease-out;
}

/* خود عکس */
.image-modal-content img {
    width: 100%;
    height: auto;
    display: block;
}

/* انیمیشن ظاهر شدن */
@keyframes popup {
    from {
        transform: scale(0.6);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* وقتی روی عکس کوچیک هاور شد */
.profile-image img {
    cursor: pointer;
    transition: transform 0.2s ease;
}

.profile-image img:hover {
    transform: scale(1.05);
}


.top-profile-card .account-detail-number{
    display: flex;
    justify-content: space-between;
    text-align: center;
}
.top-profile-card .account-detail-number > div{
    display: flex;
    flex-direction: column;
}
.top-profile-card .account-detail-number span.number{
    font-weight: 700;
}
.profile-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}
.profile-mode{
    display: flex;
    gap: 5px;
}


.meida-top-buttons{
    display: flex;
    justify-content: space-around;
    border-top: var(--border);
    border-bottom: var(--border);
}
.contents{
    display: flex;
    flex-wrap: wrap;
}
.content{
    position: relative;
    width: 33.33%;
    height: 200px;
    background-color: var(--video-bg);
}
.content img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: .6;
}
.content p.views{
    position: absolute;
    bottom: 5px;
    right: 5px;
    color: var(--color-white-3);
}
.content p.views span{
    color: var(--color-white-3);
}