/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Microsoft YaHei', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    min-height: 100vh;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* 头部样式 */
header {
    text-align: center;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
}

header h1 {
    color: #4a5568;
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.subtitle {
    color: #718096;
    font-size: 1.1rem;
    font-style: italic;
}

/* 主内容样式 */
main {
    max-width: 800px;
    margin: 0 auto;
}

/* 章节通用样式 */
h2 {
    color: #2d3748;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

h3 {
    color: #4a5568;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    color: #4a5568;
    font-size: 1.05rem;
}

/* 介绍部分 */
.intro {
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* 特点部分 */
.features {
    margin-bottom: 30px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    background-color: #f7fafc;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
    color: #667eea;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* 测试说明 */
.instructions {
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.instructions ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.instructions li {
    margin-bottom: 10px;
    color: #4a5568;
    font-size: 1.05rem;
}

/* 开始测试按钮 */
.start-test {
    text-align: center;
    margin: 40px 0;
}

/* 按钮样式 */
.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background-color: #e2e8f0;
    color: #4a5568;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
    background-color: #cbd5e0;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.btn-submit {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(245, 87, 108, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(245, 87, 108, 0.4);
}

/* 小红书店铺按钮 */
.btn-xiaohongshu {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px;
    background: linear-gradient(135deg, #ff2442 0%, #ff6b9d 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(255, 36, 66, 0.3);
}

.btn-xiaohongshu:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 36, 66, 0.4);
}

/* 兑换码验证页面 */
.verify-section {
    max-width: 500px;
    margin: 0 auto;
    background-color: #f7fafc;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.verify-info {
    text-align: center;
    margin-bottom: 30px;
    color: #718096;
}

.verify-form {
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #4a5568;
    font-weight: 600;
    font-size: 1.1rem;
}

.form-group input {
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 2px;
}

.form-group input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.error-message {
    color: #e53e3e;
    font-size: 0.9rem;
    margin-top: 5px;
    min-height: 20px;
}

/* 小红书店铺按钮 */
.btn-xiaohongshu {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px;
    background: linear-gradient(135deg, #ff2a6d 0%, #ff5864 100%);
    color: white;
    box-shadow: 0 4px 6px rgba(255, 42, 109, 0.3);
}

.btn-xiaohongshu:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 42, 109, 0.4);
}

.form-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

/* 注意事项 */
.note {
    background-color: #fffaf0;
    border-left: 4px solid #ed8936;
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.note p {
    margin-bottom: 10px;
    color: #7c2d12;
}

.note ul {
    margin-left: 20px;
    margin-bottom: 10px;
}

.note li {
    margin-bottom: 8px;
    color: #7c2d12;
    font-size: 1rem;
}

/* 测试页面 */
.test-section {
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.test-header {
    text-align: center;
    margin-bottom: 30px;
}

.test-info {
    color: #718096;
    font-style: italic;
    margin-bottom: 20px;
}

/* 进度条 */
.progress-bar {
    width: 100%;
    height: 12px;
    background-color: #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 6px;
    transition: width 0.3s ease;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #4a5568;
    font-size: 0.8rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* 测试容器 */
.test-container {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

/* 问题容器 */
.question-container {
    margin-bottom: 30px;
}

.question {
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f7fafc;
    border-radius: 8px;
    border-left: 4px solid #667eea;
    text-align: center;
}

.question-number {
    font-weight: 700;
    color: #667eea;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.question-text {
    color: #4a5568;
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.6;
    padding: 15px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* 选项样式 */
.options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.option {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.1rem;
    color: #4a5568;
    background-color: white;
    font-weight: 500;
}

.option:hover {
    border-color: #667eea;
    background-color: #f0f4ff;
    transform: translateY(-1px);
}

.option.selected {
    background-color: #667eea;
    color: white;
    border-color: #667eea;
    box-shadow: 0 4px 6px rgba(102, 126, 234, 0.3);
}

/* 导航按钮 */
.navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
    gap: 20px;
}

.page-info {
    color: #718096;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0 20px;
}

/* 评分说明 */
.rating-scale {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
    list-style: none;
    padding: 0;
}

.rating-scale li {
    background-color: white;
    padding: 10px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    color: #4a5568;
}

.rating-label {
    font-weight: 600;
    color: #667eea;
    margin-right: 5px;
}

/* 结果页面 */
.result-section {
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.result-info {
    text-align: center;
    font-style: italic;
    margin-bottom: 30px;
    color: #718096;
}

/* 结果概览 */
.result-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.total-score,
.average-score {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.score-value {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    margin: 15px 0;
}

.score-level {
    font-size: 1.2rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 10px;
}

.score-level.normal {
    background-color: #c6f6d5;
    color: #22543d;
}

.score-level.mild {
    background-color: #fef5e7;
    color: #7c2d12;
}

.score-level.moderate {
    background-color: #fed7d7;
    color: #742a2a;
}

.score-level.severe {
    background-color: #feb2b2;
    color: #742a2a;
}

/* 因子结果 */
.factors-container {
    margin-bottom: 40px;
}

.factor {
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.factor-info {
    flex: 1;
    min-width: 200px;
}

.factor-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 5px;
}

.factor-desc {
    font-size: 0.9rem;
    color: #718096;
    margin-bottom: 0;
}

.factor-score {
    text-align: right;
    min-width: 150px;
}

.factor-score-value {
    font-size: 2rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 5px;
}

.factor-score-level {
    font-size: 1rem;
    font-weight: 600;
    padding: 6px 15px;
    border-radius: 15px;
    display: inline-block;
}

/* 结果解释 */
.result-explanation {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* 建议部分 */
.result-advice {
    margin-bottom: 30px;
}

.rating-standard {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.standard-item {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.standard-title {
    font-weight: 700;
    padding: 6px 15px;
    border-radius: 15px;
    font-size: 0.95rem;
    min-width: 70px;
    text-align: center;
}

.standard-desc {
    color: #4a5568;
    font-size: 0.95rem;
}

.standard-item.normal .standard-title {
    background-color: #c6f6d5;
    color: #22543d;
}

.standard-item.mild .standard-title {
    background-color: #fef5e7;
    color: #7c2d12;
}

.standard-item.moderate .standard-title {
    background-color: #fed7d7;
    color: #742a2a;
}

.standard-item.severe .standard-title {
    background-color: #feb2b2;
    color: #742a2a;
}

/* 因子结果表格 */
.factors-table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.factors-table th,
.factors-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.factors-table th {
    background-color: #f7fafc;
    font-weight: 700;
    color: #4a5568;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.factors-table tr:last-child td {
    border-bottom: none;
}

.factors-table td {
    color: #4a5568;
    font-size: 1rem;
}

.factors-table .factor-name {
    text-align: left;
    font-weight: 600;
}

.factors-table .factor-level {
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
}

/* 因子详细解释 */
#factorsDetails {
    margin-top: 25px;
}

.factor-detail {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.factor-detail h4 {
    margin: 0 0 10px 0;
    color: #2d3748;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.factor-detail h4 .factor-level {
    font-size: 0.8rem;
    padding: 4px 12px;
}

.factor-detail p {
    color: #4a5568;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

/* 结果操作 */
.result-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

/* 打印样式 */
@media print {
    /* 隐藏不需要打印的元素 */
    header,
    footer,
    .result-actions,
    .note {
        display: none !important;
    }
    
    /* 确保打印内容占满页面 */
    .container {
        box-shadow: none !important;
        background-color: white !important;
        min-height: auto !important;
        padding: 0 !important;
    }
    
    /* 调整打印样式 */
    body {
        background: white !important;
        color: black !important;
    }
    
    /* 确保表格打印正常 */
    .factors-table {
        width: 100% !important;
        border: 1px solid #ccc !important;
    }
    
    .factors-table th,
    .factors-table td {
        border: 1px solid #ccc !important;
        padding: 8px !important;
    }
    
    /* 确保因子解释打印清晰 */
    .factor-detail {
        page-break-inside: avoid;
        margin-bottom: 20px;
    }
}

/* 页脚 */
footer {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #eee;
    margin-top: 50px;
    color: #718096;
    font-size: 0.9rem;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .feature-grid,
    .advice-grid {
        grid-template-columns: 1fr;
    }
    
    .option {
        flex: 1 1 100%;
    }
    
    .navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .navigation button {
        width: 100%;
    }
    
    .page-info {
        order: -1;
    }
    
    .verify-section {
        padding: 25px;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions button,
    .form-actions .btn-xiaohongshu {
        width: 100%;
    }
    
    .factor {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .factor-score {
        text-align: center;
    }
    
    .result-actions {
        flex-direction: column;
    }
    
    .result-actions button,
    .result-actions a {
        width: 100%;
    }
}

@media (max-width: 480px) {
    header h1 {
        font-size: 1.8rem;
    }
    
    .test-container,
    .intro,
    .verify-section {
        padding: 20px;
    }
    
    .score-value {
        font-size: 2.5rem;
    }
    
    .factor-score-value {
        font-size: 1.8rem;
    }
}

/* =====================================
   MBTI 特有样式
   ===================================== */

/* 四维度展示 */
.dimension-list {
    margin-top: 20px;
}

.dimension-item {
    background-color: #f7fafc;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.dimension-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.dimension-letter {
    font-size: 1.8rem;
    font-weight: bold;
    color: #667eea;
    padding: 5px 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dimension-name {
    font-size: 1rem;
    color: #4a5568;
}

.dimension-divider {
    color: #cbd5e0;
    font-weight: bold;
    margin: 0 10px;
}

.dimension-desc {
    text-align: center;
    color: #718096;
    font-style: italic;
    margin: 0;
}

/* MBTI 二选一选项样式 */
.question .options {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.question .option {
    flex: 1;
    min-width: 250px;
    padding: 20px;
    background-color: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.question .option:hover {
    background-color: #edf2f7;
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.2);
}

.question .option.selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: white;
    transform: scale(1.02);
    box-shadow: 0 6px 12px rgba(102, 126, 234, 0.3);
}

.question .option-label {
    font-size: 1.5rem;
    font-weight: bold;
    color: #667eea;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.question .option.selected .option-label {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

.question .option-text {
    font-size: 1rem;
    line-height: 1.5;
    flex: 1;
}

/* MBTI 结果页面样式 */
.type-header {
    text-align: center;
    margin-bottom: 30px;
    padding: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: white;
}

.type-code {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: 10px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.type-name-container {
    margin-top: 20px;
}

.type-name {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
}

.type-title {
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
}

.type-description-box {
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.type-description-box h4 {
    color: #2d3748;
    margin-bottom: 15px;
}

.traits-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.trait-tag {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* 四维度分析 */
.dimensions-section {
    margin-bottom: 30px;
}

.dimensions-section h3 {
    text-align: center;
    margin-bottom: 25px;
}

.dimension-bar {
    background-color: #e2e8f0;
    height: 40px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    margin-top: 10px;
}

.dimension-left,
.dimension-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    font-weight: 600;
    height: 100%;
    transition: all 0.3s ease;
}

.dimension-left {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.dimension-right {
    background: linear-gradient(90deg, #48bb78 0%, #38a169 100%);
}

.dimension-label {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin-bottom: 10px;
}

.dimension-label .letter {
    font-size: 1.5rem;
    font-weight: bold;
    color: #667eea;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f7fafc;
    border-radius: 50%;
}

.dimension-label .vs {
    color: #cbd5e0;
    font-weight: bold;
}

.dimension-label .text {
    font-size: 1rem;
    color: #4a5568;
}

.dimension-percent {
    font-size: 0.9rem;
}

/* 详细信息部分 */
.details-section {
    margin-bottom: 30px;
}

.detail-box {
    background-color: #f7fafc;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    border-left: 4px solid #667eea;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.detail-box h4 {
    color: #2d3748;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.detail-box p {
    color: #4a5568;
    line-height: 1.8;
    margin: 0;
}

.result-note {
    background-color: #fffaf0;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #ed8936;
}

.result-note h4 {
    color: #c05621;
    margin-bottom: 10px;
}

.result-note p {
    color: #744210;
    margin-bottom: 10px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .type-code {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }

    .type-name {
        font-size: 1.5rem;
    }

    .question .options {
        flex-direction: column;
    }

    .question .option {
        min-width: 100%;
    }

    .dimension-header {
        flex-direction: column;
        gap: 5px;
    }

    .traits-container {
        justify-content: center;
    }
}