/* Styles spécifiques pour la page de remerciement cryptomonnaies */
:root {
  --accent: #89CF63;
  --muted: #b8b8b8;
}

body.night-mode {
  background: radial-gradient(circle at 50% 60%, #c6ac8ec4 -10%, #362f25 80%);
  color: #F2F4F3;
  font-family: system-ui, Arial, Helvetica, sans-serif;
}

.thanks-container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 40px 16px;
}

.card {
  background: rgba(15, 15, 15, 0.85);
  padding: 32px;
  border-radius: 14px;
  max-width: 720px;
  width: 100%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  text-align: center;
}

.card h2 {
  font-size: 28px;
  margin: 0 0 8px;
}

.lead {
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.card p {
  color: #d6d6d6;
  line-height: 1.5;
}

.encourage {
  margin-top: 16px;
  font-style: italic;
}

.actions {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.download-cta {
  background: linear-gradient(90deg, #89CF63, #6bbf4f);
  color: #071012;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(137, 207, 99, 0.18);
  transition: transform .15s ease;
}

.download-cta:hover {
  transform: translateY(-4px);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  transition: transform .15s ease;
}
.btn-ghost:hover {
  transform: translateY(-4px);
}

.small {
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 600px) {
  .card {
    padding: 20px;
  }

  .download-cta {
    width: 100%;
    text-align: center;
  }
}

.thanks-container .card h2 {
  font-size: 33px;
  margin-top: 10px;
  margin-bottom: 5px;
}

.thanks-container .card p {
  font-size: 13px;
  margin-top: 5px;
  margin-bottom: 50px;
}