/* 최근 로그인 배지 스타일 */

.social-recent-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    z-index: 10;
    animation: badgePulse 2s ease-in-out infinite;
}

.social-recent-badge i {
    color: #ffffff;
    font-size: 0.7rem;
}

/* 배지 펄스 애니메이션 */
@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.6);
    }
}

/* 호버 시 툴팁 효과 */
.social-recent-badge::after {
    content: attr(title);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1000;
}

.social-recent-badge:hover::after {
    transform: translateX(-50%) scale(1);
    opacity: 1;
}

/* 소셜 버튼 position relative 설정 */
.social-btn {
    position: relative;
}

/* 반응형 */
@media (max-width: 480px) {
    .social-recent-badge {
        width: 20px;
        height: 20px;
        top: -6px;
        right: -6px;
    }
    
    .social-recent-badge i {
        font-size: 0.6rem;
    }
}
