@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* =========================================
   核心修改：全局隐藏滚动条 (App 沉浸感优化)
   这会让页面看起来更像原生 App，而不是网页
   ========================================= */

/* 1. 针对 Chrome, Safari, Edge (Webkit内核) */
::-webkit-scrollbar {
    width: 0px;  /* 宽度设为 0，直接隐藏 */
    height: 0px;
    background: transparent; /* 背景透明 */
}

/* 2. 针对 Firefox */
* {
    scrollbar-width: none;
}

/* 3. 针对 IE / Edge Legacy */
* {
    -ms-overflow-style: none;
}

/* =========================================
   其他通用样式
   ========================================= */

/* 手机屏幕容器通用样式 */
.mobile-wrapper {
    background-color: #F8FAFC; /* Slate-50 */
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    /* 确保 iOS 滚动顺滑 */
    -webkit-overflow-scrolling: touch;
}

/* 玻璃拟态效果 (Glassmorphism) */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}