/* Social Proof Notification */
.social-proof-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--bg-card, #1c1c1e);
    border: 1px solid var(--border-color, #333);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transform: translateY(150px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 9999;
    max-width: 320px;
}

.social-proof-notification.show {
    transform: translateY(0);
    opacity: 1;
}

.sp-icon {
    font-size: 24px;
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.sp-content p {
    margin: 0;
}

.sp-text {
    font-size: 14px;
    color: var(--text-primary, #fff);
    line-height: 1.4;
}

.sp-time {
    font-size: 11px;
    color: var(--text-secondary, #aaa);
    margin-top: 4px !important;
}

.text-green {
    color: #00ff88;
    font-weight: bold;
}

@media (max-width: 900px) {
    .social-proof-notification {
        bottom: auto;
        top: 20px;
        left: 20px;
        right: 20px;
        max-width: calc(100% - 40px);
        transform: translateY(-150px);
        margin: 0 auto;
    }
}
