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

:root {
  --navy: #060B18;
  --navy2: #0A1228;
  --cyan: #00E5B0;
  --cyan-dim: rgba(0,229,176,0.12);
  --coral: #FF8A65;
  --coral-dim: rgba(255,138,101,0.12);
  --white: #FFFFFF;
  --white80: rgba(255,255,255,0.80);
  --white60: rgba(255,255,255,0.60);
  --white30: rgba(255,255,255,0.30);
  --white10: rgba(255,255,255,0.10);
  --white07: rgba(255,255,255,0.07);
  --white06: rgba(255,255,255,0.06);
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  color: var(--white);
  text-align: center;
  padding: 32px 20px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.card {
  max-width: 480px;
  width: 100%;
}

.icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
}

h1 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  color: var(--white);
}

p {
  font-size: 16px;
  color: var(--white60);
  line-height: 1.6;
  margin: 0 0 32px;
}

a.btn-primary {
  display: inline-block;
  background: var(--cyan);
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 12px;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: opacity 0.15s, transform 0.1s;
}

a.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

a.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white60);
  font-weight: 500;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid var(--white10);
  letter-spacing: -0.01em;
  transition: opacity 0.15s, border-color 0.15s;
}

a.btn-secondary:hover {
  opacity: 0.75;
  border-color: var(--white30);
}

.btn-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* Steps list (success page) */
.steps {
  background: var(--white06);
  border: 1px solid var(--white10);
  border-radius: 16px;
  padding: 24px;
  text-align: left;
  margin-bottom: 24px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--white07);
}

.step:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--cyan);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.step-text {
  font-size: 14px;
  color: var(--white80);
  line-height: 1.5;
}

.step-text strong {
  color: var(--white);
  font-weight: 600;
}

/* Icon accent variants */
.icon-success { background: var(--cyan-dim); border: 2px solid var(--cyan); color: var(--cyan); }
.icon-cancel  { background: var(--coral-dim); border: 2px solid var(--coral); color: var(--coral); }
