* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Poppins, sans-serif;
}



header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 25px;
    background:var(--header);
    color:white;
}

header h1 {
  font-size: 30px;
}

header p {
  opacity: 0.8;
  margin-top: 5px;
}

.search {
  max-width: 700px;
  margin: 30px auto;
  padding: 0 15px;
}

.search input {
  width: 100%;
  padding: 15px;
  border: none;
  border-radius: 15px;
  outline: none;
  font-size: 16px;
  box-shadow: 0 5px 15px #00000014;
}

.apps {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.25s;
}

.card:hover {
  transform: translateY(-5px);
}

.icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  object-fit: cover;
}

.card h2 {
  margin-top: 15px;
  font-size: 22px;
}

.version {
  color: #666;
  margin: 8px 0;
}

.desc {
  color: #555;
  margin-bottom: 5px;
}
.tipe{
  color: #555;
  margin-bottom: 10px;
}
.btn {
  display: inline-block;
  background: #0d6efd;
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
}

.btn:hover {
  background: #0b5ed7;
}

footer {
  text-align: center;
  padding: 40px;
  color: #777;
}
.container{
max-width:900px;
margin:30px auto;
padding:20px;
}


.top{
display:flex;
gap:20px;
flex-wrap:wrap;
align-items:center;
}

#icon{
width:120px;
height:120px;
border-radius:25px;
object-fit:cover;
background:#ddd;
}

.info{
flex:1;
}

.info h1{
font-size:30px;
margin-bottom:10px;
}

.info p{
margin:6px 0;
color:#555;
}

.download{
display:inline-block;
margin-top:15px;
padding:14px 30px;
background:#0d6efd;
color:white;
text-decoration:none;
border-radius:14px;
font-weight:600;
}

.download:hover{
background:#0b5ed7;
}

.section{
margin-top:35px;
}

.section h2{
margin-bottom:15px;
}

#screenshots{
display:flex;
gap:15px;
overflow-x:auto;
padding-bottom:10px;
}

#screenshots img{
width:220px;
border-radius:15px;
box-shadow:0 4px 10px rgba(0,0,0,.15);
}

.back{
display:inline-block;
margin-top:30px;
text-decoration:none;
color:#0d6efd;
font-weight:600;
}
