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

body {
  background: #f5f0e8;
  color: #333;
  font-family: -apple-system, blinkmacsystemfont, "Segoe UI", roboto, oxygen, ubuntu, sans-serif;
  line-height: 1.6;
}

a {
  color: #c41e5c;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.redirect-page {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 1rem;
}

.container {
  margin: 0 auto;
  max-width: 520px;
  width: 100%;
}

.redirect-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgb(0 0 0 / 8%);
  padding: 2.5rem 2rem;
  text-align: center;
}

.redirect-image {
  display: block;
  height: auto;
  margin: 0 auto 1rem;
  max-width: 180px;
  width: 60%;
}

.spinner {
  animation: spin 0.8s linear infinite;
  border: 3px solid #e0dbd2;
  border-radius: 50%;
  border-top-color: #c41e5c;
  height: 34px;
  margin: 0 auto 1.25rem;
  width: 34px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

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

.redirect-messages {
  margin: 0 0 1.5rem;
}

.redirect-messages p {
  color: #555;
  margin: 0.15rem 0;
}

.redirect-messages .lead {
  color: #333;
  font-size: 1.15rem;
  font-weight: 600;
}

.btn-primary {
  background: #c41e5c;
  border-radius: 6px;
  color: #fff;
  display: inline-block;
  font-weight: 600;
  padding: 0.55rem 1.4rem;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-primary:hover {
  background: #a01848;
  text-decoration: none;
}
