/* rewards.html — Flame Stars rewards catalogue */

.page-header { padding: 60px 5% 40px; text-align: center; }
.page-header h1 { font-size: 32px; font-weight: 800; margin-bottom: 10px; }
.page-header p { font-size: 15px; color: var(--muted); max-width: 560px; margin: 0 auto; }

.rewards-wrap { max-width: 900px; margin: 0 auto; padding: 0 5% 80px; }

.rewards-intro { background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; padding: 20px 24px; margin-bottom: 36px; font-size: 14px; color: var(--muted); line-height: 1.7; }
.rewards-intro strong { color: var(--text); }

.section-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }

.milestone-table { width: 100%; border-collapse: collapse; margin-bottom: 40px; font-size: 14px; }
.milestone-table th { text-align: left; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .05em; padding: 8px 12px; border-bottom: 1px solid var(--border); font-weight: 500; }
.milestone-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); color: var(--text); }
.milestone-table tr:last-child td { border-bottom: none; }
.milestone-table .mult { color: var(--muted); font-size: 12px; }
.milestone-table .gold { color: var(--warn); font-weight: 600; }

.reward-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 16px; margin-bottom: 40px; }
.reward-card { background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; padding: 22px; display: flex; flex-direction: column; gap: 10px; }
.reward-card-icon { font-size: 28px; }
.reward-card-title { font-size: 15px; font-weight: 700; color: var(--text); }
.reward-card-desc { font-size: 13px; color: var(--muted); line-height: 1.6; flex: 1; }
.reward-card-cost { font-size: 16px; font-weight: 700; color: var(--warn); }
.reward-card-note { font-size: 12px; color: var(--dim); }

.how-title { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.how-steps { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.how-step { display: flex; gap: 14px; align-items: flex-start; }
.step-num { background: var(--accent); color: #fff; font-size: 11px; font-weight: 700; border-radius: 50%; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.step-body { font-size: 14px; color: var(--muted); line-height: 1.6; }
.step-body strong { color: var(--text); }

/* How do I earn stars? */
.earn-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 36px; }
.earn-row { display: flex; gap: 16px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--border); }
.earn-row:last-child { border-bottom: none; }
.earn-icon { font-size: 22px; width: 36px; flex-shrink: 0; text-align: center; margin-top: 1px; }
.earn-name { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.earn-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Ember's Blessing section */
.blessing-section { background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 6%, var(--bg2)), var(--bg2)); border: 1px solid color-mix(in srgb, var(--accent) 25%, var(--border)); border-radius: 10px; padding: 24px 28px; margin-bottom: 36px; }
.blessing-header { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.blessing-icon { font-size: 36px; line-height: 1; flex-shrink: 0; }
.blessing-title { font-size: 18px; font-weight: 700; color: var(--text); }
.blessing-subtitle { font-size: 13px; color: var(--muted); margin-top: 2px; }
.blessing-body { font-size: 14px; color: var(--muted); line-height: 1.75; }
.blessing-body p { margin-bottom: 10px; }
.blessing-body p:last-child { margin-bottom: 0; }
.blessing-footer { margin-top: 18px; padding-top: 14px; border-top: 1px solid color-mix(in srgb, var(--accent) 20%, var(--border)); }
.blessing-range { font-size: 12px; color: var(--accent); font-weight: 600; letter-spacing: .02em; }

.cta-bar { background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; padding: 28px; text-align: center; }
.cta-bar p { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.btn-cta { display: inline-block; background: var(--accent); color: #fff; font-weight: 700; font-size: 14px; padding: 10px 24px; border-radius: 6px; text-decoration: none; }
.btn-cta:hover { background: var(--accent-h); }
.btn-ghost { display: inline-block; color: var(--muted); font-size: 14px; padding: 10px 20px; border: 1px solid var(--border); border-radius: 6px; text-decoration: none; margin-left: 10px; }
.btn-ghost:hover { color: var(--text); border-color: var(--dim); }
