#applist {
  text-align: center;
  padding: 12px 16px 4px;
  background: var(--bg-card, #1a1a22);
  border-bottom: 1px solid var(--border, #2e2e3a);
}

#applist .applist-title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text, #e8e8ed);
}

#ads {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 8px 12px;
  background: transparent;
  margin: 0 auto;
  max-width: 480px;
}

#ads > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60px;
  box-sizing: border-box;
}

#ads img {
  width: 55px;
  height: 55px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  transition: transform 180ms ease, box-shadow 180ms ease;
  display: block;
  border: none;
  background: linear-gradient(135deg, #fff, #fff);
  max-width: none;
}

#ads a {
  display: inline-block;
  text-decoration: none;
}

#ads img:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 10px 24px rgba(255, 45, 106, 0.25);
}

#ads figcaption,
#ads .caption {
  height: 15px;
  line-height: 15px;
  font-size: 11px;
  color: var(--text-muted, #9a9aad);
  text-align: center;
  max-width: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 4px;
}
