.stress-disease-result {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.stress-disease-result .result-header {
    text-align: center;
    margin-bottom: 40px;
}

.stress-disease-result .result-header h2 {
    font-size: 32px;
    margin: 0 0 20px 0;
    color: var(--text-primary);
}

.stress-disease-result .total-score {
    font-size: 72px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 20px 0;
}

.stress-disease-result .score-label {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.stress-disease-result .level-badge {
    display: inline-block;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.stress-disease-result .level-badge.critical {
    background: #dc2626;
}

.stress-disease-result .level-badge.high {
    background: #ef4444;
}

.stress-disease-result .level-badge.moderate {
    background: #f97316;
}

.stress-disease-result .level-badge.low {
    background: #10b981;
}

.stress-disease-result h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.stress-disease-result .risk-assessment-section {
    background: rgba(239, 68, 68, 0.1);
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 30px;
    border-left: 4px solid #ef4444;
}

.stress-disease-result .system-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.stress-disease-result .system-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #10b981;
}

.stress-disease-result .system-card.high-risk {
    border-left-color: #ef4444;
}

.stress-disease-result .system-card.medium-risk {
    border-left-color: #f97316;
}

.stress-disease-result .system-rank {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.stress-disease-result .system-info h4 {
    font-size: 18px;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.stress-disease-result .system-score {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.stress-disease-result .system-diseases {
    margin-top: 12px;
}

.stress-disease-result .system-diseases strong {
    color: var(--text-primary);
    font-size: 14px;
}

.stress-disease-result .disease-tag {
    display: inline-block;
    margin: 4px;
    padding: 6px 12px;
    background: rgba(249, 115, 22, 0.15);
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-primary);
}

.stress-disease-result .disease-tag.high {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.stress-disease-result .system-detail-card {
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.stress-disease-result .system-detail-card h4 {
    margin: 0 0 8px 0;
    color: var(--text-primary);
}

.stress-disease-result .system-detail-card strong {
    color: var(--text-primary);
    font-size: 15px;
}

.stress-disease-result .system-detail-card ul {
    margin: 8px 0 0 20px;
    padding: 0;
    color: var(--text-secondary);
}

.stress-disease-result .system-detail-card li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.stress-disease-result .suggestions-section {
    margin-bottom: 30px;
}

.stress-disease-result .suggestions-list {
    display: grid;
    gap: 15px;
}

.stress-disease-result .suggestion-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 10px;
    border-left: 3px solid #10b981;
}

.stress-disease-result .suggestion-icon {
    width: 32px;
    height: 32px;
    background: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.stress-disease-result .suggestion-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

.stress-disease-result .coping-methods-section {
    margin-bottom: 30px;
}

.stress-disease-result .coping-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.stress-disease-result .coping-method-card {
    background: rgba(245, 158, 11, 0.05);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #f59e0b;
}

.stress-disease-result .coping-method-icon {
    width: 40px;
    height: 40px;
    background: #f59e0b;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.stress-disease-result .coping-method-card h4 {
    font-size: 16px;
    color: var(--text-primary);
    margin: 0 0 10px 0;
}

.stress-disease-result .coping-method-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.stress-disease-result .prevention-tips-section {
    margin-bottom: 30px;
}

.stress-disease-result .prevention-category {
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 12px;
}

.stress-disease-result .prevention-category h4 {
    margin: 0 0 15px 0;
    color: #10b981;
}

.stress-disease-result .prevention-category ul {
    margin: 0;
    padding: 0 0 0 20px;
    color: var(--text-secondary);
}

.stress-disease-result .prevention-category li {
    margin-bottom: 8px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .stress-disease-result {
        padding: 20px 15px;
    }
    
    .stress-disease-result .result-header h2 {
        font-size: 24px;
    }
    
    .stress-disease-result .total-score {
        font-size: 56px;
    }
    
    .stress-disease-result .system-cards {
        grid-template-columns: 1fr;
    }
    
    .stress-disease-result .coping-methods-grid {
        grid-template-columns: 1fr;
    }
}
