/**
 * Fiction Flock — Hunt CSS
 */
.ff-hunt-wrap { max-width: 600px; margin: 0 auto; padding: 20px; font-family: 'Lato', sans-serif; }
.ff-hunt-loading { text-align: center; padding: 60px 20px; color: #5a6a6a; }
.ff-hunt-spinner { width: 36px; height: 36px; border: 3px solid #e0ede6; border-top-color: #174B4C; border-radius: 50%; animation: ff-spin 0.8s linear infinite; margin: 0 auto 16px; }
@keyframes ff-spin { to { transform: rotate(360deg); } }
.ff-hunt-intro-card, .ff-hunt-complete-card { background: #FAF8F4; border-radius: 20px; padding: 40px 32px; text-align: center; box-shadow: 0 2px 16px rgba(23,75,76,0.08); }
.ff-hunt-icon { font-size: 48px; margin-bottom: 16px; }
.ff-hunt-intro-card h2, .ff-hunt-complete-card h2 { font-family: 'Playfair Display', serif; font-size: 26px; color: #174B4C; margin-bottom: 14px; }
.ff-hunt-intro-card p, .ff-hunt-complete-card p { font-size: 15px; color: #5a6a6a; margin-bottom: 12px; line-height: 1.65; }
.ff-hunt-btn-primary { background: #174B4C; color: #fff; font-family: 'Lato', sans-serif; font-weight: 700; font-size: 15px; padding: 13px 32px; border-radius: 8px; border: none; cursor: pointer; margin-top: 16px; }
.ff-hunt-btn-primary:hover { background: #1d6364; }

/* Clue card */
.ff-hunt-clue-card { background: #fff; border-radius: 20px; padding: 32px 28px; box-shadow: 0 4px 20px rgba(23,75,76,0.1); }
.ff-hunt-progress { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.ff-hunt-progress-bar { flex: 1; height: 6px; background: #e0ede6; border-radius: 10px; overflow: hidden; }
.ff-hunt-progress-fill { height: 6px; background: #174B4C; border-radius: 10px; transition: width 0.3s ease; }
.ff-hunt-progress-text { font-size: 12px; color: #5a6a6a; font-weight: 700; white-space: nowrap; }
.ff-hunt-question { font-family: 'Playfair Display', serif; font-size: 18px; color: #174B4C; margin-bottom: 20px; line-height: 1.5; }
.ff-hunt-link-btn { display: inline-block; background: #E89528; color: #fff; font-family: 'Lato', sans-serif; font-weight: 700; font-size: 14px; padding: 10px 20px; border-radius: 8px; text-decoration: none; margin-bottom: 24px; }
.ff-hunt-link-btn:hover { background: #d4851f; color: #fff; }
.ff-hunt-choices { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.ff-hunt-choice { background: #FAF8F4; border: 2px solid #e0ddd8; border-radius: 10px; padding: 14px 18px; cursor: pointer; font-size: 15px; color: #1a2e2e; text-align: left; transition: all 0.15s; font-family: 'Lato', sans-serif; }
.ff-hunt-choice:hover { border-color: #174B4C; background: #f0f6f5; }
.ff-hunt-choice.selected { border-color: #174B4C; background: #e1f0ee; }
.ff-hunt-choice.correct { border-color: #2e7d32; background: #e8f5e9; color: #1b5e20; }
.ff-hunt-choice.incorrect { border-color: #c62828; background: #ffebee; color: #b71c1c; }
.ff-hunt-feedback { padding: 12px 16px; border-radius: 8px; font-size: 14px; font-weight: 700; margin-bottom: 16px; text-align: center; }
.ff-hunt-feedback.correct { background: #e8f5e9; color: #2e7d32; }
.ff-hunt-feedback.incorrect { background: #ffebee; color: #c62828; }
.ff-hunt-next-btn { width: 100%; background: #174B4C; color: #fff; font-family: 'Lato', sans-serif; font-weight: 700; font-size: 15px; padding: 13px; border-radius: 10px; border: none; cursor: pointer; display: none; }
.ff-hunt-next-btn:hover { background: #1d6364; }
.ff-hunt-feathers { font-size: 18px; font-weight: 700; color: #E89528; margin-top: 16px; }
