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

/* ─── Page ───────────────────────────────────────────── */
html {
  height: 100%;
}

body {
  min-height: 100vh;           /* fallback for older browsers */
  min-height: 100dvh;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    'Helvetica Neue', Arial, sans-serif;
  padding: 24px 16px;
}

/* ─── Card ───────────────────────────────────────────── */
.card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 28px 32px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
}

/* ─── Emoji ──────────────────────────────────────────── */
.card__emoji {
  display: block;
  font-size: 56px;
  line-height: 1;
  margin-bottom: 20px;
}

/* ─── Title ──────────────────────────────────────────── */
.card__title {
  font-size: 28px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.2;
  margin-bottom: 16px;
}

/* ─── Description ────────────────────────────────────── */
.card__description {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 24px;
}

/* ─── Images ─────────────────────────────────────────── */
.card__images {
  margin-bottom: 24px;
}

.card__image {
  display: block;
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

.card__image:last-child {
  margin-bottom: 0;
}

/* ─── CTA Button ─────────────────────────────────────── */
.card__cta {
  display: block;
  width: 100%;
  background: #e91e8c;
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
  white-space: pre-line;       /* renders \n as line breaks */
  padding: 18px 24px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  text-decoration: none;       /* safe if rendered as <a> */
  -webkit-appearance: none;    /* strip iOS default button chrome */
  appearance: none;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(233, 30, 140, 0.45);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  -webkit-tap-highlight-color: transparent;
  min-height: 64px;            /* touch-friendly */
}

.card__cta:active {
  transform: scale(0.97);
  box-shadow: 0 2px 10px rgba(233, 30, 140, 0.3);
}

/* ─── Badge ──────────────────────────────────────────── */
.card__badge {
  font-size: 13px;
  color: #9ca3af;
}

/* ─── Error state ────────────────────────────────────── */
.card--error .card__title {
  font-size: 20px;
  font-weight: 700;
  color: #6b7280;
}

/* ─── Loading state ──────────────────────────────────── */
.loading {
  color: #6b7280;
  font-size: 15px;
}
