/* ============================================
   모바일 푸터 스킨 1 - 뉴시스 스타일
   ============================================ */

.mobile_footer {
    background: #333;
    color: #999;
    padding: 25px 0 80px 0;
}

/* 푸터 링크 섹션 */
.footer_links_section {
    padding: 0 15px;
    border-bottom: 1px solid #444;
    padding-bottom: 20px;
    margin-bottom: 15px;
}

.footer_links_row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-bottom: 10px;
}

.footer_links_row:last-child {
    margin-bottom: 0;
}

.footer_links_row a {
    color: #999;
    text-decoration: none;
    font-size: 13px;
    white-space: nowrap;
}

.footer_links_row a:active {
    color: #5AB2FF;
}

.footer_links_row a.privacy {
    color: #5AB2FF;
    font-weight: 600;
}

.footer_links_row a:not(:last-child)::after {
    content: '|';
    margin-left: 12px;
    color: #555;
}

/* 저작권 */
.footer_copyright {
    text-align: center;
    padding: 0 15px;
}

.footer_copyright p {
    margin: 0;
    font-size: 12px;
    color: #777;
    line-height: 1.6;
}

/* Top 버튼 */
.mobile_top_btn {
    position: fixed;
    bottom: 20px;
    right: 15px;
    width: 50px;
    height: 50px;
    background: #5AB2FF;
    border: none;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 999;
}

.mobile_top_btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile_top_btn:active {
    transform: scale(0.95);
}

