/* ======================================== */
/* Mobile Scroll Module - 단순화된 버전 */
/* 모바일 전용 기본 스크롤 기능 */
/* ======================================== */

@media (max-width: 768px) {
    /* ======================================== */
    /* 기본 스크롤 동작 */
    /* ======================================== */
    
    html {
        scroll-behavior: smooth !important;
    }
    
    body {
        scroll-behavior: smooth !important;
    }
    
    /* ======================================== */
    /* 모바일 V 아이콘 스타일 */
    /* ======================================== */
    
    .mobile-scroll-down {
        position: absolute !important;
        bottom: 45px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        color: var(--white) !important;
        font-size: 24px !important;
        cursor: pointer !important;
        z-index: 10 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        width: auto !important;
        height: auto !important;
        border: none !important;
        border-radius: 0 !important;
        background: transparent !important;
        backdrop-filter: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        animation: bounce 2s infinite !important;
    }
    
    /* V 아이콘 애니메이션 */
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% {
            transform: translateX(-50%) translateY(0);
        }
        40% {
            transform: translateX(-50%) translateY(-10px);
        }
        60% {
            transform: translateX(-50%) translateY(-5px);
        }
    }
    
    /* ======================================== */
    /* 모바일 스크롤 업 화살표 스타일 */
    /* ======================================== */
    
    .mobile-scroll-up-container {
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;
        z-index: 1000 !important;
        display: none !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 8px !important;
    }
    
    .mobile-scroll-up-container.visible {
        display: flex !important;
    }
    
    .mobile-scroll-up {
        width: 50px !important;
        height: 50px !important;
        border-radius: 50% !important;
        background: rgba(0, 0, 0, 0.7) !important;
        border: 2px solid rgba(255, 255, 255, 0.3) !important;
        color: var(--white) !important;
        font-size: 18px !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: all 0.3s ease !important;
        backdrop-filter: blur(10px) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2) !important;
    }
    
    .mobile-scroll-up:hover {
        background: rgba(0, 0, 0, 0.8) !important;
        border-color: rgba(255, 255, 255, 0.5) !important;
        transform: scale(1.05) !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
    }
    
    .mobile-scroll-up:active {
        transform: scale(0.95) !important;
        background: rgba(0, 0, 0, 0.9) !important;
    }
    
    .mobile-scroll-up:focus {
        outline: 2px solid rgba(255, 255, 255, 0.6) !important;
        outline-offset: 2px !important;
    }
    
    .mobile-scroll-up i {
        font-size: 18px !important;
        color: var(--white) !important;
        transition: transform 0.3s ease !important;
    }
    
    .mobile-scroll-up-text {
        font-size: 12px !important;
        color: var(--white) !important;
        text-align: center !important;
        font-weight: 500 !important;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5) !important;
        transition: color 0.3s ease !important;
        cursor: pointer !important;
    }
    
    .mobile-scroll-up-text:hover {
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    /* ======================================== */
    /* 모바일 스크롤 모듈 끝 */
    /* ======================================== */
}