/* 自定义全局样式 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary-red: #ef4444;
}

body {
    font-family: 'Inter', sans-serif;
    -webkit-tap-highlight-color: transparent;
}

/* 隐藏滚动条 */
::-webkit-scrollbar {
    display: none;
}

/* 底部安全区域适配 */
.safe-bottom {
    padding-bottom: env(safe-area-inset-bottom);
}

/* 导航激活状态 */
.nav-active {
    color: var(--primary-red) !important;
}

.nav-active i {
    transform: scale(1.1);
}

/* 点击缩放动画 */
.active-scale {
    transition: transform 0.1s ease;
}

.active-scale:active {
    transform: scale(0.96);
}

/* 容器最大宽度限制（模拟手机屏幕） */
body {
    max-width: 450px;
    margin: 0 auto;
    box-shadow: 0 0 50px rgba(0,0,0,0.1);
}
