/* 天赋创富测评报告样式 */
.report-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    min-height: 100vh;
}

.report-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
    background: #333;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.brand-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.qr-code {
    width: 80px;
    height: 80px;
}

.qr-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #e0e0e0 25%, transparent 25%, transparent 75%, #e0e0e0 75%, #e0e0e0),
                linear-gradient(45deg, #e0e0e0 25%, transparent 25%, transparent 75%, #e0e0e0 75%, #e0e0e0);
    background-size: 10px 10px;
    background-position: 0 0, 5px 5px;
    border: 2px solid #333;
}

.report-title {
    text-align: center;
    margin-bottom: 30px;
}

.report-title h1 {
    font-size: 32px;
    color: #333;
    font-weight: 700;
}

.report-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.info-left, .info-right {
    display: flex;
    gap: 10px;
}

.label {
    color: #666;
    font-weight: 500;
}

.value {
    color: #333;
    font-weight: 600;
}

/* 得分展示区域 */
.score-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.section-title {
    text-align: center;
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
}

.score-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.lightbulb-icon {
    opacity: 0.8;
}

.score-badge {
    background: #5B9BFF;
    color: white;
    padding: 10px 40px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
}

/* 图表区域 */
.charts-section {
    margin-bottom: 40px;
}

.chart-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.chart-container {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
}

.half-width {
    width: 100%;
}

.chart-title {
    text-align: center;
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

canvas {
    max-height: 300px;
}

/* 天赋类型区域 */
.talent-types-section {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.talent-types {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.talent-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: white;
    border-radius: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.talent-badge.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.badge-icon {
    font-size: 24px;
}

.badge-text {
    font-size: 16px;
    font-weight: 600;
}

.talent-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

/* 分析区域 */
.analysis-section {
    margin-bottom: 40px;
}

.analysis-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.analysis-container {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
}

/* 页脚 */
.report-footer {
    text-align: center;
    padding: 30px 0;
    border-top: 2px solid #f0f0f0;
}

.btn-back {
    display: inline-block;
    padding: 12px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
}

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

/* 响应式设计 */
@media (max-width: 768px) {
    .report-container {
        padding: 20px 15px;
    }

    .report-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .header-left {
        gap: 10px;
    }

    .logo {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .brand-name {
        font-size: 16px;
    }

    .qr-code {
        width: 60px;
        height: 60px;
    }

    .report-title {
        margin-bottom: 20px;
    }

    .report-title h1 {
        font-size: 24px;
    }

    .report-info {
        flex-direction: column;
        gap: 10px;
        padding: 12px 15px;
    }

    .score-section {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .lightbulb-icon svg {
        width: 100px;
        height: 100px;
    }

    .score-badge {
        padding: 8px 30px;
        font-size: 16px;
    }

    .chart-row,
    .analysis-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .chart-container,
    .analysis-container {
        padding: 20px 15px;
    }

    .chart-title {
        font-size: 16px;
        margin-bottom: 15px;
    }

    canvas {
        max-height: 250px;
    }

    .talent-types-section {
        padding: 30px 20px;
    }

    .talent-types {
        flex-direction: column;
        gap: 15px;
    }

    .talent-badge {
        padding: 12px 20px;
        width: 100%;
        justify-content: center;
    }

    .badge-icon {
        font-size: 20px;
    }

    .badge-text {
        font-size: 15px;
    }

    .talent-avatar {
        width: 50px;
        height: 50px;
    }

    .btn-back {
        padding: 10px 30px;
        font-size: 15px;
    }
}

/* 小屏幕手机优化 */
@media (max-width: 480px) {
    .report-container {
        padding: 15px 10px;
    }

    .report-title h1 {
        font-size: 20px;
    }

    .score-section {
        padding: 25px 15px;
    }

    .section-title {
        font-size: 16px;
    }

    .lightbulb-icon svg {
        width: 80px;
        height: 80px;
    }

    .score-badge {
        padding: 6px 25px;
        font-size: 14px;
    }

    .chart-container,
    .analysis-container {
        padding: 15px 10px;
    }

    .chart-title {
        font-size: 15px;
    }

    canvas {
        max-height: 200px;
    }

    .talent-badge {
        padding: 10px 15px;
    }

    .badge-text {
        font-size: 14px;
    }
}
