/* 调整状态指示器位置 - 与信任卡片对齐 */
.status-indicator {
    bottom: 80px !important;
}

/* 调整格式标签orbit-6的位置 */
.format-item.orbit-6 {
    transform: translate(-50%, -50%) rotate(300deg) translateX(360px) rotate(-300deg);
}

/* 移动端调整 */
@media (max-width: 768px) {
    .status-indicator {
        bottom: -40px !important;
    }
    
    .format-item.orbit-6 {
        transform: translate(-50%, -50%) rotate(300deg) translateX(260px) rotate(-300deg);
    }
}

@media (max-width: 480px) {
    .status-indicator {
        bottom: -35px !important;
    }
    
    .format-item.orbit-6 {
        transform: translate(-50%, -50%) rotate(300deg) translateX(210px) rotate(-300deg);
    }
}
