/* Social App Safety Center Styles - haoxuekeji.cn 2025 */

.social-safety-layout {
    --social-safety-accent: #10b981;
    --social-safety-highlight: #3b82f6;
}

.social-safety-overview {
    backdrop-filter: blur(20px);
    transition: all 0.6s ease;
}

.social-safety-overview:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(16, 185, 129, 0.25);
}

.social-safety-item {
    transition: all 0.5s ease;
}

.social-safety-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(16, 185, 129, 0.3);
}

.social-monitoring-panel {
    transition: all 0.5s ease;
}

.social-monitoring-panel:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(249, 115, 22, 0.25);
}

.social-tip-card {
    transition: all 0.5s ease;
}

.social-tip-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.25);
}

@keyframes social-safety-glow {
    0% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.3); }
    50% { box-shadow: 0 0 30px rgba(16, 185, 129, 0.6); }
    100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.3); }
}

.social-safety-icon:hover {
    animation: social-safety-glow 2s ease-in-out infinite;
}

.social-report-icon {
    transition: all 0.4s ease;
}

.social-report-icon:hover {
    transform: scale(1.1) rotate(10deg);
}