
.app-dl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.app-dl-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  text-decoration: none !important;
  color: #111827;
  transition: transform .15s ease, box-shadow .15s ease;
}
.app-dl-card,
.app-dl-card:link,
.app-dl-card:visited,
.app-dl-card:hover,
.app-dl-card:active {
  text-decoration: none !important;
  border-bottom: none !important;
}
.app-dl-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.app-dl-icon {
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
}
.app-dl-info {
  flex: 1;
  min-width: 0;
}
.app-dl-name {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
}
.app-dl-desc {
  margin-top: 3px;
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.app-dl-btn {
  flex-shrink: 0;
  padding: 6px 12px;
  font-size: 12px;
  color: #3b82f6;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #eff6ff;
  white-space: nowrap;
}
.app-dl-card:hover .app-dl-btn {
  background: #3b82f6;
  color: #fff;
  border-color: #3b82f6;
}
@media (max-width: 640px) {
.app-dl-grid { grid-template-columns: 1fr;
}
.app-dl-card { gap: 12px; padding: 14px;
}
.app-dl-icon { width: 44px; height: 44px;
}
}


.qr-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 8px 0 32px;
}
.qr-card {
  flex: 1 1 200px;
  max-width: 220px;
  padding: 20px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  background: #fff;
  text-align: center;
  transition: transform .15s ease, box-shadow .15s ease;
}
.qr-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.qr-card img {
  width: 160px;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  display: block;
  margin: 0 auto 12px;
}
.qr-card .qr-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
}
.qr-card .qr-sub {
  margin-top: 4px;
  font-size: 12px;
  color: #888;
  line-height: 1.6;
}

