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

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    background: linear-gradient(135deg, #F5F5F0 0%, #FAFAF8 100%);
    min-height: 100vh;
    color: #1A1A1A;
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    min-height: 100vh;
}

.content {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.result-page .content {
    padding: 35px 25px;
}

/* ========== 首页样式 ========== */
.logo-container {
    text-align: center;
    margin-bottom: 40px;
}

.logo {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.2));
}

.hero-section {
    text-align: center;
    margin-bottom: 50px;
}

.main-title {
    font-size: 32px;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 20px;
    line-height: 1.4;
    background: linear-gradient(135deg, #1A1A1A 0%, #3A3A3A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 20px;
    color: #8B7355;
    margin-bottom: 15px;
    font-weight: 600;
}

.description {
    font-size: 13px;
    color: #999;
}

.benefits-section {
    background: white;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    margin-bottom: 35px;
}

.benefits-title {
    font-size: 20px;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 18px;
    text-align: center;
}

.benefits-list {
    display: grid;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-icon {
    font-size: 24px;
    flex-shrink: 0;
    line-height: 1;
}

.benefit-content {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: #333;
}

.benefit-heading {
    font-weight: 700;
    color: #1A1A1A;
}

.benefit-separator {
    color: #999;
}

.benefit-desc {
    color: #666;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: white;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #D4AF37;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #D4AF37;
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.start-button {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 40px;
    background: #D4AF37;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
    font-family: inherit;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

.start-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.start-button:hover::before {
    left: 100%;
}

.start-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.5);
    background: #C19A2E;
}

.start-button:active {
    transform: translateY(-1px) scale(1);
}

.start-button .arrow {
    font-size: 24px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.start-button:hover .arrow {
    transform: translateX(5px);
}

.hint {
    font-size: 14px;
    text-align: center;
    color: #1A1A1A;
    margin-bottom: 20px;
    font-weight: 500;
}

.disclaimer {
    font-size: 11px;
    text-align: center;
    color: #999;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* ========== 测试页面样式 ========== */
.page-title {
    font-size: 24px;
    font-weight: 800;
    text-align: center;
    color: #1A1A1A;
    margin-bottom: 8px;
}

.page-subtitle {
    font-size: 12px;
    text-align: center;
    color: #999;
    margin-bottom: 30px;
}

.progress-bar {
    margin-bottom: 40px;
}

.progress-text {
    text-align: center;
    font-size: 14px;
    color: #8B7355;
    margin-bottom: 10px;
    font-weight: 600;
}

.progress-track {
    width: 100%;
    height: 8px;
    background: #F0F0F0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(to right, #D4AF37, #F5A623);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.question-container {
    margin-bottom: 40px;
}

.question-text {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 30px;
    line-height: 1.6;
    text-align: center;
}

.options-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-button {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: white;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 16px;
    color: #1A1A1A;
    font-family: inherit;
}

.option-button:hover {
    border-color: #D4AF37;
    background: #FFFEF8;
}

.option-button.selected {
    border-color: #D4AF37;
    background: linear-gradient(135deg, #FFFEF8, #FFFDF0);
}

.option-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #E0E0E0;
    border-radius: 50%;
    transition: all 0.2s ease;
    flex-shrink: 0;
    position: relative;
}

.option-button:hover .option-radio {
    border-color: #D4AF37;
}

.option-button.selected .option-radio {
    border-color: #D4AF37;
    background: #D4AF37;
}

.option-button.selected .option-radio::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.option-text {
    flex: 1;
    text-align: left;
    font-weight: 500;
}

.navigation-buttons {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

.nav-button {
    flex: 1;
    padding: 14px 24px;
    border: 2px solid #D4AF37;
    background: white;
    color: #D4AF37;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.nav-button:hover:not(:disabled) {
    background: #D4AF37;
    color: white;
}

.nav-button.primary {
    background: linear-gradient(135deg, #D4AF37, #F5A623);
    color: white;
    border: none;
}

.nav-button.primary:hover:not(:disabled) {
    background: linear-gradient(135deg, #C19A2E, #E09B1F);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.nav-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ========== 结果页面样式 ========== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(245, 245, 240, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #F0F0F0;
    border-top: 4px solid #D4AF37;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    margin-top: 20px;
    font-size: 16px;
    color: #8B7355;
    font-weight: 600;
}

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

.result-title {
    font-size: 20px;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 10px;
}

.result-type {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 10px;
}

.animal-image {
    text-align: center;
    margin: 30px 0;
    font-size: 80px;
    line-height: 1;
}

.core-traits {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 40px;
    line-height: 1.8;
}

.section {
    margin-bottom: 35px;
}

.section-title {
    font-size: 20px;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #D4AF37;
}

.section-content {
    font-size: 15px;
    line-height: 1.9;
    color: #333;
    text-align: justify;
}

.section-content p {
    margin-bottom: 15px;
}

.section-content p:last-child {
    margin-bottom: 0;
}

.radar-chart-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    overflow: visible;
}

.radar-chart-container canvas {
    display: block;
    max-width: 400px;
    width: 400px;
    height: 400px;
}

.radar-legend {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.career-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.career-item {
    padding: 10px 16px;
    background: #FFFEF8;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    font-size: 14px;
    color: #1A1A1A;
    font-weight: 500;
}

.suggestions-list {
    list-style: none;
    padding-left: 0;
}

.suggestions-list li {
    padding: 15px 20px;
    background: #FAFAF8;
    border-left: 4px solid #D4AF37;
    margin-bottom: 12px;
    border-radius: 4px;
    font-size: 15px;
    color: #333;
    line-height: 1.7;
}

.retry-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #D4AF37, #F5A623);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    font-family: inherit;
}

.retry-button:hover {
    background: linear-gradient(135deg, #C19A2E, #E09B1F);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* ========== 推广卡片样式 ========== */
.promotion-cards {
    display: flex;
    justify-content: center;
    margin: 30px 0;
    width: 100%;
}

.promotion-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafaf8 100%);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.15);
    transition: all 0.3s ease;
    max-width: 500px;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.promotion-card:hover {
    box-shadow: 0 6px 28px rgba(212, 175, 55, 0.25);
    transform: translateY(-3px);
}

/* 报告卡片标题 */
.report-title {
    text-align: center;
    margin-bottom: 18px;
    font-size: 24px;
    font-weight: 900;
    color: #1A1A1A;
    line-height: 1.4;
}

/* 推广描述列表 */
.promotion-description {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    text-align: left;
}

.promotion-description li {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.promotion-description li::before {
    content: '•';
    position: absolute;
    left: 6px;
    color: #D4AF37;
    font-weight: bold;
}

/* 闪光效果 */
.shine-effect {
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #D4AF37 0%, #F5D547 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 3s ease-in-out infinite;
    background-size: 200% auto;
}

@keyframes shine {
    0% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
    100% {
        background-position: 0% center;
    }
}

/* 步骤容器 */
.step-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.step-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.step-number {
    background: linear-gradient(135deg, #D4AF37, #F5A623);
    color: white;
    font-size: 16px;
    font-weight: 700;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 0;
}

.step-desc {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    width: 100%;
}

.step-desc #animalType {
    color: #D4AF37;
    font-weight: 700;
}

.step-desc .limit-tip {
    font-size: 12px;
    color: #999;
    font-weight: 400;
}

/* 暗号显示区域 */
.code-display {
    background: linear-gradient(135deg, #f5f5f0 0%, #ffffff 100%);
    border: 2px dashed rgba(212, 175, 55, 0.5);
    border-radius: 10px;
    padding: 14px 24px;
    margin: 4px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: text;
    width: 100%;
}

.code-display:hover {
    border-color: #D4AF37;
    background: #ffffff;
    transform: scale(1.02);
}

.code-text {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 6px;
    font-family: 'Arial Black', 'Courier New', monospace;
    /* 颜色将通过 JavaScript 动态设置 */
}

.code-tip {
    font-size: 11px;
    color: #999;
    margin-top: 4px;
    font-style: italic;
}

/* 二维码样式 */
.report-qr-code {
    width: 140px;
    height: 140px;
    margin: 8px 0;
    border-radius: 10px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* 复制微信按钮 */
.copy-wechat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(135deg, #07C160, #05A050);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    margin-top: 6px;
    width: 100%;
    max-width: 240px;
}

.copy-wechat-btn:hover {
    background: linear-gradient(135deg, #06AD56, #04924A);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(7, 193, 96, 0.4);
}

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

.copy-wechat-btn svg {
    flex-shrink: 0;
}

/* Toast 提示 */
.toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.toast svg {
    flex-shrink: 0;
}

/* ========== 版权信息样式 ========== */
.copyright {
    text-align: center;
    font-size: 12px !important;
    color: #999 !important;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    line-height: 1.6;
    font-weight: normal !important;
}

/* ========== 动物类型主题色 ========== */
.type-bee { color: #F5A623; }
.type-owl { color: #7B68EE; }
.type-peacock { color: #00CED1; }
.type-dolphin { color: #4A90E2; }
.type-lion { color: #E74C3C; }
.type-penguin { color: #43586d; }

/* ========== 响应式设计 ========== */
@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
    }
    
    .logo {
        height: 60px;
    }
    
    .logo-container {
        margin-bottom: 30px;
    }
    
    .hero-section {
        margin-bottom: 40px;
    }
    
    .main-title {
        font-size: 26px;
    }
    
    .subtitle {
        font-size: 17px;
    }
    
    .description {
        font-size: 12px;
    }
    
    .benefits-section {
        padding: 20px 18px;
    }
    
    .benefits-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .benefits-list {
        gap: 10px;
    }
    
    .benefit-icon {
        font-size: 22px;
    }
    
    .benefit-content {
        font-size: 14px;
        gap: 6px;
    }
    
    .stats-section {
        gap: 15px;
    }
    
    .stat-card {
        padding: 25px 15px;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-label {
        font-size: 13px;
    }
    
    .start-button {
        font-size: 18px;
        padding: 18px 35px;
    }
    
    .page-title {
        font-size: 22px;
    }
    
    .question-text {
        font-size: 18px;
    }
    
    .option-button {
        font-size: 14px;
        padding: 14px 16px;
    }
    
    .nav-button {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .result-header {
        margin-bottom: 25px;
    }
    
    .result-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
    
    .result-type {
        font-size: 32px;
    }
    
    .animal-image {
        font-size: 70px;
        margin: 25px 0;
    }
    
    .core-traits {
        font-size: 15px;
        margin-bottom: 35px;
    }
    
    .section {
        margin-bottom: 30px;
    }
    
    .section-title {
        font-size: 18px;
        margin-bottom: 15px;
        padding-bottom: 8px;
    }
    
    .section-content {
        font-size: 14px;
    }
    
    .result-page .content {
        padding: 30px 20px;
    }
    
    .radar-chart-container {
        margin: 20px 0;
    }
    
    .radar-chart-container canvas {
        max-width: 400px;
        width: 400px !important;
        height: 400px !important;
    }
    
    .radar-legend {
        grid-template-columns: 1fr;
        margin-top: 15px;
    }
    
    .legend-item {
        font-size: 12px;
    }
    
    .career-item {
        font-size: 13px;
        padding: 8px 14px;
    }
    
    .suggestions-list li {
        padding: 12px 18px;
        font-size: 14px;
        margin-bottom: 10px;
    }
    
    .retry-button {
        font-size: 16px;
        padding: 14px;
        margin-bottom: 18px;
    }
    
    .disclaimer {
        font-size: 10px;
    }
    
    .promotion-cards {
        margin: 25px 0;
    }
    
    .promotion-card {
        padding: 22px;
        aspect-ratio: auto;
        min-height: auto;
    }
    
    .report-title {
        font-size: 21px;
        margin-bottom: 16px;
        font-weight: 900;
    }
    
    .promotion-description {
        margin-bottom: 20px;
    }
    
    .promotion-description li {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .step-container {
        gap: 14px;
    }
    
    .step-item {
        gap: 10px;
    }
    
    .step-number {
        font-size: 14px;
        width: 28px;
        height: 28px;
    }
    
    .step-desc {
        font-size: 14px;
    }
    
    .code-display {
        padding: 12px 20px;
    }
    
    .code-text {
        font-size: 28px;
        letter-spacing: 5px;
    }
    
    .report-qr-code {
        width: 120px;
        height: 120px;
    }
    
    .copy-wechat-btn {
        font-size: 13px;
        padding: 9px 18px;
        max-width: 200px;
    }
    
    .copyright {
        font-size: 11px;
        margin-top: 25px;
        padding-top: 15px;
    }
    
    .loading-spinner {
        width: 50px;
        height: 50px;
    }
    
    .loading-text {
        font-size: 14px;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 20px 12px;
    }
    
    .logo {
        height: 50px;
    }
    
    .logo-container {
        margin-bottom: 25px;
    }
    
    .main-title {
        font-size: 22px;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .benefits-section {
        padding: 20px 15px;
    }
    
    .benefits-title {
        font-size: 17px;
        margin-bottom: 15px;
    }
    
    .benefits-list {
        gap: 10px;
    }
    
    .benefit-icon {
        font-size: 20px;
    }
    
    .benefit-content {
        font-size: 13px;
        gap: 6px;
    }
    
    .stats-section {
        gap: 12px;
    }
    
    .stat-card {
        padding: 20px 12px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 12px;
    }
    
    .start-button {
        font-size: 17px;
        padding: 16px 30px;
    }
    
    .start-button .arrow {
        font-size: 20px;
    }
    
    .result-header {
        margin-bottom: 20px;
    }
    
    .result-title {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .result-type {
        font-size: 28px;
    }
    
    .animal-image {
        font-size: 60px;
        margin: 20px 0;
    }
    
    .core-traits {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .section {
        margin-bottom: 25px;
    }
    
    .section-title {
        font-size: 17px;
        margin-bottom: 12px;
        padding-bottom: 6px;
    }
    
    .section-content {
        font-size: 13px;
        line-height: 1.8;
    }
    
    .result-page .content {
        padding: 25px 15px;
    }
    
    .radar-chart-container {
        margin: 15px 0;
    }
    
    .radar-chart-container canvas {
        max-width: 100%;
        width: 100% !important;
        height: auto !important;
        max-height: 360px;
        aspect-ratio: 1 / 1; /* 保持正方形 */
    }
    
    .radar-legend {
        margin-top: 12px;
        gap: 8px;
    }
    
    .legend-item {
        font-size: 11px;
    }
    
    .career-list {
        gap: 8px;
    }
    
    .career-item {
        font-size: 12px;
        padding: 8px 12px;
    }
    
    .suggestions-list li {
        padding: 12px 15px;
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .retry-button {
        font-size: 15px;
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .promotion-cards {
        margin: 20px 0;
    }
    
    .promotion-card {
        padding: 18px;
        aspect-ratio: auto;
        min-height: auto;
    }
    
    .report-title {
        font-size: 18px;
        margin-bottom: 14px;
        font-weight: 900;
    }
    
    .promotion-description {
        margin-bottom: 18px;
    }
    
    .promotion-description li {
        font-size: 12px;
        margin-bottom: 5px;
        padding-left: 18px;
    }
    
    .step-container {
        gap: 12px;
    }
    
    .step-item {
        gap: 10px;
        align-items: flex-start;
    }
    
    .step-number {
        font-size: 13px;
        width: 26px;
        height: 26px;
    }
    
    .step-desc {
        font-size: 13px;
        text-align: left;
    }
    
    .code-display {
        padding: 10px 16px;
    }
    
    .code-text {
        font-size: 24px;
        letter-spacing: 4px;
    }
    
    .code-tip {
        font-size: 10px;
    }
    
    .report-qr-code {
        width: 100px;
        height: 100px;
    }
    
    .copy-wechat-btn {
        font-size: 12px;
        padding: 8px 16px;
        max-width: 180px;
    }
    
    .toast {
        font-size: 14px;
        padding: 14px 20px;
    }
    
    .copyright {
        font-size: 10px;
        margin-top: 20px;
        padding-top: 12px;
    }
    
    .disclaimer {
        font-size: 10px;
        line-height: 1.5;
    }
    
    .loading-spinner {
        width: 45px;
        height: 45px;
        border-width: 3px;
    }
    
    .loading-text {
        font-size: 13px;
        margin-top: 12px;
    }
}

