.thank-you-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 200px);
}

.thank-you-section {
  padding-block: var(--space-16);
}

.thank-you-card {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  padding: var(--space-8) var(--space-6);
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top, rgba(0, 224, 184, 0.18), rgba(12, 16, 32, 0.96) 55%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-elevated);
}

.thank-you-title {
  margin-bottom: var(--space-4);
}

.thank-you-message,
.thank-you-next {
  font-size: var(--font-size-md);
  margin-bottom: var(--space-3);
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  margin-top: var(--space-6);
}

@media (max-width: 640px) {
  .thank-you-card {
    padding: var(--space-6) var(--space-4);
  }

  .thank-you-actions {
    flex-direction: column;
  }

  .thank-you-actions .btn {
    width: 100%;
    justify-content: center;
  }
}
