/**
 * fonts.css
 * ================================================
 * 网站字体样式定义文件
 * ------------------------------------------------
 * 功能说明：
 * 1. 统一管理网站各元素的字体样式
 * 2. 应用Nunito字体到指定UI组件
 * 3. 确保字体渲染的一致性和可读性
 * 4. 定义专用组件的字体权重和尺寸
 * 
 * 样式组织：
 * - 游戏区标题 (.title-main)
 * - 侧边栏标题 (.games-sidebar h2, .games-sidebar h3) 
 * - 页脚文案 (.footer-text)
 * - 控制面板 (.controls-modal h2, .controls-modal h3)
 * 
 * 字体策略：
 * - 主字体：Nunito（现代、易读）
 * - 字重层次：800/700/600（清晰层级）
 * - 响应式尺寸：根据组件调整
 * 
 * 模块分工：
 * - 游戏内容区域字体样式 → game-content.css
 * - 导航栏字体样式 → navbar.css  
 * - 页脚字体样式 → footer.css
 * 
 * 版本: 1.0.4
 * 最后更新: 2025-01-XX
 */

/* 游戏区 H1 */
.title-main {
    font-family: 'Nunito', sans-serif !important;
    font-weight: 900 !important;
}

/* 游戏内容区域字体样式 - 已迁移到 game-content.css */

/* 更多游戏区域标题 */
.games-sidebar h2 {
    font-family: 'Nunito', sans-serif !important;
    font-size: 1.5rem !important;  
    font-weight: 800 !important;
    color: #f5f5f7 !important; 
    margin: 0 0 0.75rem 0; /* 上右下左的间距：top-right-bottom-left */
}

.games-sidebar h3 {
    font-family: 'Nunito', sans-serif !important;
    font-weight: 700 !important;
}

/* 页脚文案 */
.footer-text {
    font-family: 'Nunito', sans-serif !important;
}

/* 游戏控制模态框标题 */
.controls-modal h2 {
    font-family: 'Nunito', sans-serif !important;
    font-weight: 800 !important;
}

.controls-modal h3 {
    font-family: 'Nunito', sans-serif !important;
    font-weight: 700 !important;
} 