/* ============================================
   نشان‌ها (Badges) - الماس و تیک آبی
   ============================================ */

.user-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
    vertical-align: middle;
    margin-right: 4px;
    flex-shrink: 0;
    line-height: 1;
}

/* الماس زرد (منتلاس) */
.user-badge.mantelas-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #fff;
    animation: diamondShine 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(251, 191, 36, 0.5);
}

@keyframes diamondShine {
    0%, 100% {
        box-shadow: 0 0 6px rgba(251, 191, 36, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 16px rgba(251, 191, 36, 0.9);
        transform: scale(1.1);
    }
}

/* تیک آبی (verified) */
.user-badge.verified-badge {
    background: linear-gradient(135deg, #1d9bf0, #0066cc);
    color: #fff;
    font-size: 11px;
}

/* ============================================
   حلقه RGB دور پروفایل
   ============================================ */
.profile-frame {
    position: relative;
    display: inline-block;
}

.profile-frame.mantelas-frame::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: conic-gradient(
        #ff0000,
        #ff7700,
        #ffff00,
        #00ff00,
        #00ffff,
        #0077ff,
        #7700ff,
        #ff00ff,
        #ff0000
    );
    animation: rgbRotate 3s linear infinite;
    z-index: -1;
}

.profile-frame.mantelas-frame::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: conic-gradient(
        #ff0000,
        #ff7700,
        #ffff00,
        #00ff00,
        #00ffff,
        #0077ff,
        #7700ff,
        #ff00ff,
        #ff0000
    );
    animation: rgbRotate 3s linear infinite;
    filter: blur(10px);
    opacity: 0.7;
    z-index: -2;
}

@keyframes rgbRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ============================================
   نشان‌ها بغل پروفایل (سایدبار)
   ============================================ */
.profile-badges-inline {
    position: absolute;
    top: -6px;
    left: -6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 5;
}

.profile-badges-inline .user-badge {
    width: 22px;
    height: 22px;
    font-size: 11px;
    border: 2px solid var(--bg);
    margin: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* ============================================
   نشان‌ها کنار اسم (متن)
   ============================================ */
.username-with-badges {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.username-with-badges .user-badge {
    width: 16px;
    height: 16px;
    font-size: 9px;
    margin: 0;
}

/* ============================================
   نشان‌ها کنار آواتار در لیست‌ها
   ============================================ */
.avatar-with-badges {
    position: relative;
    display: inline-block;
}

.avatar-with-badges .avatar-badges {
    position: absolute;
    bottom: -2px;
    left: -2px;
    display: flex;
    gap: 2px;
    z-index: 5;
}

.avatar-with-badges .avatar-badges .user-badge {
    width: 16px;
    height: 16px;
    font-size: 9px;
    border: 2px solid var(--bg);
    margin: 0;
}

/* ============================================
   حلقه RGB برای آواتارهای کوچیک
   ============================================ */
.avatar-frame {
    position: relative;
    display: inline-block;
}

.avatar-frame.mantelas-frame::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: conic-gradient(
        #ff0000,
        #ff7700,
        #ffff00,
        #00ff00,
        #00ffff,
        #0077ff,
        #7700ff,
        #ff00ff,
        #ff0000
    );
    animation: rgbRotate 3s linear infinite;
    z-index: -1;
}

/* ============================================
   حالت روشن
   ============================================ */
body.light .profile-badges-inline .user-badge,
body.light .avatar-with-badges .avatar-badges .user-badge {
    border-color: #fff;
}

/* ============================================
   ریسپانسیو
   ============================================ */
@media (max-width: 800px) {
    .profile-badges-inline .user-badge {
        width: 18px;
        height: 18px;
        font-size: 9px;
    }
}