/*
Theme Name: 小游戏主题完整版
Version: 1.0
*/
*{margin:0;padding:0;box-sizing:border-box;}
body{background:#f4f5f9;font-family:"Microsoft YaHei",sans-serif;font-size:14px;}
.container{max-width:100%;padding:12px;}

/* 左右轮播 */
.slide-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 15px;
    position: relative;
}
.slide-box {
    width: 300%;
    height: 180px;
    display: flex;
    animation: slideFlash 9s infinite ease-in-out;
}
.slide-box a {
    display: block;
    width: 100%;
}
.slide-box img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
@keyframes slideFlash {
    0%      { transform: translateX(0); }
    30%     { transform: translateX(0); }
    33.3%   { transform: translateX(-33.33%); }
    63.3%   { transform: translateX(-33.33%); }
    66.6%   { transform: translateX(-66.66%); }
    96.6%   { transform: translateX(-66.66%); }
    100%    { transform: translateX(0); }
}

/* 5宫格 */
.entry-5{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:5px;
    margin-bottom:20px;
}
.entry-item{text-align:center;}
.entry-item img{width:48px;height:48px;border-radius:50%;margin-bottom:5px;object-fit:cover;}
.entry-item p{font-size:12px;color:#333;}

/* 平台分类 */
.platform-tab{
    display:flex;
    background:#fff;
    border-radius:12px;
    padding:10px;
    margin-bottom:15px;
    gap:8px;
}
.platform-tab a{
    flex:1;
    text-align:center;
    padding:8px 0;
    background:#f4f5f9;
    border-radius:8px;
    font-size:13px;
    font-weight:bold;
    color:#333;
    text-decoration:none;
}
.platform-tab a.active{
    background:#5b43e6;
    color:#fff;
}

/* 游戏类型 */
.game-type-tab{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:20px;
}
.game-type-tab a{
    padding:6px 10px;
    background:#fff;
    border-radius:8px;
    font-size:12px;
    color:#333;
    text-decoration:none;
}

/* 最新游戏滚动 */
.new-game-scroll{
    width:100%;
    overflow:hidden;
    background:#fff;
    border-radius:12px;
    padding:10px;
    margin-bottom:20px;
}
.scroll-title{font-size:15px;font-weight:bold;margin-bottom:10px;}
.scroll-view{overflow:hidden;width:100%;}
.scroll-wrap{
    display:flex;
    white-space:nowrap;
    animation:scrollLeft 30s linear infinite;
}
.scroll-item{
    flex:0 0 20%;
    text-align:center;
}
.scroll-item img{width:45px;height:45px;border-radius:10px;object-fit:cover;}
.scroll-item span{font-size:11px;display:block;margin-top:3px;}
@keyframes scrollLeft{
    0%{transform:translateX(100%);}
    100%{transform:translateX(-100%);}
}

/* 热门游戏 强制每行3个 全手机自适应不错位 */
.hot-game-title{
    font-size:16px;
    font-weight:bold;
    margin:10px 0 15px;
}
.games-grid{
    display:grid;
    /* 固定3等分，所有设备统一3列 */
    grid-template-columns:repeat(3, 1fr);
    gap:10px;
    width:100%;
}
.game-card{
    background:#fff;
    border-radius:14px;
    padding:10px 6px;
    text-align:center;
    box-shadow:0 2px 8px rgba(0,0,0,0.05);
}
.game-card img{
    width:60px;
    height:60px;
    border-radius:12px;
    margin:0 auto 6px;
    object-fit:cover;
}
.game-name{
    font-size:13px;
    font-weight:bold;
    color:#333;
    margin-bottom:3px;
}
.game-platform{
    font-size:12px;
    color:#888;
    margin-bottom:8px;
}
.play-btn{
    display:inline-block;
    background:#5b43e6;
    color:#fff;
    padding:3px 12px;
    border-radius:20px;
    font-size:12px;
    text-decoration:none;
}

/* 小屏手机依然保持3列，自动缩小卡片，不错位 */
@media(max-width:480px){
    .games-grid{
        grid-template-columns:repeat(3, 1fr);
        gap:8px;
    }
    .game-card img{
        width:52px;
        height:52px;
    }
    .game-name{
        font-size:12px;
    }
}
@media(max-width:360px){
    .games-grid{
        grid-template-columns:repeat(3, 1fr);
        gap:6px;
    }
    .game-card{
        padding:8px 4px;
    }
    .game-card img{
        width:46px;
        height:46px;
    }
}
.game-card{
    background:#fff;
    border-radius:14px;
    padding:10px;
    text-align:center;
    box-shadow:0 2px 8px rgba(0,0,0,0.05);
}
.game-card img{
    width:60px;
    height:60px;
    border-radius:12px;
    margin:0 auto 6px;
    object-fit:cover;
}
.game-name{font-size:13px;font-weight:bold;color:#333;margin-bottom:3px;}
.game-platform{font-size:12px;color:#888;margin-bottom:8px;}
.play-btn{
    display:inline-block;
    background:#5b43e6;
    color:#fff;
    padding:3px 12px;
    border-radius:20px;
    font-size:12px;
    text-decoration:none;
}

/* 任何手机都完美 4列 */
@media(max-width:480px){
    .games-grid{grid-template-columns:repeat(4, 1fr);}
    .game-card img{width:50px;height:50px;}
}