/* 基础移动端优化 */
body {
    font-family: 'Noto Sans SC', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #f8f9fa;
}

/* 响应式容器填充 */
.container-lg {
    padding-left: 15px;
    padding-right: 15px;
}

/* 导航栏优化 */
.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-link {
    font-size: 0.95rem;
    padding: 8px 12px !important;
}

/* 文章列表优化 */
.list-group-item {
    border-radius: 8px !important;
    margin-bottom: 8px;
    transition: transform 0.2s;
}

.list-group-item:hover {
    transform: translateX(5px);
}

/* 按钮点击效果 */
.btn-custom:active {
    transform: scale(0.98);
}

/* 极端小屏幕优化 */
@media (max-width: 360px) {
    .display-4 {
        font-size: 1.75rem !important;
    }
    
    .nav-link {
        font-size: 0.85rem;
        padding: 6px 10px !important;
    }
    
    .btn-custom {
        font-size: 0.8rem;
    }
}
