:root {
  --bg: #0b0d17;
  --card: #15192b;
  --text: #e8eaf2;
  --muted: #9aa3b2;
  --accent: #7c5cff;
  --accent-hover: #9270ff;
  --danger: #ff6b6b;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(circle at top center, #1a1f38 0%, var(--bg) 60%);
  color: var(--text);
  min-height: 100vh;
}

.container {
  max-width: 520px;
  margin: 0 auto;
  padding: 48px 16px;
}

.card {
  background: var(--card);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

h1 { font-size: 28px; margin-bottom: 8px; }
.subtitle { color: var(--muted); margin-bottom: 24px; line-height: 1.5; }

.field { margin-bottom: 16px; }
label { display: block; font-size: 14px; margin-bottom: 6px; color: var(--muted); }
input[type="date"], input[type="time"], input[type="text"] {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #2a314d;
  border-radius: 10px;
  background: #0f1322;
  color: var(--text);
  font-size: 16px;
}
input:focus { outline: none; border-color: var(--accent); }
small { display: block; color: var(--muted); margin-top: 4px; font-size: 12px; }

button, .primary {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: var(--accent);
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
button:hover, .primary:hover { background: var(--accent-hover); }
button:disabled { opacity: 0.6; cursor: not-allowed; }

.result { margin-top: 24px; padding-top: 24px; border-top: 1px solid #2a314d; }
.result.hidden { display: none; }
.result h2 { font-size: 20px; margin-bottom: 12px; }
.result p { line-height: 1.6; }

.reading-content {
  line-height: 1.7;
  margin: 16px 0;
}
.reading-content h1 { font-size: 22px; border-bottom: 1px solid #2a314d; padding-bottom: 8px; }
.reading-content strong { color: #c4b5ff; }

.cta { margin-top: 24px; text-align: center; }
.cta p { color: var(--muted); }

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.badge.paid { background: rgba(76, 175, 80, 0.15); color: #81c784; }
.badge.preview { background: rgba(255, 193, 7, 0.15); color: #ffd54f; }

.disclaimer {
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.error { color: var(--danger); }

.trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 12px 0 16px;
  font-size: 12px;
  color: var(--muted);
}

.guarantee {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}
