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

:root {
    --primary-color: #6a4c93;
    --secondary-color: #c06c84;
    --accent-color: #f67280;
    --bg-dark: #1a1a2e;
    --bg-light: #f8f9fa;
    --text-dark: #2d3436;
    --text-light: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-light);
}

/* 章节样式 */
.section {
    min-height: 100vh;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.active {
    opacity: 1;
    transform: translateY(0);
}

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* 导航指示器 */
.nav-dots {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.nav-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(106, 76, 147, 0.3);
    margin: 15px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dots .dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.nav-dots .dot:hover {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* 封面样式 */
.cover-section {
    background: var(--gradient-1);
    color: var(--text-light);
    text-align: center;
}

.cover-content {
    max-width: 900px;
    margin: 0 auto;
}

.cover-icon {
    font-size: 100px;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.cover-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 1s ease;
}

.cover-subtitle {
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 60px;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.3s backwards;
}

.cover-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(to right, #fff, #f5f5f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.scroll-hint {
    animation: fadeInUp 1s ease 0.9s backwards;
}

.scroll-hint span {
    display: block;
    font-size: 1rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.scroll-arrow {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* 标题样式 */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--primary-color);
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-2);
    margin: 20px auto;
    border-radius: 2px;
}

.section-desc {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
}

/* 图表样式 */
.chart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.chart-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.chart-box:hover {
    transform: translateY(-5px);
}

.chart-box h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.chart {
    width: 100%;
    height: 350px;
}

.chart-large {
    width: 100%;
    height: 450px;
}

.chart-note {
    font-size: 0.85rem;
    color: #999;
    text-align: center;
    margin-top: 15px;
    font-style: italic;
}

.chart-full {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

/* 洞察框 */
.insight-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: var(--shadow);
}

.insight-box.warning {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.insight-box.positive {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.insight-box h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.insight-box p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* 场景卡片 */
.scenario-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-color);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.card-percent {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.card-desc {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

/* 数据对比 */
.data-comparison {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-top: 40px;
}

.compare-item {
    margin-bottom: 30px;
}

.compare-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.compare-bar {
    background: var(--gradient-1);
    height: 50px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    padding: 0 25px;
    color: white;
    font-weight: 600;
    transition: width 1s ease;
}

/* 问题卡片 */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.problem-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    border-left: 5px solid var(--accent-color);
}

.problem-stat {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.problem-label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.problem-desc {
    font-size: 0.95rem;
    color: #666;
}

/* 创新展示 */
.innovation-showcase {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.innovation-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #eee;
}

.innovation-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.innovation-item h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.innovation-item p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 15px;
}

.popularity-bar {
    background: #f0f0f0;
    height: 30px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.bar-fill {
    background: var(--gradient-3);
    height: 100%;
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: white;
    font-weight: 600;
    transition: width 1s ease;
}

.social-data {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.social-data h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

/* 专家观点 */
.expert-opinions {
    margin-bottom: 50px;
}

.expert-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 25px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.expert-avatar {
    font-size: 3rem;
    flex-shrink: 0;
}

.expert-content h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.expert-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

/* 指南网格 */
.guidance-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.guidance-section h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.guide-item {
    text-align: center;
    padding: 25px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.guide-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.guide-item h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.guide-item p {
    font-size: 0.95rem;
    color: #555;
}

/* 最终洞察 */
.final-insight {
    background: var(--gradient-1);
    color: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.final-insight h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    text-align: center;
}

.final-insight p {
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 20px;
}

.final-quote {
    text-align: center;
    font-size: 1.3rem;
    font-style: italic;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

/* 数据来源 */
.data-source {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.data-source h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.data-source ul {
    list-style: none;
    padding-left: 0;
}

.data-source li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.data-source li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* 页脚 */
.footer {
    text-align: center;
    padding: 30px;
    color: #999;
    font-size: 0.9rem;
}

.footer-note {
    margin-top: 10px;
    font-size: 0.85rem;
}

/* 固定工具栏 */
.fixed-toolbar {
    position: fixed;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tool-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tool-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.tool-btn:active {
    transform: scale(0.95);
}

/* 问卷调查样式 */
.survey-container {
    max-width: 900px;
    margin: 0 auto;
}

.survey-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.survey-question {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
}

.survey-question:last-of-type {
    border-bottom: none;
}

.survey-question h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.radio-group, .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.radio-group label, .checkbox-group label {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.radio-group label:hover, .checkbox-group label:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.radio-group input, .checkbox-group input {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.slider-container {
    padding: 20px 0;
}

.anxiety-slider {
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, #4facfe 0%, #f5576c 100%);
    outline: none;
    -webkit-appearance: none;
}

.anxiety-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.anxiety-slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 0.95rem;
    color: #666;
}

#anxietyValue {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* 问卷结果 */
.survey-result {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.result-icon {
    font-size: 5rem;
    margin-bottom: 20px;
}

.survey-result h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.user-profile {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
    text-align: left;
}

.user-profile p {
    margin: 10px 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.result-stats {
    margin-top: 30px;
}

.result-stats h4 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

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

.stat-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.stat-card .label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
}

.stat-card .value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* 焦虑测试样式 */
.test-container {
    max-width: 900px;
    margin: 0 auto;
}

.test-intro {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.test-intro p {
    margin: 10px 0;
    font-size: 1.1rem;
    line-height: 1.8;
}

.test-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.test-question {
    margin-bottom: 30px;
}

.test-question p {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
}

.test-item {
    margin-bottom: 35px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
}

.test-item p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.test-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.test-options label {
    flex: 1;
    min-width: 140px;
    padding: 12px 15px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.test-options label:hover {
    border-color: var(--primary-color);
    background: #f0f0ff;
}

.test-options input {
    display: none;
}

.test-options input:checked + label,
.test-options label:has(input:checked) {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

/* 修正单选按钮选中样式 */
.test-options label input:checked {
    display: none;
}

.test-result {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
}

.result-score {
    margin-bottom: 30px;
}

.score-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
}

#scoreValue {
    font-size: 3.5rem;
    font-weight: 700;
}

.score-label {
    font-size: 1.2rem;
}

.result-text {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin: 30px 0;
}

.result-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.result-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.result-advice {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: left;
}

.result-advice h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.result-advice p, .result-advice ul {
    font-size: 1.05rem;
    line-height: 1.8;
}

.result-advice ul {
    margin-top: 15px;
    padding-left: 20px;
}

.result-advice li {
    margin: 8px 0;
}

.retry-btn {
    padding: 15px 40px;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.retry-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* 弹窗样式 */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

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

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333;
}

.modal-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.modal-desc {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

/* 塔罗牌样式 */
.tarot-intro {
    text-align: center;
    margin-bottom: 30px;
}

.tarot-intro p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.question-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.question-btn {
    padding: 15px 30px;
    background: var(--gradient-1);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.question-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(102, 126, 234, 0.4);
}

.tarot-cards {
    text-align: center;
}

.tarot-cards p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tarot-card {
    width: 80px;
    height: 120px;
    background: var(--gradient-1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.tarot-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.tarot-result {
    text-align: center;
}

.result-card-display {
    margin-bottom: 30px;
}

.big-card {
    font-size: 6rem;
    margin-bottom: 20px;
}

.result-card-display h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.card-meaning {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: left;
}

.card-meaning h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.card-meaning p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.tarot-disclaimer {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: left;
}

.tarot-disclaimer p {
    margin: 0;
    font-size: 0.95rem;
    color: #856404;
    line-height: 1.6;
}

/* 分享弹窗样式 */
.share-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.share-text h4,
.share-buttons h4,
.share-link h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
}

#shareText {
    width: 100%;
    min-height: 150px;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    line-height: 1.6;
    resize: vertical;
    margin-bottom: 10px;
}

.copy-btn {
    padding: 12px 25px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.copy-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.social-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-btn {
    flex: 1;
    min-width: 120px;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.social-btn.wechat {
    background: #07c160;
    color: white;
}

.social-btn.weibo {
    background: #e6162d;
    color: white;
}

.social-btn.qq {
    background: #12b7f5;
    color: white;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-link input {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    margin-bottom: 10px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .cover-title {
        font-size: 2.2rem;
    }
    
    .cover-subtitle {
        font-size: 1.3rem;
    }
    
    .cover-stats {
        flex-direction: column;
        gap: 40px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .chart-grid {
        grid-template-columns: 1fr;
    }
    
    .scenario-cards,
    .problem-grid,
    .guide-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-dots {
        right: 15px;
    }
    
    .fixed-toolbar {
        left: 15px;
    }
    
    .tool-btn {
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }
    
    .expert-card {
        flex-direction: column;
        text-align: center;
    }
    
    .section {
        padding: 60px 15px;
    }
    
    .survey-form,
    .test-form,
    .survey-result,
    .test-result {
        padding: 30px 20px;
    }
    
    .test-options {
        flex-direction: column;
    }
    
    .test-options label {
        min-width: 100%;
    }
    
    .question-buttons {
        flex-direction: column;
    }
    
    .question-btn {
        width: 100%;
    }
    
    .modal-content {
        padding: 30px 20px;
        width: 95%;
    }
    
    .social-buttons {
        flex-direction: column;
    }
    
    .social-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cover-title {
        font-size: 1.8rem;
    }
    
    .cover-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .chart-box,
    .chart-full {
        padding: 20px;
    }
}
