/* css/quiz.css — "나와 맞는 철학자 찾기" 퀴즈 랜딩 페이지 */

.quiz-body {
    margin: 0;
    background: var(--apple-bg);
    color: var(--apple-text);
    font-family: 'GothicA1', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.quiz-app {
    width: 100%;
    max-width: 480px;
    min-height: 100vh;
    padding: 32px 24px 48px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.quiz-screen {
    display: flex;
    flex-direction: column;
    animation: quizFadeIn 0.3s var(--apple-ease);
}

@keyframes quizFadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.quiz-intro {
    flex: 1;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.quiz-eyebrow {
    font-size: 14px;
    font-weight: 700;
    color: var(--apple-blue);
    margin: 0 0 4px;
}

.quiz-eyebrow-opposite {
    margin-top: 32px;
    color: var(--apple-sub);
}

.quiz-title {
    font-family: 'Isamanru', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.3;
}

.quiz-desc {
    font-size: 16px;
    color: var(--apple-sub);
    line-height: 1.6;
    margin: 0 0 28px;
}

.quiz-btn {
    height: 56px;
    border-radius: 10px;
    font-family: 'Isamanru-Btn', sans-serif;
    font-size: 18px;
    font-weight: 300;
    border: none;
    cursor: pointer;
    transition: transform 0.15s var(--apple-ease), opacity 0.15s var(--apple-ease);
    width: 100%;
}

.quiz-btn:active {
    transform: scale(0.97);
    opacity: 0.9;
}

.quiz-btn-primary {
    background: var(--apple-blue);
    color: #fff;
}

.quiz-btn-outline {
    background: var(--apple-card);
    color: var(--apple-text);
    border: 1px solid var(--apple-gray);
}

.quiz-progress-track {
    height: 6px;
    background: var(--apple-gray);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px;
}

.quiz-progress-fill {
    height: 100%;
    background: var(--apple-blue);
    transition: width 0.25s var(--apple-ease);
}

.quiz-question-count {
    font-size: 13px;
    color: var(--apple-sub);
    margin: 0 0 16px;
}

.quiz-question-text {
    font-family: 'Isamanru', sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 24px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.quiz-option-btn {
    text-align: left;
    padding: 18px 16px;
    border-radius: 12px;
    background: var(--apple-card);
    border: 1px solid var(--apple-gray);
    font-family: 'GothicA1', sans-serif;
    font-size: 15px;
    color: var(--apple-text);
    cursor: pointer;
    transition: transform 0.15s var(--apple-ease), border-color 0.15s var(--apple-ease);
}

.quiz-option-btn:active {
    transform: scale(0.98);
    border-color: var(--apple-blue);
}

.quiz-result {
    gap: 12px;
}

.quiz-result-card {
    background: var(--apple-card);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    margin-bottom: 8px;
}

.quiz-result-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    display: block;
    border: 3px solid var(--apple-gray);
}

.quiz-result-avatar-small {
    width: 72px;
    height: 72px;
}

.quiz-result-name {
    font-family: 'Isamanru', sans-serif;
    font-size: 22px;
    margin: 0 0 10px;
}

.quiz-result-copy {
    font-size: 15px;
    color: var(--apple-sub);
    line-height: 1.6;
    margin: 0;
}

.quiz-result-opposite {
    opacity: 0.85;
}

.quiz-result-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}
