.app-promo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  align-items: center;
  gap: 32px;
  max-width: 960px;
  margin: 72px auto;
  padding: 24px;
  color: #f8fafc;
  background: #111827;
  border-radius: 24px;
  font-family: system-ui, sans-serif;
}
.app-promo .app-promo-copy {
  padding: 12px;
}
.app-promo .app-promo-copy h2 {
  color: #fff;
  font-size: clamp(24px, 4vw, 36px);
  line-height: 1.5;
  margin: 16px 0;
}
.app-promo .app-promo-copy p {
  color: #e2e8f0;
  line-height: 1.9;
  margin: 16px 0;
}
.app-promo .app-promo-copy a {
  color: #a5f3fc;
  text-decoration: underline;
}
.app-promo-player {
  width: 100%;
  max-width: 320px;
  aspect-ratio: 9 / 16;
  margin: auto;
  overflow: hidden;
  border-radius: 16px;
  background: #000;
}
.app-promo-play {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.app-promo-player img,
.app-promo-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}
.app-promo-play-label {
  position: absolute;
  bottom: 16px;
  left: 8%;
  right: 8%;
  padding: 12px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  background: #111827;
  font-weight: 700;
  box-shadow: 0 2px 12px #0008;
}
.app-promo a:focus-visible {
  outline: 3px solid #22d3ee;
  outline-offset: -3px;
}
