.ads-bar {
  background: linear-gradient(180deg, #fff5f8 0%, #fff 100%);
  border-bottom: 1px solid #ffe0eb;
  padding: 14px 16px 10px;
}

.ads-bar #applist {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

.ads-bar #applist .applist-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: #e84d82;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.ads-bar #ads {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 12px 16px;
  background: transparent;
}

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

.ads-bar #ads img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(232, 77, 130, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease;
  display: block;
  border: 2px solid #fff;
  background: #fff;
}

.ads-bar #ads a {
  display: inline-block;
  text-decoration: none;
  border-radius: 18px;
  padding: 2px;
}

.ads-bar #ads a:active img,
.ads-bar #ads img:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 24px rgba(232, 77, 130, 0.28);
}

.ads-bar #ads figcaption,
.ads-bar #ads .caption {
  margin-top: 6px;
  height: 16px;
  line-height: 16px;
  font-size: 12px;
  color: #666;
  text-align: center;
  max-width: 76px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .ads-bar {
    padding: 12px 12px 8px;
  }

  .ads-bar #ads > div {
    width: 72px;
  }

  .ads-bar #ads img {
    width: 64px;
    height: 64px;
  }
}
