/* PC 기본 설정 */
.TOP_slide {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50% !important; /* 원형 유지 */
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.TOP_slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 블랙 배경 채우기 */
.TOP_slide .fill {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 0%;
    background: #000000;
    z-index: 1;
    transition: height 0.1s linear;
}

/* 화이트 V자 아이콘 */
.TOP_slide .top-icon {
    position: relative;
    z-index: 10;
    font-size: 22px;
    color: #000000; /* 초기 블랙 */
    transition: color 0.3s;
}

/* 50% 이상 스크롤 시 아이콘 화이트 반전 */
.TOP_slide.over50 .top-icon {
    color: #ffffff !important;
}

/* =========================================
   [모바일 전용] Viking 스타일 대폭 확대 (768px 이하)
========================================= */
@media screen and (max-width: 768px) {
    .TOP_slide {
        width: 50px !important; /* 이미지처럼 크게 확대 */
        height: 50px !important;
        right: 30px !important;
        bottom: 30px !important;
    }
    .TOP_slide .top-icon {
        font-size: 20px !important; /* 아이콘 크기 동시 확대 */
    }
}