#quiz-wrapper { max-width: 520px; margin: 0 auto; padding: 60px 24px; font-family: 'Helvetica Neue', Arial, sans-serif; display: flex; flex-direction: column; } .quiz-header { margin-bottom: 48px; text-align: center; } #progress-text { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: #666; font-weight: 400; } .route-label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: #999; margin-top: 8px; min-height: 16px; } #quiz-container { flex: 1; min-height: 400px; } .quiz-step { display: none; } .quiz-step.active { display: block; } .question-label { display: block; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: #999; margin-bottom: 16px; font-weight: 400; } .question-title { font-size: 22px; font-weight: 300; line-height: 1.3; margin-bottom: 32px; color: #000; letter-spacing: -.5px; } .options-grid { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; } .option-btn { width: 100%; padding: 16px 20px; border: 1px solid #000; background: transparent; color: #000; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; font-weight: 400; cursor: pointer; transition: all .3s ease; font-family: 'Helvetica Neue', Arial, sans-serif; text-align: left; } .option-btn:hover { background: #f5f5f5; } .option-btn.selected { background: #000; color: #fff; } .result-screen { min-height: 400px; display: flex; align-items: center; justify-content: center; } .result-content { text-align: center; width: 100%; } .result-title { font-size: 28px; font-weight: 300; margin-bottom: 24px; color: #000; letter-spacing: -.5px; line-height: 1.3; } .result-body { font-size: 14px; line-height: 1.6; color: #666; margin-bottom: 32px; } .result-cta { display: inline-block; padding: 16px 40px; border: 1px solid #000; background: transparent; color: #000; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; text-decoration: none; transition: all .3s ease; font-family: 'Helvetica Neue', Arial, sans-serif; cursor: pointer; } .result-cta:hover { background: #000; color: #fff; } .quiz-nav { display: flex; gap: 12px; margin-top: 32px; padding-top: 24px; } .nav-btn { flex: 1; padding: 16px 20px; border: 1px solid #000; background: transparent; color: #000; font-size: 13px; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: all .3s ease; font-family: 'Helvetica Neue', Arial, sans-serif; } .nav-btn:hover:not(:disabled) { background: #f5f5f5; } .nav-btn:disabled { opacity: .4; cursor: not-allowed; } @media(max-width: 480px) { #quiz-wrapper { padding: 40px 16px; } .question-title { font-size: 18px; margin-bottom: 24px; } .option-btn, .nav-btn { padding: 14px 16px; font-size: 12px; } .result-title { font-size: 24px; } }
01 / 10