
/* Verification Badges */
.verification-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    vertical-align: middle;
    cursor: help;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.verification-badge:hover {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.verification-badge i {
    font-size: 0.9em;
}

/* Colors & Effects */
.badge-owner { color: #FFD700; text-shadow: 0 0 8px rgba(255, 215, 0, 0.5); }
.badge-moderator { color: #FF4136; text-shadow: 0 0 8px rgba(255, 65, 54, 0.5); }
.badge-admin { color: #A9A9A9; text-shadow: 0 0 8px rgba(169, 169, 169, 0.5); }
.badge-politics { color: #00008B; text-shadow: 0 0 8px rgba(0, 0, 139, 0.5); }
.badge-famous { color: #1DA1F2; text-shadow: 0 0 8px rgba(29, 161, 242, 0.5); }
.badge-paid { text-shadow: 0 0 8px rgba(177, 13, 201, 0.5); }

/* Tooltip Customization */
[data-tippy-root] .tippy-box[data-theme~='exclusive'] {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.95), rgba(15, 23, 42, 0.95));
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 8px 12px;
}

.badge-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge-title {
    font-weight: 800;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.badge-rarity {
    font-size: 0.75rem;
    opacity: 0.8;
    font-style: italic;
}
