/* PERFIL */
.uts-container {
    margin-top: 20px;
}

.uts-current {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #111;
    padding: 12px;
    border-radius: 12px;
    color: #fff;
}

.uts-badge-main {
    background: linear-gradient(45deg, #ff7a18, #ffb347);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
}

#uts-toggle {
    margin-left: auto;
    background: #1890ff;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    color: white;
    cursor: pointer;
}

/* GRID */
.uts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.uts-card {
    background: #1c1c1c;
    color: #fff;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
}

.uts-btn {
    background: #52c41a;
    border: none;
    padding: 5px 10px;
    border-radius: 6px;
    color: white;
    cursor: pointer;
}

/* ===== COMENTARIOS ===== */

.uts-sub {
    margin-top: 3px;
}

/* título */
.uts-title {
    background: linear-gradient(45deg, #722ed1, #9254de);
    color: #fff;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    margin-right: 5px;
    display: inline-block;
}

/* rango */
.uts-rank {
    background: #2f2f2f;
    color: #ddd;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 10px;
    display: inline-block;
}

/* 🔥 OCULTAR GAMIPRESS DUPLICADO */
.wpd-comment-author .gamipress-achievements,
.wpd-comment-author .gamipress-badges,
.wpd-comment-author .gamipress-ranks,
.wpd-comment-author .wpdiscuz-item-badge,
.wpd-comment-author .wpdiscuz-badge {
    display: none !important;
}

/* mobile */
@media (max-width: 600px) {
    .uts-title, .uts-rank {
        font-size: 9px;
    }
}