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

body{
background:#0f0f0f;
color:#fff;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px;
background:#181818;
position:sticky;
top:0;
z-index:1000;
}

.logo{
font-size:24px;
font-weight:bold;
color:#00ff88;
}

#search{
width:220px;
padding:10px;
border:none;
outline:none;
border-radius:10px;
background:#262626;
color:#fff;
}

.hero{
text-align:center;
padding:70px 20px;
background:linear-gradient(135deg,#00ff88,#0099ff);
}

.hero h1{
font-size:40px;
margin-bottom:10px;
}

.hero p{
font-size:18px;
}

section{
padding:20px;
}

h2{
margin-bottom:20px;
}

.apps{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
gap:20px;
}

.card{
background:#1b1b1b;
border-radius:15px;
overflow:hidden;
transition:.3s;
}

.card:hover{
transform:translateY(-5px);
}

.card img{
width:100%;
height:170px;
object-fit:contain;
padding:20px;
}

.card-content{
padding:15px;
}

.card h3{
margin-bottom:10px;
font-size:18px;
}

.card p{
font-size:14px;
color:#bbb;
margin-bottom:15px;
}

.btn{
display:block;
text-align:center;
background:#00ff88;
color:#000;
padding:10px;
border-radius:10px;
text-decoration:none;
font-weight:bold;
transition:.3s;
}

.btn:hover{
background:#00cc6a;
}

@media(max-width:768px){

header{
flex-direction:column;
gap:15px;
}

#search{
width:100%;
}

.hero h1{
font-size:30px;
}

  }
.categories{
padding:30px 20px;
text-align:center;
}

.category-list{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:12px;
margin-top:20px;
}

.category-list button{
padding:10px 18px;
border:none;
border-radius:30px;
background:#222;
color:#fff;
cursor:pointer;
transition:.3s;
}

.category-list button:hover{
background:#00ff88;
color:#000;
}

.telegram{
text-align:center;
padding:50px 20px;
background:#151515;
}

.join-btn{
display:inline-block;
margin-top:20px;
padding:14px 30px;
background:#0088cc;
color:#fff;
text-decoration:none;
border-radius:12px;
font-weight:bold;
transition:.3s;
}

.join-btn:hover{
transform:scale(1.05);
}
footer{
margin-top:60px;
background:#111;
border-top:1px solid #222;
}

.footer{
padding:40px 20px;
text-align:center;
}

.footer h2{
color:#00ff88;
margin-bottom:10px;
}

.footer p{
color:#aaa;
margin:10px 0;
}

.footer-links{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin:20px 0;
}

.footer-links a{
color:#fff;
text-decoration:none;
transition:.3s;
}

.footer-links a:hover{
color:#00ff88;
}

.copy{
font-size:14px;
color:#666;
}
.app-details img{
width:150px;
height:150px;
object-fit:contain;
background:#fff;
padding:15px;
border-radius:20px;
display:block;
margin:20px auto;
}
.app-details{
text-align:center;
max-width:600px;
margin:auto;
}

.app-details img{
width:150px;
height:150px;
max-width:100%;
object-fit:contain;
display:block;
margin:20px auto;
}
