/* Thanks Page Styles */
.thanks-page {
  min-height: calc(100vh - var(--header-height) - 84px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-content {
  text-align: center;
  padding: 48px 0;
}

.thanks-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.thanks-icon svg {
  color: var(--accent);
  width: 80px;
  height: 80px;
  animation: checkmark 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes checkmark {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thanks-content h1 {
  font-size: clamp(32px, 5vw, 48px);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
}

.thanks-message {
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.auto-redirect-message {
  color: var(--muted-light);
  font-size: 15px;
  margin-bottom: 32px;
}

.auto-redirect-message #countdown {
  font-weight: 700;
  color: var(--accent);
  font-size: 18px;
}

.thanks-actions {
  margin-top: 40px;
}

.thanks-actions .btn {
  min-width: 240px;
}

@media (max-width: 768px) {
  .thanks-icon svg {
    width: 60px;
    height: 60px;
  }

  .thanks-content h1 {
    margin-bottom: 20px;
  }

  .thanks-message {
    margin-bottom: 24px;
  }

  .auto-redirect-message {
    margin-bottom: 24px;
  }

  .thanks-actions {
    margin-top: 32px;
  }

  .thanks-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thanks-icon svg {
    animation: none;
  }
}
