/* ═══════════════════════════════════════════════════════════════════
   ONBOARDING STYLES — Project Ascension
   ═══════════════════════════════════════════════════════════════════ */

#onboarding-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-base);
    z-index: var(--z-modal);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: 20px;
}

.onboarding-step {
    width: 100%;
    max-width: 600px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    background: linear-gradient(145deg, rgba(20,20,25,0.9), rgba(15,15,20,0.95));
}

.onboarding-step h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    text-shadow: 0 0 15px var(--primary-glow);
}

.onboarding-step h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--text-secondary);
}

.onboarding-step p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

/* ── Step Progress Indicator ── */
.onboarding-progress {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.progress-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: var(--transition-normal);
}

.progress-dot.active {
    background: var(--primary-color);
    box-shadow: 0 0 8px var(--primary-glow);
}

/* ── Form Styles ── */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group-row {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-group-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

/* ── Options Grid ── */
.options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.option-btn {
    padding: 15px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.option-btn i {
    font-size: 1.8rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.option-btn:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.2);
}

.option-btn.selected {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-glow);
    color: var(--primary-color);
}

.option-btn.selected i {
    color: var(--primary-color);
}

/* ── Custom Quest Editor ── */
.quest-editor {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.quest-editor .input-field {
    flex: 1;
}

.custom-quests-list {
    text-align: left;
    margin-bottom: 30px;
    max-height: 200px;
    overflow-y: auto;
}

.custom-quest-item {
    padding: 12px 15px;
    background: rgba(0,0,0,0.3);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    transition: transform var(--transition-fast);
}

.custom-quest-item:hover {
    border-color: rgba(255,255,255,0.15);
}

.remove-quest-btn {
    background: transparent;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 1.1rem;
    transition: transform var(--transition-fast);
    padding: 5px;
}

.remove-quest-btn:hover {
    transform: scale(1.2);
    color: #fca5a5;
}

/* ── Final Quote Screen ── */
.onboarding-quote {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--primary-color);
    font-style: italic;
    margin: 30px 0;
    padding: 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
}

.quote-begin-btn {
    font-size: 1.1rem;
    padding: 16px 40px;
    border-radius: 30px;
    animation: pulseGlow 3s infinite;
}
