/* =====================================================
   全局样式
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{
    --page-padding:20px;
}

body{
    background:#f3f4f6;
    color:#222;
    font-family:Arial,sans-serif;
}

.container{
    max-width:768px;
    margin:0 auto;
    background:#fff;
    min-height:100vh;
    overflow:hidden;
}

/* =====================================================
   顶部头部区域
===================================================== */

.header{
    display:flex;
    align-items:center;
    padding:10px 20px;
    border-bottom:1px solid #eee;
}

.logo{
    width:42px;  /* 修改顶部logo大小 */
    height:42px; /* 修改顶部logo大小 */
    flex-shrink:0;
}

.logo img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.header-text{
    margin-left:14px;  /* 修改顶部描述文字大小 */
}

.header-text h1{
    font-size:16px; /* 修改顶部标题文字大小 */
    line-height:1.1;
}

.header-text p{
    font-size:14px; /* 修改顶部描述文字大小 */
    line-height:1.2;
}

/* =====================================================
   菜单导航区域
===================================================== */

.menu{
    display:flex;
    justify-content:space-around;
    align-items:center;
    padding:12px var(--page-padding);
    border-bottom:1px solid #eee;
}

.menu a{
    text-decoration:none;
    color:#0a8f5a;
    font-size:13px;   /* 菜单导航文字大小 */
    font-weight:600;  /* 菜单导航文字粗细 */
}

/* =====================================================
   APP主体区域
===================================================== */

.app-box{
    padding:var(--page-padding);
}

.app-top{
    display:flex;
    align-items:center;
}

.app-icon{
    width:70px; /* 修改logo大小 */
    height:70px;
    flex-shrink:0;
}

.app-icon img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:5px;  /* 修改logo圆角大小 */
}

.app-info{
    margin-left:16px;
}

.app-info h2{
    font-size:24px;   /* 修改标题文字大小 */
    font-weight:700;  /* 修改标题文字粗细 */
}

.app-info p{
    font-size:13px;   /* 修改描述文字大小 */
    color:#666;
    margin-top:4px;
}

/* =====================================================
   APP 4.9 38MB 18+
===================================================== */

.stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    margin-top:12px;
}

.stat-item{
    text-align:center;
}

.stat-value{
    font-size:14px;   /* 修改APP 4.9 38MB 18+ 文字大小 */
    font-weight:500;  /* 修改APP 4.9 38MB 18+ 文字粗细 */
}

/* =====================================================
   下载按钮
===================================================== */

.download-btn{
    display:flex;
    justify-content:center;
    align-items:center;

    width:100%;
    height:40px;   /* ← 这里控制下载按钮高度 */

    margin-top:16px;

    background:#0a8f5a;
    color:#fff;

    border-radius:12px;

    text-decoration:none;

    font-size:18px;  /* 修改文字大小 */
    font-weight:700;  /* ← 这里控制下载按钮文字粗细 */

    text-decoration:none;
    cursor:pointer;

    user-select:none;
    -webkit-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
}

/* =====================================================
   社交联系方式区域
===================================================== */

.social{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:30px;
    margin-top:15px;
}

.telegram-link,
.whatsapp-link{
    display:flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    font-size:16px;   /* 修改社交文字大小 */
    font-weight:500;   /* 修改社交文字粗细 */
}

.telegram-link{
    color:#229ED9;
}

.whatsapp-link{
    color:#128C7E;
}

.telegram-link svg,
.whatsapp-link svg{
    width:20px;   /* 修改社交logo大小 */
    height:20px;  /* 修改社交logo大小 */
    flex-shrink:0;
}

/* =====================================================
   APP截图展示区域
===================================================== */

.screenshots{
    display:flex;
    gap:4px;  /* 修改图片间隔大小 */

    margin-top:15px;
    margin-bottom:20px;

    overflow-x:auto;
    overflow-y:hidden;

    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
}

.screenshots::-webkit-scrollbar{
    display:none;
}

.screenshots img{
    width:120px;
    border-radius:12px;
    flex-shrink:0;
    cursor:pointer;
}

/* =====================================================
   简介模块区域
===================================================== */

.section{
    padding:5px 0 20px;
}

.section p{
    color:#555;
    font-size:15px; /*  修改简介文字大小 */
    line-height:1.6;
}

.section h3{
    margin-bottom:10px;
    font-size:15px;   /*  修改底部安全文字大小 */
    font-weight:500;  /*  修改底部安全文字粗细 */
}

/* =====================================================
   奖励与福利模块
===================================================== */

.bonus{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
}

.bonus div{
    background:#f7f7f7;
    padding:14px;
    border-radius:12px;
    font-size:14px;  /*  修改奖励与福利文字大小 */
    font-weight:500; /*  修改奖励与福利文字粗细 */
}



/* =====================================================
   热门游戏模块
===================================================== */

.games{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:10px;
}

.game{
    display:flex;
    align-items:flex-start;
    padding:10px;
    background:#f7f7f7;
    border-radius:12px;
    cursor:pointer;
    min-width:0;
}

.game img{
    width:52px;  /*  修改游戏logo大小 */
    height:52px; /*  修改游戏logo大小 */
    margin-right:10px;
    border-radius:12px;
    object-fit:cover;
    flex-shrink:0;
}

.game div{
    flex:1;
    min-width:0;
    font-size:13px;
    line-height:1.4;

    white-space:normal;
    word-break:break-word;
    overflow-wrap:break-word;
}
/* =====================================================
   用户评价模块
===================================================== */

.review{
    display:flex;
    gap:12px;
    padding:14px;
    margin-bottom:10px;
    background:#f7f7f7;
    border-radius:12px;
}

.review-avatar{
    width:48px;   /*  评论区头像大小 */
    height:48px;  /*  评论区头像大小 */
    border-radius:50%;
    object-fit:cover;
}

.review-rating{
    font-size:15px;   /*  评论区修改标题文字大小 */
    font-weight:700;  /*  评论区修改标题文字粗细 */
    margin-bottom:4px;
}

.review-text{
    font-size:15px;   /*  评论区修改文字大小 */
    color:#555;
    line-height:1.5;
}
.review-user{
    display:flex;
    flex-direction:column;
    align-items:center;
    flex-shrink:0;
}

.review-rating{
    margin-top:5px;
    font-size:13px;
    font-weight:700;
}

.review-text{
    flex:1;
    font-size:13px;
    color:#555;
    line-height:1.5;
}
/* =====================================================
   底部页脚区域
===================================================== */

.footer{
    padding:20px;
    text-align:center;
    font-size:13px;  /*  修改底部页脚区域文字大小 */
    color:#888;
    border-top:1px solid #eee;
}

/* =====================================================
   手机端适配
===================================================== */

@media(max-width:768px){

    .app-info h2{
        font-size:24px;
    }

    .download-btn{
        font-size:17px;
    }

    .telegram-link,
    .whatsapp-link{
        font-size:18px;
    }

    .screenshots img{
        width:120px;
    }

}
/* =====================================================
   手机端 社交 模块
===================================================== */
@media(max-width:360px){
    .telegram-link,
    .whatsapp-link{
        font-size:14px;
    }
}
/* =====================================================
   手机端 奖励与福利模块
===================================================== */
@media(max-width:360px){
    .bonus div{
        font-size:13px;
    }
}