*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f4f4f6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 16px;
}

.card {
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.card-image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  background: #e0e0e0;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}

.card-image-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #1a1a2e 0%, #3a3a5c 100%);
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}

.card-body {
  padding: 24px 24px 8px;
}

.share-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #555;
  background: #f0f0f0;
  border-radius: 10px;
  padding: 4px 10px;
}

.card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #111;
  line-height: 1.25;
  margin-bottom: 8px;
}

.card-description {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-actions {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* suppress the ::after underline animation on .btn links from the global a selector */
a.btn::after {
  display: none !important;
}
.card-actions .btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-right: 0;
}

#download-section {
  display: none;
  padding-top: 18px;
}

.branding {
  margin-top: 20px;
  font-size: 12px;
  color: #aaa;
  text-align: center;
}
.branding a {
  color: #888;
  text-decoration: none;
}

/* app-store-badges: side-by-side, equal height inside card actions */
.card-actions .app-store-badges {
  flex-direction: row !important;
  flex-wrap: nowrap;
  align-items: stretch !important;
  width: 100%;
}
.card-actions .app-store-link {
  display: flex;
  flex: 1;
}
.card-actions .app-store-badges .app-store-badge {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  object-position: center;
}

.card-actions a {
  text-decoration: none !important;
}