/**
 * main.css
 * ================================================
 * 网站基础样式定义文件
 * ------------------------------------------------
 * 功能说明：
 * 1. 定义CSS变量和全局色彩主题
 * 2. 设置基础页面样式（body、字体、背景等）
 * 3. 统一Tailwind CSS类的样式覆盖
 * 4. 定义LOGO特效和品牌视觉元素
 * 
 * 样式组织：
 * - CSS变量定义 (:root)
 * - 全局页面样式 (body, 背景渐变)
 * - 字体类重置 (.font-*, h1, h2, h3)
 * - 文本颜色类 (.text-white, .text-muted)
 * - LOGO白色发光特效 (.nav-logo)
 * 
 * 设计理念：
 * - 深色主题配色方案
 * - 现代游戏网站视觉风格
 * - 品牌色彩统一管理
 * 
 * 版本: 1.0.4
 * 最后更新: 2025-01-XX
 */

/* 基础样式设置 */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --background-color: #183f85;
    --game-container-bg: #1f2937;
    --game-title-bg: #026bff;
    --highlight-title: #d6fe51;
    --text-color: #f5f5f7;
    --text-secondary: #a0aec0;
    --accent-color: #fcd34d;
}

/* 全局通用样式 */
body {
    /* 使用纯色背景，移除光晕效果 */
    background-color: var(--background-color) !important;
    min-height: 100vh;
    font-family: 'Nunito', sans-serif;
    color: var(--text-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* 覆盖Tailwind的bg-black类 */
body.bg-black {
    background-color: var(--background-color) !important;
}

/* 文本样式 */
h1, h2, h3, .font-teko {
    font-family: 'Nunito', sans-serif;
}

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

.text-white {
    color: var(--text-color);
}

.text-muted {
    color: var(--text-secondary);
}

.font-righteous {
    font-family: 'Nunito', sans-serif;
}

.font-russo {
    font-family: 'Nunito', sans-serif;
}

h1.font-righteous, 
.title-main {
    font-family: 'Nunito', sans-serif;
}

.font-pressstart {
    font-family: 'Nunito', sans-serif;
}

.font-vt323 {
    font-family: 'Nunito', sans-serif;
}

/* LOGO样式 - 移除发光特效 */
.nav-logo {
    position: relative;
} 