/* ===========================================
   네이버 블로그 플로팅 - 동그라미 + 흰색 글씨
   =========================================== */

/* 네이버 블로그 플로팅 버튼 - 동그라미만 */
.naver-blog-floating-btn {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 80px !important;
    height: 80px !important;
    background: #03C75A !important;  /* 네이버 그린 */
    border-radius: 50% !important;  /* 동그라미 */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 20px rgba(3, 199, 90, 0.4) !important;
    cursor: pointer !important;
    z-index: 9999 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    border: none !important;  /* 테두리 제거 */
    padding: 0 !important;
}

/* 이미지 숨기기 - 글씨만 표시 */
.naver-blog-floating-btn img {
    display: none !important;
}

/* 버튼에 직접 텍스트 추가 */
.naver-blog-floating-btn::before {
    content: 'BLOG' !important;
    color: #ffffff !important;  /* 흰색 글씨 */
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-align: center !important;
}

/* 호버 효과 */
.naver-blog-floating-btn:hover {
    transform: translateY(-5px) scale(1.1) !important;
    box-shadow: 0 6px 30px rgba(3, 199, 90, 0.6) !important;
}

/* 툴팁 스타일 */
.naver-blog-floating-btn .tooltip {
    position: absolute;
    right: 90px;
    top: 50%;
    transform: translateY(-50%);
    background: #1a4d6d;
    color: white;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.naver-blog-floating-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    right: 95px;
}

/* 모바일 */
@media (max-width: 768px) {
    .naver-blog-floating-btn {
        width: 70px !important;
        height: 70px !important;
        bottom: 20px !important;
        right: 20px !important;
    }
    
    .naver-blog-floating-btn::before {
        font-size: 12px !important;
    }
    
    .naver-blog-floating-btn .tooltip {
        display: none !important;
    }
}
