
:root {
    --fat-blue-dark: #3399ff; /* 顶部和底部的主要蓝色 */
    --fat-blue-light: #5f89ce; /* 顶部导航文字的浅蓝色/紫色 */
    --fat-bg-main: #ffffff; /* 主内容区背景白色 */
    --fat-text-dark: #333333;
    --fat-text-light: #ffffff;
    --fat-font-stack: Arial, Helvetica, sans-serif;
}

/* --- 2. 全局设置 --- */
body {
    font-family: var(--fat-font-stack);
    margin: 0;
    padding: 0;
    background-color: var(--fat-bg-main);
    color: var(--fat-text-dark);
    min-width: 320px; /* 防止在极小屏幕上出现问题 */
}

.fat-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

a {
    text-decoration: none;
    color: var(--fat-text-dark);
}

/* --- 3. 顶部 Header (蓝色) --- */
.fat-top-header {
    background-color: var(--fat-blue-dark);
    color: var(--fat-text-light);
    padding: 10px 0;
}

.fat-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap; /* 允许在移动端换行 */
}

/* Logo */
.fat-logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--fat-text-light);
    text-transform: uppercase;
}

.fat-logo a {
    color: var(--fat-text-light);
}

/* 导航链接 */
.fat-nav-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0 20px; /* PC 端居中定位 */
    flex-wrap: wrap;
    justify-content: center;
}

.fat-nav-links li a {
    color: var(--fat-text-light);
    font-size: 15px;
    font-weight: 500;
    padding: 0 10px;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
}

/* Google 搜索 (模拟) */
.fat-google-search {
    background-color: var(--fat-text-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid #ccc;
}

.fat-google-search input {
    border: none;
    padding: 5px 8px;
    font-size: 14px;
    outline: none;
    width: 150px;
}

.fat-google-search button {
    background-color: #f1f1f1;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
    color: #777;
}

/* --- 4. 主内容区域 - 游戏网格 --- */
.fat-main-content {
    padding: 20px 0;
}

.fat-game-grid {
    display: grid;
    /* PC 端：每行 9 列，适应截图 */
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
}

/* 游戏卡片 */
.fat-game-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.fat-game-card:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.fat-game-card a { display: block; }

.fat-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

/* --- 5. 底部内容/描述 --- */
.fat-site-description {
    background-color: var(--fat-bg-main);
    padding: 40px 0;
    border-top: 1px solid #eee;
}

.fat-site-description h2 {
    font-size: 18px;
    color: var(--fat-blue-dark);
    text-align: center;
    margin-bottom: 20px;
}

.fat-site-description p {
    font-size: 13px;
    line-height: 1.8;
    color: #666;
    text-align: justify;
}

/* --- 6. 底部 Footer (浅蓝色) --- */
.fat-footer {
    background-color: #eaf3ff; /* 接近截图的浅蓝色 */
    color: #777;
    padding: 15px 0;
    text-align: center;
    font-size: 12px;
}

.fat-footer a {
    color: var(--fat-blue-dark);
    margin: 0 5px;
}

/* --- 7. 响应式调整 --- */
@media (max-width: 1000px) {
    .fat-game-grid {
        /* Tablet/Large Mobile: 每行 6 列 */
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
}

@media (max-width: 768px) {
    .fat-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .fat-nav-links {
        order: 2; /* 导航链接放在下方 */
        justify-content: flex-start;
        margin: 0;
    }

    .fat-google-search {
        order: 1; /* 搜索框放在中间 */
        margin: 0 0 10px 0;
        width: 100%;
    }

    .fat-google-search input {
        width: 100%;
    }

    .fat-logo {
        order: 0; /* Logo 保持最上方 */
    }

    .fat-game-grid {
        /* Mobile: 每行 4 列 */
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
        gap: 5px;
    }

    .fat-site-description {
        padding: 20px 0;
    }
}
.fat-game-card p{
    font-size: 13px;
    text-align: center;
}