.stc-cloud-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.stc-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
    color: #333;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border: 1px solid rgba(255,255,255,0.4);
}
.stc-tag:hover {
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(118, 75, 162, 0.25);
}
.stc-tag .stc-count {
    margin-left: 8px;
    background: rgba(0,0,0,0.08);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    transition: background 0.3s ease;
}
.stc-tag:hover .stc-count {
    background: rgba(255,255,255,0.25);
}
