
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#f3f4f6;
color:#222;
}

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

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

.logo{
width:60px;
height:60px;
}

.logo img{
width:100%;
height:100%;
border-radius:14px;
object-fit:cover;
}

.header-text{
margin-left:14px;
}

.header-text h1{
font-size:24px;
font-weight:700;
}

.header-text p{
font-size:14px;
color:#0a8f5a;
margin-top:4px;
}

.app-box{
padding:20px;
}

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

.app-icon{
width:90px;
height:90px;
}

.app-icon img{
width:100%;
height:100%;
border-radius:18px;
object-fit:cover;
}

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

.app-info h2{
font-size:28px;
margin-bottom:4px;
}

.app-info p{
font-size:14px;
color:#666;
margin-top:4px;
}

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

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

.stat-value{
font-size:16px;
font-weight:700;
}

.download-btn{
display:flex;
justify-content:center;
align-items:center;
width:100%;
height:50px;
background:#0a8f5a;
color:#fff;
border-radius:12px;
text-decoration:none;
font-size:18px;
font-weight:700;
margin-top:14px;
cursor:pointer;
}

.social{
display:flex;
justify-content:center;
gap:12px;
margin-top:14px;
}

.social a{
padding:10px 18px;
background:#f5f5f5;
border-radius:10px;
text-decoration:none;
color:#222;
font-size:14px;
}

.menu{
display:flex;
justify-content:space-around;
padding:12px 0;
border-top:1px solid #eee;
border-bottom:1px solid #eee;
}

.menu a{
text-decoration:none;
color:#0a8f5a;
font-size:13px;
font-weight:600;
}

.section{
padding:20px;
}

.section h3{
font-size:18px;
margin-bottom:12px;
}

.section p{
font-size:14px;
line-height:1.7;
color:#555;
}

.screenshots{
display:flex;
overflow-x:auto;
gap:12px;
padding-bottom:10px;
scrollbar-width:none;
-webkit-overflow-scrolling:touch;
}

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

.screenshots img{
width:180px;
height:320px;
object-fit:cover;
border-radius:18px;
flex-shrink:0;
cursor:pointer;
}

.bonus{
display:grid;
grid-template-columns:1fr 1fr;
gap:12px;
}

.bonus div{
background:#f7f7f7;
padding:14px;
border-radius:12px;
font-size:14px;
font-weight:600;
}

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

.game{
display:flex;
align-items:center;
padding:10px;
background:#f7f7f7;
border-radius:12px;
cursor:pointer;
transition:.2s;
}

.game:hover{
transform:translateY(-2px);
}

.game img{
width:60px;
height:60px;
border-radius:12px;
margin-right:10px;
object-fit:cover;
}

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

.review-avatar{
width:48px;
height:48px;
border-radius:50%;
object-fit:cover;
flex-shrink:0;
}

.review-rating{
font-size:14px;
font-weight:700;
margin-bottom:4px;
}

.review-text{
font-size:13px;
color:#555;
line-height:1.5;
}

.footer{
padding:30px;
text-align:center;
font-size:12px;
color:#888;
}

@media(max-width:480px){

.header{
padding:12px;
}

.app-icon{
width:80px;
height:80px;
}

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

.screenshots img{
width:160px;
height:285px;
}

.game{
padding:8px;
}

.game img{
width:50px;
height:50px;
}

}
