/* =====================================================
   基础
===================================================== */

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

body{
    background:#f5f5f5;
}

/* =====================================================
   PC + 手机容器
===================================================== */

.pc-center-wrapper{
    width:100%;
    max-width:768px;  /* pc页面宽度 */
    margin:0 auto;
    background:#fff;
    min-height:100vh;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,.12);
    font-family:Roboto,Arial,sans-serif;
}

/* =====================================================
   Header
===================================================== */

.header{
    position:fixed;
    top:0;
    left:50%;
    transform:translateX(-50%);

    width:100%;
    max-width:768px;   /* pc固定栏页面宽度 */

    background:#fff;

    z-index:100;

    box-shadow:0 1px 4px rgba(0,0,0,.1);
}

.logo-container{
    display:flex;
    align-items:center;
    height:52px;
    padding:0 12px;
}

.logo-img{
    width:40px;
    height:40px;
    margin-right:10px;
    object-fit:contain;
}

.logo-text{
    font-size:15px;
    font-weight:500;
    color:#000;
    line-height:1.2;
    white-space:nowrap;
}

/* =====================================================
   Menu
===================================================== */

.nav-container{
    display:flex;
    justify-content:space-around;
    align-items:center;
    height:30px;
    padding:15px;
}

.nav-item{
    font-size:13px;
    font-weight:500;
    color:#5f6368;
    text-align:center;
}

.nav-item span{
    color:#01875f;
    position:relative;
    padding-bottom:3px;
}

.nav-item span::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:2px;
    background:#01875f;
    border-radius:2px;
}

/* =====================================================
   Download Button
===================================================== */

.download-btn{
    width:100%;
    height:42px;

    border:none;
    border-radius:8px;

    background:#01875f;
    color:#fff;

    font-size:16px;
    font-weight:600;

    cursor:pointer;
}

.download-btn:hover{
    background:#056449;
}

/* =====================================================
   Social
===================================================== */

.social{
    display:flex;
    align-items:center;
    width:100%;
}

.social a{
    flex:1;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:12px;

    color:#01875f;
    text-decoration:none;
    font-size:14px;
}

/* =====================================================
   Screenshot
===================================================== */

.screenshot-list{
    display:flex;
    gap:8px;
    overflow-x:auto;
    scrollbar-width:none;
}

.screenshot-list::-webkit-scrollbar{
    display:none;
}

.screenshot-list img{
    height:204px;
    border-radius:10px;

    box-shadow:
    0 1px 2px rgba(60,64,67,.3),
    0 1px 3px rgba(60,64,67,.15);
}

/* =====================================================
   Section
===================================================== */

.section-title{
    display:inline-flex;
    padding:6px 15px;

    background:#e8f3ef;
    border-radius:20px;

    font-size:14px;
    font-weight:600;
}

.section{
    padding:15px 0;
}

.section p{
    font-size:14px;
    line-height:1.6;
}

/* =====================================================
   Game List
===================================================== */

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

.game-item{
    display:flex;
    cursor:pointer;
}

.game-item img{
    width:56px;
    height:56px;
    border-radius:12px;
    margin-right:8px;
}

.game-name{
    color:#01875f;
    font-size:14px;

    line-height:1.3;

    white-space:normal;
    word-break:break-word;
    overflow-wrap:break-word;
}

.game-item{
    display:flex;
    cursor:pointer;
    min-width:0;
}

.game-item > div{
    flex:1;
    min-width:0;
}

/* =====================================================
   Review
===================================================== */

.review{
    margin-bottom:20px;
}

.review-user{
    display:flex;
    align-items:center;
    gap:10px;
}

.review-user img{
    width:32px;
    height:32px;
    border-radius:50%;
}

.review-text{
    margin-top:8px;
    font-size:14px;
    line-height:1.6;
}

/* =====================================================
   Footer
===================================================== */

.footer{
    text-align:center;
    padding:20px 0;
    color:#666;
    font-size:13px;
}

/* =====================================================
   Mobile
===================================================== */

@media (max-width:360px){

    .logo-text{
        font-size:13px;
    }

    .nav-item{
        font-size:12px;
    }

}