/* ═══════════════════════════════════════════
   THANK YOU PAGE CSS
═══════════════════════════════════════════ */

:root {
  --red:       #870000;
  --red-dark:  #5e0000;
  --dark:      #1a1a2e;
  --dark2:     #2d2d2d;
  --white:     #ffffff;
  --border:    rgba(255,255,255,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.22);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 60%, #2a0a0a 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: 'Milanesa Serif', Georgia, 'Times New Roman', serif;
}

/* ══════════════════════════════
   PAGE WRAPPER
══════════════════════════════ */
.ty-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  gap: 24px;
}

/* ══════════════════════════════
   CARD
══════════════════════════════ */
.ty-card {
  background: var(--dark);
  border-radius: 20px;
  padding: 36px 40px;
  width: 100%;
  max-width: 520px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

/* ── Logo ── */
.ty-logo {
  display: flex;
  justify-content: center;
}
.ty-logo img {
  height: 90px;
  width: auto;
}

/* ── Success Icon ── */
.ty-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(74,222,128,.12);
  border: 2px solid rgba(74,222,128,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.ty-icon i {
  font-size: 28px;
  color: #4ade80;
}

/* ── Heading ── */
.ty-card h1 {
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 12px;
}

/* ── Message ── */
.ty-msg {
  font-size: 15px;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 28px;
}
.ty-msg strong {
  color: #fff;
  font-weight: 600;
}


/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 500px) {
  .ty-card { padding: 28px 20px; }
  .ty-card h1 { font-size: 28px; }
  .ty-actions { flex-direction: column; }
  .ty-trust { gap: 6px; }
}
