/* IceEdge Arena - thanks page fallback styles */
.thanks-page {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at top, rgba(34, 211, 238, 0.14), transparent 36%),
    linear-gradient(180deg, #06142d 0%, #081a39 50%, #0b2148 100%);
  color: #f8fbff;
}

.thanks-main {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 20px;
}

.thanks-card {
  width: 100%;
  max-width: 760px;
  padding: 40px 32px;
  border-radius: 32px;
  border: 1px solid rgba(147, 197, 253, 0.24);
  background: rgba(8, 25, 54, 0.92);
  box-shadow: 0 28px 80px rgba(2, 8, 23, 0.48);
  text-align: center;
}

.thanks-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #22d3ee;
  color: #08203f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.thanks-title {
  margin: 24px 0 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.06;
  font-weight: 800;
}

.thanks-text {
  max-width: 620px;
  margin: 18px auto 0;
  color: rgba(241, 245, 249, 0.92);
  font-size: 1.125rem;
  line-height: 1.75;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 34px;
}

.thanks-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 58px;
  padding: 16px 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.thanks-btn:hover,
.thanks-btn:focus-visible {
  transform: translateY(-1px);
}

.thanks-btn:focus-visible {
  outline: 3px solid rgba(34, 211, 238, 0.35);
  outline-offset: 3px;
}

.thanks-btn--primary {
  background: #22d3ee;
  color: #08203f;
  box-shadow: 0 16px 34px rgba(34, 211, 238, 0.22);
}

.thanks-btn--primary:hover,
.thanks-btn--primary:focus-visible {
  background: #67e8f9;
}

.thanks-btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.thanks-btn--secondary:hover,
.thanks-btn--secondary:focus-visible {
  border-color: rgba(103, 232, 249, 0.6);
  background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 640px) {
  .thanks-card {
    padding: 32px 20px;
    border-radius: 24px;
  }

  .thanks-text {
    font-size: 1rem;
    line-height: 1.65;
  }

  .thanks-btn {
    width: 100%;
    min-width: 0;
  }
}
